1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
extern crate blas;
#[cfg(test)]
extern crate blas_src;
extern crate lapack;
#[cfg(test)]
extern crate lapack_src;
extern crate rayon;
extern crate thiserror;

pub use crate::{
    matrix::{
        bd::*,
        ci::*,
        di::*,
        ge::{
            or_un::*,
            sy_he::{po::*, *},
            tr::*,
            *,
        },
        gt::*,
        kr::*,
        sp_hp::{pp::*, *},
        ss::*,
        st::{pt::*, *},
        to::*,
        *,
    },
    number::*,
};

pub mod macros;
pub mod matrix;
pub mod number;