Fix SparseLU::signDeterminant() method, and add a SparseLU::determinant() method.

This commit is contained in:
Gael Guennebaud
2015-02-16 19:09:22 +01:00
parent 8768ff3c31
commit f0b1b1df9b
2 changed files with 54 additions and 4 deletions

View File

@@ -47,6 +47,9 @@ template<typename T> void test_sparselu_T()
check_sparse_square_abs_determinant(sparselu_colamd);
check_sparse_square_abs_determinant(sparselu_amd);
check_sparse_square_determinant(sparselu_colamd);
check_sparse_square_determinant(sparselu_amd);
}
void test_sparselu()