#include <AITools.h>
Public Member Functions | |
| SearchNode (T state, std::optional< std::shared_ptr< SearchNode< T >>> parent, int pathCost) | |
| bool | operator== (const SearchNode< T > &other) const |
Data Fields | |
| const T | state |
|
std::optional< std::shared_ptr < SearchNode< T > > > | parent |
| int | pathCost = 0 |
Represents a generic node in a search problem
1.8.6