Package org.aisearch.uninformed

Examples of org.aisearch.uninformed.UninformedSearch.search()


  }

  private List<XMLArtefactOperation> search(INode startNode,
      IGoalTest goalTest, IQueueInserter queueInserter) {
    UninformedSearch search = new UninformedSearch(goalTest, queueInserter);
    Path solution = search.search(startNode);
    if (solution == null)
      return null;

    List<XMLArtefactOperation> operations = new ArrayList<XMLArtefactOperation>();
    while (solution != null) {
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.