#include <SearchProblem.hpp>
template<class StateType, class ActionType>
class SearchProblem< StateType, ActionType >
Definition at line 81 of file SearchProblem.hpp.
template<class StateType, class ActionType>
virtual std::list<ActionType> SearchProblem< StateType, ActionType >::getActions |
( |
StateType |
state | ) |
|
|
pure virtual |
template<class StateType, class ActionType>
virtual double SearchProblem< StateType, ActionType >::getHeuristicCost |
( |
StateType |
state | ) |
|
|
inlinevirtual |
template<class StateType, class ActionType>
double SearchProblem< StateType, ActionType >::getPathCost |
( |
Path< StateType, ActionType > * |
path | ) |
|
|
inline |
template<class StateType, class ActionType>
virtual StateType SearchProblem< StateType, ActionType >::getResult |
( |
StateType |
state, |
|
|
ActionType |
action |
|
) |
| |
|
pure virtual |
template<class StateType, class ActionType>
virtual StateType SearchProblem< StateType, ActionType >::getStartState |
( |
| ) |
|
|
pure virtual |
template<class StateType, class ActionType>
virtual double SearchProblem< StateType, ActionType >::getStepCost |
( |
StateType |
state, |
|
|
ActionType |
action |
|
) |
| |
|
inlinevirtual |
template<class StateType, class ActionType>
virtual bool SearchProblem< StateType, ActionType >::isGoal |
( |
StateType |
tate | ) |
|
|
pure virtual |
The documentation for this class was generated from the following file: