Package nl.vu.few.anytimereasoning.workbench.selectionstrategies

Examples of nl.vu.few.anytimereasoning.workbench.selectionstrategies.SelectionStrategy


    manager.removeOntology(tboxLogicalURI);
    manager.removeOntology(aboxLogicalURI);
       
    /* Initialize approximation */
    StepSizeStrategy stepSizeStrategy = StrategyFactory.newStepSizeStrategy(stepID, concepts.size());
    SelectionStrategy selectionStrategy = StrategyFactory.newSelectionStrategy(selectionID, concepts, properties, stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
    ApproximationTask approximation = new ApproximationTask(selectionStrategy, tboxPhysicalURI, aboxPhysicalURI, file_prefix, tmpOntologyURI, rParameter, iParameter, PATH_TO_RESULTS);
   
    try {
      logger.info("Running baseline...");
      /*
 
View Full Code Here


      /*
       * SelectionStrategy selectionStrategy = StrategyFactory
       * .newSelectionStrategy(selectionStrategyID, concepts, properties,
       * stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
       */
      SelectionStrategy selectionStrategy = null;
      try
      {
        selectionStrategy = StrategyManager.getNewSelectionStrategy(
            selectionStrategyID, concepts, properties,
            stepSizeStrategy, tboxPhysicalURI, aboxPhysicalURI);
View Full Code Here

      Set<OWLProperty<?, ?>> properties = new HashSet<OWLProperty<?, ?>>();

      manager.removeOntology(tboxLogicalURI);
      manager.removeOntology(aboxLogicalURI);

      SelectionStrategy selectionStrategyCopy = new TrivialStrategy(
          selectionStrategy.getConceptsSet(), properties,
          StrategyFactory.newStepSizeStrategy("EqualParts",
              selectionStrategy.getConceptsSet().size()),
          selectionStrategy.getConceptsList(), selectionStrategy
              .getID());
View Full Code Here

TOP

Related Classes of nl.vu.few.anytimereasoning.workbench.selectionstrategies.SelectionStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.