MLPACK  1.0.11
typedef.hpp
Go to the documentation of this file.
1 
24 #ifndef __MLPACK_NEIGHBOR_SEARCH_TYPEDEF_H
25 #define __MLPACK_NEIGHBOR_SEARCH_TYPEDEF_H
26 
27 // In case someone included this directly.
28 #include "neighbor_search.hpp"
29 
31 
34 
35 namespace mlpack {
36 namespace neighbor {
37 
43 
49 
50 }; // namespace neighbor
51 }; // namespace mlpack
52 
53 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: load.hpp:31
The NeighborSearch class is a template class for performing distance-based neighbor searches...
NeighborSearch< NearestNeighborSort, metric::EuclideanDistance > AllkNN
The AllkNN class is the all-k-nearest-neighbors method.
Definition: typedef.hpp:42
NeighborSearch< FurthestNeighborSort, metric::EuclideanDistance > AllkFN
The AllkFN class is the all-k-furthest-neighbors method.
Definition: typedef.hpp:48