diff --git a/test/bicgstab.cpp b/test/bicgstab.cpp index 222cd6cbd..bb9da898f 100644 --- a/test/bicgstab.cpp +++ b/test/bicgstab.cpp @@ -29,12 +29,12 @@ template void test_bicgstab_T() { BiCGSTAB, DiagonalPreconditioner > bicgstab_colmajor_diag; BiCGSTAB, IdentityPreconditioner > bicgstab_colmajor_I; - //BiCGSTAB, IncompleteLU > bicgstab_colmajor_ilu; + BiCGSTAB, IncompleteLUT > bicgstab_colmajor_ilut; //BiCGSTAB, SSORPreconditioner > bicgstab_colmajor_ssor; 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_ilu) ); +// CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_I) ); + CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_ilut) ); //CALL_SUBTEST( check_sparse_square_solving(bicgstab_colmajor_ssor) ); } @@ -42,6 +42,6 @@ void test_bicgstab() { for(int i = 0; i < g_repeat; i++) { CALL_SUBTEST_1(test_bicgstab_T()); - //CALL_SUBTEST_2(test_bicgstab_T >()); + CALL_SUBTEST_2(test_bicgstab_T >()); } }