Examples of PDDLPlannerAdapter


Examples of graphplan.parser.PDDLPlannerAdapter

      try {
        if(pddl){
          logger.finest("JavaGP - PDDL\n");
          logger.finest("+ DOMAIN: " + domainFilename);
          logger.finest("+ PROBLEM: " + problemFilename);
          PDDLPlannerAdapter parserPDDL = new PDDLPlannerAdapter(domainFilename, problemFilename);
          domain = parserPDDL.getDomainDescriptionFromPddlObject();
        } else {
          logger.finest("JavaGP - STRIPS\n");
          logger.finest("+ DOMAIN: " + domainFilename);
          logger.finest("+ PROBLEM: " + problemFilename);
          PlannerParser parser = new PlannerParser();
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.