Skip to content

Commit d166b89

Browse files
committed
s/random_regular/random_regular_using/g
1 parent d6bde0c commit d166b89

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ndarray-linalg/tests/det.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ fn det() {
137137
}
138138
}
139139
for rows in 1..5 {
140-
det_impl(random_regular::<f64>(rows), 1e-9);
141-
det_impl(random_regular::<f32>(rows), 1e-4);
142-
det_impl(random_regular::<c64>(rows), 1e-9);
143-
det_impl(random_regular::<c32>(rows), 1e-4);
144-
det_impl(random_regular::<f64>(rows).t().to_owned(), 1e-9);
145-
det_impl(random_regular::<f32>(rows).t().to_owned(), 1e-4);
146-
det_impl(random_regular::<c64>(rows).t().to_owned(), 1e-9);
147-
det_impl(random_regular::<c32>(rows).t().to_owned(), 1e-4);
140+
det_impl(random_regular_using::<f64>(rows), 1e-9);
141+
det_impl(random_regular_using::<f32>(rows), 1e-4);
142+
det_impl(random_regular_using::<c64>(rows), 1e-9);
143+
det_impl(random_regular_using::<c32>(rows), 1e-4);
144+
det_impl(random_regular_using::<f64>(rows).t().to_owned(), 1e-9);
145+
det_impl(random_regular_using::<f32>(rows).t().to_owned(), 1e-4);
146+
det_impl(random_regular_using::<c64>(rows).t().to_owned(), 1e-9);
147+
det_impl(random_regular_using::<c32>(rows).t().to_owned(), 1e-4);
148148
}
149149
}
150150

0 commit comments

Comments
 (0)