nalgebra/tests
Jim Turner cea3bdc8e5 Fix Cholesky::determinant for Complex elements
The previous implementation was correct only for real elements. The
Cholesky decomposition is `L L^H`, so the determinant is `det(L) *
det(L^H)`. Since `L` is a triangular matrix, `det(L)` is the product
of the diagonal elements of `L`. Since `L^H` is triangular and its
diagonal elements are the conjugates of the diagonal elements of `L`,
`det(L^H)` is the conjugate of `det(L)`. So, the overall determinant
is the product of the diagonal elements of `L` times its conjugate.
2021-04-09 14:28:16 -04:00
..
core Use proptest for all nalgebra tests. 2021-02-28 17:52:14 +01:00
geometry Use proptest for all nalgebra tests. 2021-02-28 17:52:14 +01:00
linalg Fix Cholesky::determinant for Complex elements 2021-04-09 14:28:16 -04:00
proptest nalgebra-lapack: run tests with proptest instead of quickcheck. 2021-02-28 18:39:18 +01:00
sparse Use proptest for all nalgebra tests. 2021-02-28 17:52:14 +01:00
lib.rs Enable rand for tests. 2021-03-02 12:37:00 +01:00