Package javaff.data.strips

Examples of javaff.data.strips.Operator.effects()


      PredicateSymbol ps = (PredicateSymbol) pit.next();
      Iterator oit = actions.iterator();
      while (oit.hasNext() && isStatic)
      {
        Operator o = (Operator) oit.next();
        isStatic = !o.effects(ps);
      }
      ps.setStatic(isStatic);
    }

    Iterator fit = funcSymbols.iterator();
View Full Code Here


      FunctionSymbol fs = (FunctionSymbol) fit.next();
      Iterator oit = actions.iterator();
      while (oit.hasNext() && isStatic)
      {
        Operator o = (Operator) oit.next();
        isStatic = !o.effects(fs);
      }
      fs.setStatic(isStatic);
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.