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

This commit is contained in:
Gael Guennebaud
2015-02-16 19:16:21 +01:00
2 changed files with 63 additions and 13 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()