alyx/
lib.rs

1//! Alyx
2//!
3//! Sparse matrix library.
4//!
5//! # Sparse matrix formats
6//!
7//! - [CooMat]: Coordinate sparse matrix format
8
9#![forbid(unsafe_code)]
10#![deny(warnings)]
11#![deny(missing_docs)]
12
13mod coo;
14pub use coo::CooMat;