Skip too large real-world problems for solvers that do not scale (e.g., SimplicialLLT without reordering)

This commit is contained in:
Gael Guennebaud
2015-06-09 09:29:53 +02:00
parent 9a2447b0c9
commit 9aef0db992
3 changed files with 44 additions and 26 deletions

View File

@@ -35,8 +35,8 @@ template<typename T, typename I> void test_simplicial_cholesky_T()
check_sparse_spd_determinant(ldlt_colmajor_lower_amd);
check_sparse_spd_determinant(ldlt_colmajor_upper_amd);
check_sparse_spd_solving(ldlt_colmajor_lower_nat);
check_sparse_spd_solving(ldlt_colmajor_upper_nat);
check_sparse_spd_solving(ldlt_colmajor_lower_nat, 300, 1000);
check_sparse_spd_solving(ldlt_colmajor_upper_nat, 300, 1000);
}
void test_simplicial_cholesky()