1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Large-scale sparse matrix factorization for Rust
//!
//! [View the docs](https://github.com/ankane/libmf-rust)

mod bindings;
mod matrix;
mod model;

pub use matrix::Matrix;
pub use model::Model;