Known Indirect Subclasses
ADStarNode<A, S, C extends Comparable<C>, N extends ADStarNode<A, S, C, N>>,
ADStarNodeImpl<A, S, C extends Comparable<C>>,
HeuristicNode<A, S, C extends Comparable<C>, N extends HeuristicNode<A, S, C, N>>,
WeightedNode<A, S, C extends Comparable<C>>
ADStarNode<A, S, C extends Comparable<C>, N extends ADStarNode<A, S, C, N>> |
Implementation of Node to be used with the AD* algorithm, implemented in
ADStarForward . |
ADStarNodeImpl<A, S, C extends Comparable<C>> |
Interface defining the basic operations for Node to be used with
ADStarForward . |
HeuristicNode<A, S, C extends Comparable<C>, N extends HeuristicNode<A, S, C, N>> |
Type of node which stores an estimated (heuristic) cost to the goal, extending
the interface of a cost node CostNode . |
WeightedNode<A, S, C extends Comparable<C>> |
Basic implementation of a node which does not which keeps information about
the cost. |
|