1//! the $L L^\top$ decomposition of a self-adjoint positive definite matrix $A$ is such that:
2//! $$A = L L^H$$
3//! where $L$ is a lower triangular matrix
4#![allow(missing_docs)]
56pub mod factor;
7pub mod solve;
8pub mod update;
910pub mod inverse;
11pub mod reconstruct;