File tree Expand file tree Collapse file tree 4 files changed +2
-87
lines changed Expand file tree Collapse file tree 4 files changed +2
-87
lines changed Original file line number Diff line number Diff line change 1
1
//! Implement trait bindings of LAPACK
2
2
pub mod outer;
3
- pub mod qr;
4
- pub mod svd;
5
3
pub mod eigh;
6
4
pub mod solve;
7
5
pub mod cholesky;
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,11 +6,10 @@ use ndarray::DataMut;
6
6
use lapack:: c:: Layout ;
7
7
8
8
use super :: error:: { LinalgError , StrideError } ;
9
- use super :: impls:: svd:: ImplSVD ;
10
9
use super :: impls:: solve:: ImplSolve ;
11
10
12
- pub trait MFloat : ImplSVD + ImplSolve + NdFloat { }
13
- impl < A : ImplSVD + ImplSolve + NdFloat > MFloat for A { }
11
+ pub trait MFloat : ImplSolve + NdFloat { }
12
+ impl < A : ImplSolve + NdFloat > MFloat for A { }
14
13
15
14
/// Methods for general matrices
16
15
pub trait Matrix : Sized {
You can’t perform that action at this time.
0 commit comments