Package javaff.data

Examples of javaff.data.PartialOrderPlan


            InstantAction a = (InstantAction) pit.next();
            TOPlan.add(a.clone());
        }
     */

    PartialOrderPlan pop = new PartialOrderPlan();
    pop.addActions(top.getActions());

    Set goals = new HashSet(problem.goal.getConditionalPropositions());

    ListIterator toit = top.listIteratorEnd();
    while (toit.hasPrevious())
View Full Code Here


    problem = p;
  }

  public TimeStampedPlan schedule(TotalOrderPlan top)
  {
    PartialOrderPlan pop = GreedyPartialOrderLifter.lift(top, problem);

    MatrixSTN stn = new MatrixSTN(top);

    stn.addConstraints(pop.getTemporalConstraints());


    //Sort out the Durations
    Map states = new Hashtable(); //Maps (Actions => states (which the actions are applied in))
    Iterator ait = top.getActions().iterator();
View Full Code Here

TOP

Related Classes of javaff.data.PartialOrderPlan

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.