Package javaff.data.strips

Examples of javaff.data.strips.OperatorName


     Predicate g = new Predicate(ps2);
     g.addParameters(params);
     dummyGoal = g;
    
     startAction = new UngroundInstantAction();
     startAction.name = new OperatorName(name.toString()+"_START");
     startAction.params = params;
     AND s = new AND();
     s.add(startCondition);
     s.add(invariant.minus(startEffect));
     startAction.condition = s;
     AND se = new AND();
     startAction.effect = se;
     se.add(startEffect);
     se.add(j);
     se.add(new NOT(g));

     endAction = new UngroundInstantAction();
     endAction.name = new OperatorName(name.toString()+"_END");
     endAction.params = params;
     AND e = new AND();
     e.add(endCondition);
     e.add(invariant);
     e.add(j);
View Full Code Here


    InstantAction START = new STRIPSInstantAction();

    public MatrixSTN(Plan plan)
    {
    pop = plan;
    START.name = new OperatorName("TIME_ZERO");
   
    Timepoints = new ArrayList();
    Timepoints.add(START);
        Timepoints.addAll(pop.getActions());
View Full Code Here

TOP

Related Classes of javaff.data.strips.OperatorName

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.