Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include <cmath>
00011
00012 #include "../../test/sparse_solver.h"
00013 #include <Eigen/IterativeSolvers>
00014
00015 template<typename T> void test_minres_T()
00016 {
00017 MINRES<SparseMatrix<T>, Lower|Upper, DiagonalPreconditioner<T> > minres_colmajor_diag;
00018 MINRES<SparseMatrix<T>, Lower, IdentityPreconditioner > minres_colmajor_lower_I;
00019 MINRES<SparseMatrix<T>, Upper, IdentityPreconditioner > minres_colmajor_upper_I;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 MINRES<SparseMatrix<T>, Lower, DiagonalPreconditioner<T> > minres_colmajor_lower_diag;
00030 MINRES<SparseMatrix<T>, Upper, DiagonalPreconditioner<T> > minres_colmajor_upper_diag;
00031 MINRES<SparseMatrix<T>, Upper|Lower, DiagonalPreconditioner<T> > minres_colmajor_uplo_diag;
00032
00033
00034 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_lower_I) );
00035 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_upper_I) );
00036
00037 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_lower_diag) );
00038 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_upper_diag) );
00039
00040
00041
00042
00043 }
00044
00045 void test_minres()
00046 {
00047 CALL_SUBTEST_1(test_minres_T<double>());
00048
00049 }