[][src]Struct hnsw::HNSW

pub struct HNSW<T, M: ArrayLength<u32> = U12, M0: ArrayLength<u32> = U24, R = Pcg64> { /* fields omitted */ }

This provides a HNSW implementation for any distance function.

The type T must implement FloatingDistance to get implementations.

Methods

impl<T, M: ArrayLength<u32>, M0: ArrayLength<u32>, R> HNSW<T, M, M0, R> where
    R: RngCore + SeedableRng
[src]

pub fn new() -> Self[src]

Creates a new HNSW with a PRNG which is default seeded to produce deterministic behavior.

pub fn new_params(params: Params) -> Self[src]

Creates a new HNSW with a default seeded PRNG and with the specified params.

impl<T, M: ArrayLength<u32>, M0: ArrayLength<u32>, R> HNSW<T, M, M0, R> where
    R: RngCore,
    T: Distance
[src]

pub fn new_prng(prng: R) -> Self[src]

Creates a HNSW with the passed prng.

pub fn new_params_and_prng(params: Params, prng: R) -> Self[src]

Creates a HNSW with the passed params and prng.

pub fn insert(&mut self, q: T, searcher: &mut Searcher) -> u32[src]

Inserts a feature into the HNSW.

Important traits for &'_ [u8]
pub fn nearest<'a>(
    &self,
    q: &T,
    ef: usize,
    searcher: &mut Searcher,
    dest: &'a mut [u32]
) -> &'a mut [u32]
[src]

Does a k-NN search where q is the query element and it attempts to put up to M nearest neighbors into dest. ef is the candidate pool size. ef can be increased to get better recall at the expense of speed. If ef is less than dest.len() then dest will only be filled with ef elements.

Returns a slice of the filled neighbors.

pub fn feature(&self, item: u32) -> &T[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl<T: Clone, M: Clone + ArrayLength<u32>, M0: Clone + ArrayLength<u32>, R: Clone> Clone for HNSW<T, M, M0, R>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T, M: ArrayLength<u32>, M0: ArrayLength<u32>, R> Default for HNSW<T, M, M0, R> where
    R: SeedableRng
[src]

Auto Trait Implementations

impl<T, M, M0, R> Sync for HNSW<T, M, M0, R> where
    R: Sync,
    T: Sync

impl<T, M, M0, R> Send for HNSW<T, M, M0, R> where
    R: Send,
    T: Send

impl<T, M, M0, R> Unpin for HNSW<T, M, M0, R> where
    R: Unpin,
    T: Unpin,
    <M as ArrayLength<u32>>::ArrayType: Unpin,
    <M0 as ArrayLength<u32>>::ArrayType: Unpin

impl<T, M, M0, R> RefUnwindSafe for HNSW<T, M, M0, R> where
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    <M as ArrayLength<u32>>::ArrayType: RefUnwindSafe,
    <M0 as ArrayLength<u32>>::ArrayType: RefUnwindSafe

impl<T, M, M0, R> UnwindSafe for HNSW<T, M, M0, R> where
    R: UnwindSafe,
    T: UnwindSafe,
    <M as ArrayLength<u32>>::ArrayType: UnwindSafe,
    <M0 as ArrayLength<u32>>::ArrayType: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> FromCast<T> for T[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T[src]

type Output = T

Should always be Self