nalgebra/src/sparse/mod.rs

14 lines
325 B
Rust
Raw Normal View History

2019-02-03 21:18:55 +08:00
//! Sparse matrices.
2018-10-31 00:29:32 +08:00
pub use self::cs_matrix::{
CsMatrix, CsStorage, CsStorageIter, CsStorageIterMut, CsStorageMut, CsVecStorage, CsVector,
2018-10-31 00:29:32 +08:00
};
pub use self::cs_matrix_cholesky::CsCholesky;
2018-10-21 04:26:44 +08:00
mod cs_matrix;
2018-10-30 14:46:34 +08:00
mod cs_matrix_cholesky;
mod cs_matrix_conversion;
mod cs_matrix_ops;
mod cs_matrix_solve;
2019-02-03 21:18:55 +08:00
pub(crate) mod cs_utils;