1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

pub use self::csmat::{CompressedStorage,
                      CsMat,
                      CsMatOwned,
                      CsMatView,
};

pub use self::vec::{CsVec,
                    CsVecOwned,
                    CsVecView,
};


pub mod csmat;
pub mod triplet;
pub mod vec;
pub mod permutation;
pub mod prod;
pub mod binop;
pub mod construct;
pub mod linalg;
pub mod symmetric;
pub mod compressed;