Package javaff.data

Examples of javaff.data.UngroundProblem


    // ********************************
    // Parse and Ground the Problem
    // ********************************
    long startTime = System.currentTimeMillis();
   
    UngroundProblem unground = PDDL21parser.parseFiles(dFile, pFile);

    if (unground == null)
    {
      System.out.println("Parsing error - see console for details");
      return null;
    }


    //PDDLPrinter.printDomainFile(unground, System.out);
    //PDDLPrinter.printProblemFile(unground, System.out);

    GroundProblem ground = unground.ground();

    long afterGrounding = System.currentTimeMillis();

    // ********************************
    // Search for a plan
View Full Code Here

TOP

Related Classes of javaff.data.UngroundProblem

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.