superlu_sys/lib.rs
1//! Bindings to [SuperLU].
2//!
3//! [superlu]: http://crd-legacy.lbl.gov/~xiaoye/SuperLU
4
5#![allow(bad_style)]
6
7extern crate libc;
8extern crate openblas_src;
9
10mod dsp_blas2;
11mod dsp_blas3;
12mod slu_ddefs;
13mod slu_util;
14mod sp_preorder;
15mod superlu_enum_consts;
16mod supermatrix;
17
18pub use dsp_blas2::*;
19pub use dsp_blas3::*;
20pub use slu_ddefs::*;
21pub use slu_util::*;
22pub use sp_preorder::*;
23pub use superlu_enum_consts::*;
24pub use supermatrix::*;