//! Sparse Linear Algebra Library.
//!
//! The sparse linear algebra library provides convenient matrix format including :
//! - [`CooMatrix`]: Coordinate format matrix intended for incremental matrix construction with duplicates
//! - [`DokMatrix`]: Dictionnary of key format matrix intended for incremental matrix construction without duplicates
//! - [`CsrMatrix`] / [`CscMatrix`]: Compressed sparse matrix intended for standard matrix operations
pub use CooMatrix;
pub use CscMatrix;
pub use CsrMatrix;
pub use DokMatrix;