A dual-tree traverser; see dual_tree_traverser.hpp. More...
Public Member Functions | |
DualTreeTraverser (RuleType &rule) | |
Instantiate the given dual-tree traverser with the given rule set. More... | |
size_t | NumBaseCases () const |
Get the number of times a base case was computed. More... | |
size_t & | NumBaseCases () |
Modify the number of times a base case was computed. More... | |
size_t | NumPrunes () const |
Get the number of pruned nodes. More... | |
size_t & | NumPrunes () |
Modify the number of pruned nodes (i.e. to reset it). More... | |
size_t | NumScores () const |
Get the number of times a node was scored. More... | |
size_t & | NumScores () |
Modify the number of times a node was scored. More... | |
size_t | NumVisited () const |
Get the number of visited node combinations. More... | |
size_t & | NumVistied () |
Modify the number of visited node combinations. More... | |
void | Traverse (Octree &queryNode, Octree &referenceNode) |
Traverse the two trees. More... | |
A dual-tree traverser; see dual_tree_traverser.hpp.
Definition at line 25 of file dual_tree_traverser.hpp.
DualTreeTraverser | ( | RuleType & | rule | ) |
Instantiate the given dual-tree traverser with the given rule set.
|
inline |
Get the number of times a base case was computed.
Definition at line 55 of file dual_tree_traverser.hpp.
|
inline |
Modify the number of times a base case was computed.
Definition at line 57 of file dual_tree_traverser.hpp.
|
inline |
Get the number of pruned nodes.
Definition at line 40 of file dual_tree_traverser.hpp.
|
inline |
Modify the number of pruned nodes (i.e. to reset it).
Definition at line 42 of file dual_tree_traverser.hpp.
|
inline |
Get the number of times a node was scored.
Definition at line 50 of file dual_tree_traverser.hpp.
|
inline |
Modify the number of times a node was scored.
Definition at line 52 of file dual_tree_traverser.hpp.
|
inline |
Get the number of visited node combinations.
Definition at line 45 of file dual_tree_traverser.hpp.
|
inline |
Modify the number of visited node combinations.
Definition at line 47 of file dual_tree_traverser.hpp.
Traverse the two trees.
This does not reset the statistics of the traversals (it just adds to them).