12 #ifndef MLPACK_CORE_TREE_RECTANGLE_TREE_TRAITS_HPP 13 #define MLPACK_CORE_TREE_RECTANGLE_TREE_TRAITS_HPP 26 template<
typename MetricType,
27 typename StatisticType,
31 template<
typename>
class AuxiliaryInformationType>
33 DescentType, AuxiliaryInformationType>>
79 template<
typename MetricType,
80 typename StatisticType,
82 typename SplitPolicyType,
83 template<
typename>
class SweepType,
85 template<
typename>
class AuxiliaryInformationType>
92 AuxiliaryInformationType>>
The RPlusTreeSplit class performs the split process of a node on overflow.
Linear algebra utility functions, generally performed on matrices or vectors.
static const bool BinaryTree
This is true if the tree always has only two children.
static const bool HasSelfChildren
This is true if the points contained in the first child of a node (Child(0)) are also contained in th...
static const bool RearrangesDataset
This is true if the tree rearranges points in the dataset when it is built.
static const bool HasDuplicatedPoints
This is true if a point can be included in more than one node.
A rectangle type tree tree, such as an R-tree or X-tree.
static const bool FirstPointIsCentroid
This is true if the first point of each node is the centroid of its bound.
The TreeTraits class provides compile-time information on the characteristics of a given tree type...
static const bool HasOverlappingChildren
This is true if the subspaces represented by the children of a node can overlap.
static const bool UniqueNumDescendants
This is true if the NumDescendants() method doesn't include duplicated points.