|
Fawkes API
Fawkes Development Version
|
This is the abstract(!) class for an A* State. More...
#include <>>
Public Member Functions | |
| AStarState () | |
| Constructor. | |
| virtual | ~AStarState () |
| Destructor. | |
| virtual long | calculateKey ()=0 |
| Generates a unique key for this state. | |
| virtual double | estimate ()=0 |
| Estimate the heuristic cost to the goal. | |
| virtual bool | isGoal ()=0 |
| Check, wether we reached a goal or not. | |
| virtual std::vector< AStarState * > | generateChildren ()=0 |
| Generate all successors and put them to this vector. | |
Public Attributes | |
| AStarState * | father |
| Predecessor. | |
| double | pastCost |
| Past cost. | |
| double | totalEstimatedCost |
| Total estimated cost. | |
| long | key |
| The unique key of this state. | |
This is the abstract(!) class for an A* State.
Definition at line 36 of file astar_state.h.
|
inline |
Constructor.
Definition at line 41 of file astar_state.h.
|
inlinevirtual |
Destructor.
Definition at line 44 of file astar_state.h.
|
pure virtual |
Generates a unique key for this state.
There has to be a unique key for each state (fast closed list -> bottleneck!)
|
pure virtual |
Estimate the heuristic cost to the goal.
|
pure virtual |
Generate all successors and put them to this vector.
|
pure virtual |
Check, wether we reached a goal or not.
| AStarState* fawkes::AStarState::father |
Predecessor.
Definition at line 72 of file astar_state.h.
| long fawkes::AStarState::key |
The unique key of this state.
Definition at line 80 of file astar_state.h.
| double fawkes::AStarState::pastCost |
Past cost.
Definition at line 75 of file astar_state.h.
| double fawkes::AStarState::totalEstimatedCost |
Total estimated cost.
Definition at line 77 of file astar_state.h.