When descending a RectangleTree to insert a point, we need to have a way to choose a child node when the point isn't enclosed by any of them. More...
Static Public Member Functions | |
template < typename TreeType > | |
static size_t | ChooseDescentNode (const TreeType *node, const size_t point) |
Evaluate the node using a heuristic. More... | |
template < typename TreeType > | |
static size_t | ChooseDescentNode (const TreeType *node, const TreeType *insertedNode) |
Evaluate the node using a heuristic. More... | |
When descending a RectangleTree to insert a point, we need to have a way to choose a child node when the point isn't enclosed by any of them.
This heuristic is used to do so.
Definition at line 26 of file r_tree_descent_heuristic.hpp.
|
static |
Evaluate the node using a heuristic.
The heuristic guarantees two things:
node | The node that is being evaluated. |
point | The index of the point that is being inserted. |
|
static |
Evaluate the node using a heuristic.
The heuristic guarantees two things:
node | The node that is being evaluated. |
insertedNode | The node that is being inserted. |