A single-tree traverser for binary space trees; see single_tree_traverser.hpp for implementation. More...
Public Member Functions | |
| SingleTreeTraverser (RuleType &rule) | |
| Instantiate the single tree traverser with the given rule set. More... | |
| size_t | NumPrunes () const |
| Get the number of prunes. More... | |
| size_t & | NumPrunes () |
| Modify the number of prunes. More... | |
| void | Traverse (const size_t queryIndex, BinarySpaceTree &referenceNode) |
| Traverse the tree with the given point. More... | |
A single-tree traverser for binary space trees; see single_tree_traverser.hpp for implementation.
Definition at line 96 of file binary_space_tree.hpp.
| SingleTreeTraverser | ( | RuleType & | rule | ) |
Instantiate the single tree traverser with the given rule set.
|
inline |
Get the number of prunes.
Definition at line 50 of file single_tree_traverser.hpp.
|
inline |
Modify the number of prunes.
Definition at line 52 of file single_tree_traverser.hpp.
| void Traverse | ( | const size_t | queryIndex, |
| BinarySpaceTree & | referenceNode | ||
| ) |
Traverse the tree with the given point.
| queryIndex | The index of the point in the query set which is being used as the query point. |
| referenceNode | The tree node to be traversed. |