Package javaff.data

Examples of javaff.data.Plan


      if (args.length > 3)
      {
        solutionFile = new File(args[3]);
      }
 
      Plan plan = plan(domainFile,problemFile);
 
      if (solutionFile != null && plan != null) writePlanToFile(plan, solutionFile);
     
    }
  }
View Full Code Here


    }
    }

  public Plan getPlan(State s)// if on the start action is in also add the end action as a matter of course
    {
    Plan p = super.getPlan(s);
    if (p != null)
    {
      Set acts = p.getActions();
      Iterator lit = acts.iterator();
      while (lit.hasNext())
      {
        Action a = (Action) lit.next();
        if (a instanceof StartInstantAction)
View Full Code Here

TOP

Related Classes of javaff.data.Plan

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.