Skip to main content

Module prelude

Module prelude 

Source
Expand description

Common imports for ergonomic usage.

This prelude re-exports the primary types and constants: Matrix, Vector, Lu, Ldlt, LaError, DEFAULT_PIVOT_TOL, DEFAULT_SINGULAR_TOL, and the determinant error bound coefficients ERR_COEFF_2, ERR_COEFF_3, and ERR_COEFF_4.

When the exact feature is enabled, BigRational is also re-exported for use with Matrix::det_exact.

Re-exports§

pub use crate::DEFAULT_PIVOT_TOL;
pub use crate::DEFAULT_SINGULAR_TOL;
pub use crate::ERR_COEFF_2;
pub use crate::ERR_COEFF_3;
pub use crate::ERR_COEFF_4;
pub use crate::LaError;
pub use crate::Ldlt;
pub use crate::Lu;
pub use crate::Matrix;
pub use crate::Vector;

Type Aliases§

BigRational
Alias for arbitrary precision rationals.