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 d202d75 commit 1b17b65Copy full SHA for 1b17b65
tests/cholesky.rs
@@ -15,13 +15,3 @@ fn cholesky() {
15
println!("cc = \n{:?}", c.t().dot(&c));
16
assert_close_l2!(&c.t().dot(&c), &a, 1e-7);
17
}
18
-
19
-#[test]
20
-fn cholesky_t() {
21
- let a: Array2<f64> = random_hpd(3);
22
- println!("a = \n{:?}", a);
23
- let c: Array2<_> = (&a).cholesky(UPLO::Upper).unwrap();
24
- println!("c = \n{:?}", c);
25
- println!("cc = \n{:?}", c.t().dot(&c));
26
- assert_close_l2!(&c.t().dot(&c), &a, 1e-7);
27
-}
0 commit comments