From 16da7299dd419d9ddaa19ddd9c8f5244ad52dfbc Mon Sep 17 00:00:00 2001 From: Desire NUENTSA Date: Fri, 10 Feb 2012 18:57:38 +0100 Subject: [PATCH] Add test in BiCGSTAB for ILUT --- test/bicgstab.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 >()); } }