Skip to content
Snippets Groups Projects
Commit 58ff9eb0 authored by Mathis "what could possibly go wrong" Randl's avatar Mathis "what could possibly go wrong" Randl
Browse files

format

parent 99cf5894
No related branches found
No related tags found
No related merge requests found
use proximity::caching::{
ApproximateCache, FifoCache as FifoInternal,
};
use proximity::caching::{ApproximateCache, FifoCache as FifoInternal};
use pyo3::{pyclass, pymethods, PyObject};
use crate::api::F32VecPy;
......
use proximity::caching::{
ApproximateCache, LRUCache as LruInternal,
};
use proximity::caching::{ApproximateCache, LRUCache as LruInternal};
use pyo3::{pyclass, pymethods, PyObject};
use crate::api::F32VecPy;
......
use proximity::caching::{
ApproximateCache, LshFifoCache as LshInternal,
};
use proximity::caching::{ApproximateCache, LshFifoCache as LshInternal};
use pyo3::{pyclass, pymethods, PyObject};
use crate::api::F32VecPy;
......
......@@ -3,4 +3,4 @@ mod list_node;
mod map_entry;
mod lru_cache;
pub use lru_cache::LRUCache;
\ No newline at end of file
pub use lru_cache::LRUCache;
......@@ -5,7 +5,7 @@ mod fifo;
mod lru;
mod lsh;
pub use approximate_cache::ApproximateCache;
pub use fifo::FifoCache;
pub use lru::LRUCache;
pub use lsh::LshFifoCache;
pub use approximate_cache::ApproximateCache;
\ No newline at end of file
mod comp;
mod f32vector;
pub use comp::ApproxComparable;
pub use f32vector::{F32Vector, SIMD_LANECOUNT};
pub use comp::ApproxComparable;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment