Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
typedef.hpp
Go to the documentation of this file.
1
12
#ifndef MLPACK_CORE_TREE_COVER_TREE_TYPEDEF_HPP
13
#define MLPACK_CORE_TREE_COVER_TREE_TYPEDEF_HPP
14
15
#include "
cover_tree.hpp
"
16
17
namespace
mlpack
{
18
namespace
tree {
19
38
template
<
typename
MetricType,
typename
StatisticType,
typename
MatType>
39
using
StandardCoverTree
= CoverTree<MetricType,
40
StatisticType,
41
MatType,
42
FirstPointIsRoot
>;
43
44
}
// namespace tree
45
}
// namespace mlpack
46
47
#endif
mlpack
Linear algebra utility functions, generally performed on matrices or vectors.
Definition:
add_to_cli11.hpp:21
mlpack::tree::StandardCoverTree
CoverTree< MetricType, StatisticType, MatType, FirstPointIsRoot > StandardCoverTree
The standard cover tree, as detailed in the original cover tree paper:
Definition:
typedef.hpp:42
mlpack::tree::FirstPointIsRoot
This class is meant to be used as a choice for the policy class RootPointPolicy of the CoverTree clas...
Definition:
first_point_is_root.hpp:29
cover_tree.hpp