mlpack  2.0.1
typedef.hpp
Go to the documentation of this file.
1 
14 #ifndef __MLPACK_CORE_TREE_COVER_TREE_TYPEDEF_HPP
15 #define __MLPACK_CORE_TREE_COVER_TREE_TYPEDEF_HPP
16 
17 #include "cover_tree.hpp"
18 
19 namespace mlpack {
20 namespace tree {
21 
40 template<typename MetricType, typename StatisticType, typename MatType>
41 using StandardCoverTree = CoverTree<MetricType,
42  StatisticType,
43  MatType,
45 
46 } // namespace tree
47 } // namespace mlpack
48 
49 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
CoverTree< MetricType, StatisticType, MatType, FirstPointIsRoot > StandardCoverTree
The standard cover tree, as detailed in the original cover tree paper:
Definition: typedef.hpp:44
This class is meant to be used as a choice for the policy class RootPointPolicy of the CoverTree clas...