Uses of Class
ai.search.Problem

Packages that use Problem
ai.search   
 

Uses of Problem in ai.search
 

Subclasses of Problem in ai.search
 class CannibalProblem
           
 class ChainProblem
           
 class Puzzle8Problem
          The 8-puzzle Problem In this implementation of the 8-puzzle we have a mix of priorities between efficiency and simplicity.
 class RomanianProblem
          Search problem using a road map of Romania.
 class RouteProblem
          Find a route between cities on a map.
 

Fields in ai.search declared as Problem
 Problem Search.problem
          The search problem.
 

Methods in ai.search with parameters of type Problem
 java.util.Vector Node.expand(Problem problem)
          Generate a list of all the nodes that can be reached from a node.
 

Constructors in ai.search with parameters of type Problem
Search(Problem p, int m)
          Construct a search.