mlpack 3.4.2
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
17namespace mlpack {
18namespace tree {
19
38template<typename MetricType, typename StatisticType, typename MatType>
39using StandardCoverTree = CoverTree<MetricType,
40 StatisticType,
41 MatType,
43
44} // namespace tree
45} // namespace mlpack
46
47#endif
A cover tree is a tree specifically designed to speed up nearest-neighbor computation in high-dimensi...
Definition: cover_tree.hpp:100
This class is meant to be used as a choice for the policy class RootPointPolicy of the CoverTree clas...
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1