#include <GraphSearch.hpp>
Static Public Member Functions | |
template<class StateType , class ActionType > | |
static Path< StateType, ActionType > | AStar (SearchProblem< StateType, ActionType > &problem) |
template<class StateType , class ActionType > | |
static Path< StateType, ActionType > | BFS (SearchProblem< StateType, ActionType > &problem) |
template<class StateType , class ActionType > | |
static Path< StateType, ActionType > | DFS (SearchProblem< StateType, ActionType > &problem) |
Definition at line 38 of file GraphSearch.hpp.
|
inlinestatic |
Runs A* graph search on the given search problem
Definition at line 139 of file GraphSearch.hpp.
|
inlinestatic |
Runs Breadth-First graph on the given search problem
Definition at line 91 of file GraphSearch.hpp.
|
inlinestatic |
Runs Depth-First graph search on the given search problem
Definition at line 44 of file GraphSearch.hpp.