spd test instead of square test. Still missing complex version of MINRES.

This commit is contained in:
giacomo po 2012-10-01 12:23:03 -07:00
parent 01cb88fff8
commit bf81276dad

View File

@ -19,7 +19,7 @@ template<typename T> void test_minres_T()
//minres<SparseMatrix<T>, SSORPreconditioner<T> > minres_colmajor_ssor;
// CALL_SUBTEST( check_sparse_square_solving(minres_colmajor_diag) );
CALL_SUBTEST( check_sparse_square_solving(minres_colmajor_I) );
CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_I) );
// CALL_SUBTEST( check_sparse_square_solving(minres_colmajor_ilut) );
//CALL_SUBTEST( check_sparse_square_solving(minres_colmajor_ssor) );
}