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

6 lines
175 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;
pub use cholesky::*;