Skip to main content

tang_sparse/
lib.rs

1//! CSR/CSC sparse matrices and sparse solvers.
2
3#![no_std]
4
5extern crate alloc;
6
7mod coo;
8mod csc;
9mod csr;
10
11pub use coo::CooMatrix;
12pub use csc::CscMatrix;
13pub use csr::CsrMatrix;