nalgebra/nalgebra-sparse/src/factorization/mod.rs
Andreas Longva 7473d54d74 rustfmt
2021-01-26 10:11:24 +01:00

7 lines
176 B
Rust

//! Matrix factorization for sparse matrices.
//!
//! Currently, the only factorization provided here is the [`CscCholesky`] factorization.
mod cholesky;
pub use cholesky::*;