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) );