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::*;
2323
2424pub type Pivot = Vec < i32 > ;
2525
26- pub trait LapackScalar : OperatorNorm_ + QR_ + SVD_ + Solve_ + Solveh_ + Cholesky_ + Eigh_ + Triangular_ { }
26+ pub trait Lapack : OperatorNorm_ + QR_ + SVD_ + Solve_ + Solveh_ + Cholesky_ + Eigh_ + Triangular_ { }
2727
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 { }
3232
3333pub fn into_result < T > ( return_code : i32 , val : T ) -> Result < T > {
3434 if return_code == 0 {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use std::fmt::Debug;
99use std:: iter:: Sum ;
1010use std:: ops:: Neg ;
1111
12- use super :: lapack_traits:: LapackScalar ;
12+ use super :: lapack_traits:: Lapack ;
1313
1414pub use num_complex:: Complex32 as c32;
1515pub use num_complex:: Complex64 as c64;
@@ -27,7 +27,7 @@ pub use num_complex::Complex64 as c64;
2727/// - [`randn`](trait.RandNormal.html#tymethod.randn)
2828///
2929pub trait Scalar :
30- LapackScalar
30+ Lapack
3131 + LinalgScalar
3232 + AssociatedReal
3333 + AssociatedComplex
You can’t perform that action at this time.
0 commit comments