Package cc.mallet.util.search
Interface SearchState
-
- All Known Subinterfaces:
AStarState
public interface SearchState
Created by IntelliJ IDEA. User: pereira Date: Jun 20, 2005 Time: 4:54:46 PM A state (vertex) in a graph being searched.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SearchState.NextStateIterator
Iterator over the states with transitions from a given state.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchState.NextStateIterator
getNextStates()
Get an iterator over the states with transitions from this state.boolean
isFinal()
Is this state final?
-
-
-
Method Detail
-
getNextStates
SearchState.NextStateIterator getNextStates()
Get an iterator over the states with transitions from this state.- Returns:
- the iterator
-
isFinal
boolean isFinal()
Is this state final?- Returns:
- whether this state is final
-
-