//! DiskANN - Disk-based Approximate Nearest Neighbor Search
//!
//! Implementation of Microsoft's DiskANN algorithm for billion-scale vector search.
//! DiskANN is optimized for SSD storage and can handle datasets too large for RAM.
//!
//! ## Key Features
//! - Disk-based storage with memory-mapped files
//! - SSD-optimized I/O patterns
//! - Vamana graph for efficient navigation
//! - Streaming search without full index loading
//! - Incremental updates support
//!
//! ## Architecture
//! - **In-memory layer**: Hot vectors and navigation graph
//! - **Disk layer**: Full vector dataset on SSD
//! - **Compressed layer**: Optionally compressed vectors (PQ)
//!
//! ## References
//! - DiskANN paper: <https://proceedings.neurips.cc/paper/2019/file/09853c7fb1d3f8ee67a61b6bf4a7f8e6-Paper.pdf>
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;