Package graphplan.parser

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

Related Classes of graphplan.parser.PDDLPlannerAdapter

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.