spsolve 0.1.0

Solve sparse systems of linear equations
Documentation
//! Defines a generic trait for factorizing and solving sparse systems
//! of linear equations.

mod traits;

#[cfg(feature = "rlu")]
pub mod rlu;

#[cfg(feature = "lufact")]
pub mod lufact;

#[cfg(feature = "klu")]
pub mod klu;

#[cfg(feature = "csparse")]
pub mod csparse;

#[cfg(feature = "rsparse")]
pub mod rsparse;

#[cfg(feature = "matrix")]
pub mod matrix;

#[cfg(test)]
pub mod test;

pub use traits::*;