nalgebra/nalgebra-sparse/src/factorization/mod.rs

7 lines
176 B
Rust
Raw Normal View History

//! Matrix factorization for sparse matrices.
2021-01-22 21:32:13 +08:00
//!
//! Currently, the only factorization provided here is the [`CscCholesky`] factorization.
mod cholesky;
2021-01-26 00:26:27 +08:00
pub use cholesky::*;