Skip to content

Commit

Permalink
s/random_regular/random_regular_using/g
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 16, 2022
1 parent d6bde0c commit d166b89
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ndarray-linalg/tests/det.rs
Expand Up @@ -137,14 +137,14 @@ fn det() {
}
}
for rows in 1..5 {
det_impl(random_regular::<f64>(rows), 1e-9);
det_impl(random_regular::<f32>(rows), 1e-4);
det_impl(random_regular::<c64>(rows), 1e-9);
det_impl(random_regular::<c32>(rows), 1e-4);
det_impl(random_regular::<f64>(rows).t().to_owned(), 1e-9);
det_impl(random_regular::<f32>(rows).t().to_owned(), 1e-4);
det_impl(random_regular::<c64>(rows).t().to_owned(), 1e-9);
det_impl(random_regular::<c32>(rows).t().to_owned(), 1e-4);
det_impl(random_regular_using::<f64>(rows), 1e-9);
det_impl(random_regular_using::<f32>(rows), 1e-4);
det_impl(random_regular_using::<c64>(rows), 1e-9);
det_impl(random_regular_using::<c32>(rows), 1e-4);
det_impl(random_regular_using::<f64>(rows).t().to_owned(), 1e-9);
det_impl(random_regular_using::<f32>(rows).t().to_owned(), 1e-4);
det_impl(random_regular_using::<c64>(rows).t().to_owned(), 1e-9);
det_impl(random_regular_using::<c32>(rows).t().to_owned(), 1e-4);
}
}

Expand Down

0 comments on commit d166b89

Please sign in to comment.