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 
17 namespace mlpack {
18 namespace tree {
19 
38 template<typename MetricType, typename StatisticType, typename MatType>
39 using StandardCoverTree = CoverTree<MetricType,
40  StatisticType,
41  MatType,
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
cover_tree.hpp
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:30
mlpack::tree::CoverTree
A cover tree is a tree specifically designed to speed up nearest-neighbor computation in high-dimensi...
Definition: cover_tree.hpp:100