feat: puts ndarray and nalgebra bindings behind feature flags

This commit is contained in:
Volodymyr Orlov
2020-08-28 16:55:41 -07:00
parent 367ea62608
commit 68dca25f91
8 changed files with 173 additions and 125 deletions
+2
View File
@@ -1,7 +1,9 @@
pub mod evd;
pub mod lu;
pub mod naive;
#[cfg(feature = "nalgebra-bindings")]
pub mod nalgebra_bindings;
#[cfg(feature = "ndarray-bindings")]
pub mod ndarray_bindings;
pub mod qr;
pub mod svd;