package aima.core.search.informed; import java.util.Comparator; import aima.core.search.framework.EvaluationFunction; import aima.core.search.framework.Node; import aima.core.search.framework.PrioritySearch; import aima.core.search.framework.QueueSearch; /** * Artificial Intelligence A Modern Approach (3rd Edition): page 92.<br> * <br> * Best-first search is an instance of the general TREE-SEARCH or GRAPH-SEARCH * algorithm in which a node is selected for expansion based on an evaluation * function, f(n). The evaluation function is construed as a cost estimate, so * the node with the lowest evaluation is expanded first. The implementation of * best-first graph search is identical to that for uniform-cost search (Figure * 3.14), except for the use of f instead of g to order the priority queue. * * @author Ciaran O'Reilly * @author Mike Stampone * @author Ruediger Lunde */ public class BestFirstSearch extends PrioritySearch { /** * Constructs a best first search from a specified search problem and * evaluation function. * * @param search * a search problem * @param ef * an evaluation function, which returns a number purporting to * describe the desirability (or lack thereof) of expanding a * node */ public BestFirstSearch(QueueSearch search, EvaluationFunction ef) { super(search, createComparator(ef)); } private static Comparator<Node> createComparator(final EvaluationFunction ef) { return new Comparator<Node>() { public int compare(Node n1, Node n2) { Double f1 = ef.f(n1); Double f2 = ef.f(n2); return f1.compareTo(f2); } }; } }