Uses of Class
ai.search.Node

Packages that use Node
ai.search   
 

Uses of Node in ai.search
 

Fields in ai.search declared as Node
 Node Problem.searchResult
          The node which is the search result.
 Node Problem.currentNode
          The current node in the search.
 Node Node.parent
          The parent Node.
 

Methods in ai.search that return Node
 Node Search.execute(java.lang.String algorithm)
          Execute the search with the given algorithm.
 Node Problem.solve(java.lang.String alg, java.lang.String heur, int maxExpanded)
          Solve the problem with the specified search algorithm.
 

Methods in ai.search with parameters of type Node
 int RouteProblem.edgeCost(Node n, java.lang.Object action, java.lang.Object state)
          Determine the cost of an edge which is the distance between the cities.
 int Problem.edgeCost(Node node, java.lang.Object action, java.lang.Object state)
          Return the cost of an edge.