From b685660b228577045ac4d950d1f860cc4005c17b Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 5 Jun 2015 14:32:26 +0200 Subject: Do go to full accuracy when testing BiCGSTAB. --- test/bicgstab.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/bicgstab.cpp') diff --git a/test/bicgstab.cpp b/test/bicgstab.cpp index 7a9a11330..4cc0dd31c 100644 --- a/test/bicgstab.cpp +++ b/test/bicgstab.cpp @@ -17,6 +17,9 @@ template void test_bicgstab_T() BiCGSTAB, IncompleteLUT > bicgstab_colmajor_ilut; //BiCGSTAB, SSORPreconditioner > bicgstab_colmajor_ssor; + bicgstab_colmajor_diag.setTolerance(NumTraits::epsilon()*4); + bicgstab_colmajor_ilut.setTolerance(NumTraits::epsilon()*4); + CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_diag) ); // CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_I) ); CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_ilut) ); -- cgit v1.2.3