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