//! Dynamic linear algebra — DVec, DMat, decompositions.
//!
//! Generic over `crate::Scalar`, with optional `faer` bridge for
//! high-performance f64/f32 decompositions.
extern crate std;
extern crate alloc;
pub use Cholesky;
pub use DMat;
pub use DVec;
pub use ;
pub use Lu;
pub use Qr;
pub use Svd;