Uses of Class
cc.mallet.util.search.SearchNode

Packages that use SearchNode
cc.mallet.util.search   
 

Uses of SearchNode in cc.mallet.util.search
 

Subclasses of SearchNode in cc.mallet.util.search
 class AStarNode
          Created by IntelliJ IDEA.
 

Methods in cc.mallet.util.search that return SearchNode
 SearchNode SearchNode.getParent()
          The node that generated this node.
 SearchNode SearchNode.NextNodeIterator.nextNode()
          The search tree node for the next state reached from the current state.
 SearchNode AStarNode.NextNodeIterator.nextNode()
           
 

Constructors in cc.mallet.util.search with parameters of type SearchNode
SearchNode(SearchState state, SearchNode parent, double cost)
          Create a search node with given state, parent, and cost.