Package graphplan.domain

Examples of graphplan.domain.Unifier


  public Iterator<? extends GraphElement> iterator() {
    return emptyIterator;
  }
 
  public boolean unifies(Proposition proposition) {
    Unifier un = new UnifierImpl();
    return un.unifies(this, proposition);
  }
View Full Code Here

TOP

Related Classes of graphplan.domain.Unifier

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.