File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ use super::types::*;
23
23
24
24
pub type Pivot = Vec < i32 > ;
25
25
26
- pub trait LapackScalar : OperatorNorm_ + QR_ + SVD_ + Solve_ + Solveh_ + Cholesky_ + Eigh_ + Triangular_ { }
26
+ pub trait Lapack : OperatorNorm_ + QR_ + SVD_ + Solve_ + Solveh_ + Cholesky_ + Eigh_ + Triangular_ { }
27
27
28
- impl LapackScalar for f32 { }
29
- impl LapackScalar for f64 { }
30
- impl LapackScalar for c32 { }
31
- impl LapackScalar for c64 { }
28
+ impl Lapack for f32 { }
29
+ impl Lapack for f64 { }
30
+ impl Lapack for c32 { }
31
+ impl Lapack for c64 { }
32
32
33
33
pub fn into_result < T > ( return_code : i32 , val : T ) -> Result < T > {
34
34
if return_code == 0 {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use std::fmt::Debug;
9
9
use std:: iter:: Sum ;
10
10
use std:: ops:: Neg ;
11
11
12
- use super :: lapack_traits:: LapackScalar ;
12
+ use super :: lapack_traits:: Lapack ;
13
13
14
14
pub use num_complex:: Complex32 as c32;
15
15
pub use num_complex:: Complex64 as c64;
@@ -27,7 +27,7 @@ pub use num_complex::Complex64 as c64;
27
27
/// - [`randn`](trait.RandNormal.html#tymethod.randn)
28
28
///
29
29
pub trait Scalar :
30
- LapackScalar
30
+ Lapack
31
31
+ LinalgScalar
32
32
+ AssociatedReal
33
33
+ AssociatedComplex
You can’t perform that action at this time.
0 commit comments