Package javaff.data.strips

Examples of javaff.data.strips.Predicate


 
   public void makeInstants()
  {
     PredicateSymbol ps = new PredicateSymbol("i"+name);
     Predicate j = new Predicate(ps);
     j.addParameters(params);
     dummyJoin = j;

     PredicateSymbol ps2 = new PredicateSymbol("g"+name);
     Predicate g = new Predicate(ps2);
     g.addParameters(params);
     dummyGoal = g;
    
     startAction = new UngroundInstantAction();
     startAction.name = new OperatorName(name.toString()+"_START");
     startAction.params = params;
View Full Code Here

TOP

Related Classes of javaff.data.strips.Predicate

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.