mlpack  master
ra_typedef.hpp
Go to the documentation of this file.
1 
13 #ifndef MLPACK_RANN_RA_TYPEDEF_HPP
14 #define MLPACK_RANN_RA_TYPEDEF_HPP
15 
16 // In case someone included this directly.
17 #include "ra_search.hpp"
18 
20 
23 
24 namespace mlpack {
25 namespace neighbor {
26 
36 typedef RASearch<> KRANN;
37 
48 
62 
77 
78 } // namespace neighbor
79 } // namespace mlpack
80 
81 #endif
RASearch KRANN
The KRANN class is the k-rank-approximate-nearest-neighbors method.
Definition: ra_typedef.hpp:36
RASearch AllkRANN
Definition: ra_typedef.hpp:61
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: binarize.hpp:18
RASearch AllkRAFN
Definition: ra_typedef.hpp:76
RASearch< FurthestNeighborSort > KRAFN
The KRAFN class is the k-rank-approximate-farthest-neighbors method.
Definition: ra_typedef.hpp:47
The RASearch class: This class provides a generic manner to perform rank-approximate search via rando...
Definition: ra_search.hpp:71