Package javaff.data

Examples of javaff.data.UngroundEffect


  {
    boolean rEff = false;
    Iterator lit = literals.iterator();
    while (lit.hasNext() && !(rEff))
    {
      UngroundEffect ue = (UngroundEffect) lit.next();
      rEff = ue.effects(ps);
    }
    return rEff;
  }
View Full Code Here


    {
    Iterator lit = literals.iterator();
    UngroundCondition c = null;
    while (lit.hasNext())
    {
      UngroundEffect p = (UngroundEffect) lit.next();
      UngroundCondition d = p.effectsAdd(cond);
      if (!d.equals(cond)) c=d;
    }
    if (c == null) return cond;
    else return c;
    }
View Full Code Here

  {
    AND a = new AND();
    Iterator lit = literals.iterator();
    while (lit.hasNext())
    {
      UngroundEffect p = (UngroundEffect) lit.next();
      a.add(p.groundEffect(varMap));
    }
    return a;
  }
View Full Code Here

    apply(s);
  }

  public boolean effects(PredicateSymbol ps)
  {
    UngroundEffect ue = (UngroundEffect) literal;
    return ue.effects(ps);
  }
View Full Code Here

TOP

Related Classes of javaff.data.UngroundEffect

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.