public abstract class GraphSearch<T> extends Object
May 1, 2009
| Modifier | Constructor and Description |
|---|---|
protected |
GraphSearch(Queue<T> queue) |
| Modifier and Type | Method and Description |
|---|---|
T |
search(T initialState,
IStateManager<T> stateManager)
Performs graph search, starting with the
initialState. |
public T search(T initialState, IStateManager<T> stateManager)
initialState. stateManager
defines the successor state function and the goal test function.
null.Copyright © 2017. All rights reserved.