We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d470ad2 commit 6571d86Copy full SHA for 6571d86
ndarray-linalg/tests/least_squares.rs
@@ -19,7 +19,7 @@ fn test_exact<T: Scalar + Lapack>(a: Array2<T>) {
19
20
// b == Ax
21
let ax = a.dot(&x);
22
- assert_close_l2!(&b, &ax, T::real(1.0e-4));
+ assert_close_max!(&b, &ax, T::real(1.0e-4));
23
}
24
25
macro_rules! impl_exact {
@@ -102,7 +102,7 @@ fn test_underdetermined<T: Scalar + Lapack>(a: Array2<T>) {
102
103
let x = result.solution;
104
105
106
107
108
macro_rules! impl_underdetermined {
0 commit comments