[][src]Trait goko::query_tools::SingletonQueryHeap

pub trait SingletonQueryHeap {
    fn push_outliers(&mut self, indexes: &[usize], dists: &[f32]);
}

If you have a algorithm that does local brute force KNN on just the singletons, implement this to use the node fn

Required methods

fn push_outliers(&mut self, indexes: &[usize], dists: &[f32])[src]

Shove a bunch of single points onto the heap

Loading content...

Implementors

impl SingletonQueryHeap for KnnQueryHeap[src]

fn push_outliers(&mut self, indexes: &[usize], dists: &[f32])[src]

Shove a bunch of single points onto the heap

Loading content...