Examples of PlannerListManager


Examples of cz.cuni.amis.planning4j.external.impl.itsimple.PlannerListManager

  }
 
 
  /** Selects a planner to be used based on the requirements. */
  private boolean getPlanner() {
    PlannerListManager plannerManager = PlannersPackUtils.getPlannerListManager();
   
    // Let the engine suggest as a planner that supports strips and runs on current platform
   
    Set<PDDLRequirement> requirements = EnumSet.of(PDDLRequirement.STRIPS, PDDLRequirement.TYPING);
    List<ItSimplePlannerInformation> suggestedPlanners = plannerManager.suggestPlanners(requirements);
   
    if(suggestedPlanners.isEmpty()){
      System.out.println("Planning4JHandler: No planner found for current platform.");
      return false;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.