vicinity 0.8.1

Approximate nearest-neighbor search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tree-based ANN methods.

#[cfg(feature = "rptree")]
pub mod rp_forest; // Random Projection Forest (RP-tree family)

#[cfg(feature = "kdtree")]
pub mod kdtree;

#[cfg(feature = "balltree")]
pub mod balltree;

#[cfg(feature = "rptree")]
pub mod random_projection;

#[cfg(feature = "kmeans_tree")]
pub mod kmeans_tree;