Uses of Class
ai.search.informed.BestFirstSearcherForIntCostFn

Packages that use BestFirstSearcherForIntCostFn
ai.search.informed   
 

Uses of BestFirstSearcherForIntCostFn in ai.search.informed
 

Subclasses of BestFirstSearcherForIntCostFn in ai.search.informed
 class AStarSearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that generates a search space from a given initial state and guided by a heuristic function.
 class GreedySearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that generates a search space from a given initial state and guided by a heuristic function.
 class IDAStarSearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that traverses a search space using the IDA* algorithm from a given initial state.
 class MAStarSearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that generates a search space from a given initial state and guided by a heuristic function.
 class RandomizedAStarSearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that generates a search space from a given initial state and guided by a heuristic function.
 class RBFSearcherForIntCostFn<S extends SearchStateForIntCostFn>
           This class represents a search engine that traverses a search space from a given initial state using the recursive best-first search algorithm (RBFS).