pub trait Scalar : Copy{
type Real;
}
impl Scalar for f32{
type Real = f32;
}
impl Scalar for f64{
type Real = f64;
}
impl Scalar for c32{
type Real = f32;
}
impl Scalar for c64{
type Real = f64;
}
pub mod simba_feat;
#[cfg(feature = "simba")]
pub use simba_feat::LComplexField;
pub use cblas::Layout as Layout;
pub use cblas::Transpose as Transpose;
pub use num_complex::Complex32 as c32;
pub use num_complex::Complex64 as c64;
pub mod blas;
pub mod lapack;
pub use blas::*;
pub use lapack::*;
#[cfg(test)]
mod tests {
#[allow(unused_imports)]
use openblas_src;
#[test]
fn link() {
()
}
}