1//! The partial pivoting LU decomposition is such that:
2//! $$PA = LU,$$
3//! where $P$ is a permutation matrix, $L$ is a unit lower triangular matrix, and $U$ is
4//! an upper triangular matrix.
56pub mod compute;
7pub mod inverse;
8pub mod reconstruct;
9pub mod solve;