nabo 0.6.0

A fast K Nearest Neighbor (KNN) library for low-dimensional spaces
Documentation
1
2
3
4
5
6
7
8
use ordered_float::{FloatCore, NotNan};

/// Parameters to be passed unchanged to internal recursive function
pub(crate) struct InternalParameters<T: FloatCore> {
    pub(crate) max_error2: NotNan<T>,
    pub(crate) max_radius2: NotNan<T>,
    pub(crate) allow_self_match: bool,
}