typedef.hpp

Go to the documentation of this file.
00001 
00024 #ifndef __MLPACK_NEIGHBOR_SEARCH_TYPEDEF_H
00025 #define __MLPACK_NEIGHBOR_SEARCH_TYPEDEF_H
00026 
00027 // In case someone included this directly.
00028 #include "neighbor_search.hpp"
00029 
00030 #include <mlpack/core/metrics/lmetric.hpp>
00031 
00032 #include "sort_policies/nearest_neighbor_sort.hpp"
00033 #include "sort_policies/furthest_neighbor_sort.hpp"
00034 
00035 namespace mlpack {
00036 namespace neighbor {
00037 
00042 typedef NeighborSearch<NearestNeighborSort, metric::EuclideanDistance> AllkNN;
00043 
00048 typedef NeighborSearch<FurthestNeighborSort, metric::EuclideanDistance> AllkFN;
00049 
00050 }; // namespace neighbor
00051 }; // namespace mlpack
00052 
00053 #endif

Generated on 29 Sep 2016 for MLPACK by  doxygen 1.6.1