2012-09-24 07:47:38 -07:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra.
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2012 Giacomo Po <gpo@ucla.edu>
|
2014-03-17 16:33:52 -07:00
|
|
|
// Copyright (C) 2011 Gael Guennebaud <g.gael@free.fr>
|
2012-09-24 07:47:38 -07:00
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2012-11-06 15:25:50 +01:00
|
|
|
#include <cmath>
|
2012-09-24 07:47:38 -07:00
|
|
|
|
|
|
|
|
#include "../../test/sparse_solver.h"
|
|
|
|
|
#include <Eigen/IterativeSolvers>
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void test_minres_T() {
|
2014-03-17 16:33:52 -07:00
|
|
|
// Identity preconditioner
|
|
|
|
|
MINRES<SparseMatrix<T>, Lower, IdentityPreconditioner> minres_colmajor_lower_I;
|
|
|
|
|
MINRES<SparseMatrix<T>, Upper, IdentityPreconditioner> minres_colmajor_upper_I;
|
|
|
|
|
|
|
|
|
|
// Diagonal preconditioner
|
|
|
|
|
MINRES<SparseMatrix<T>, Lower, DiagonalPreconditioner<T> > minres_colmajor_lower_diag;
|
|
|
|
|
MINRES<SparseMatrix<T>, Upper, DiagonalPreconditioner<T> > minres_colmajor_upper_diag;
|
2015-02-10 19:22:05 +01:00
|
|
|
MINRES<SparseMatrix<T>, Lower | Upper, DiagonalPreconditioner<T> > minres_colmajor_uplo_diag;
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2014-03-17 16:33:52 -07:00
|
|
|
// call tests for SPD matrix
|
|
|
|
|
CALL_SUBTEST(check_sparse_spd_solving(minres_colmajor_lower_I));
|
|
|
|
|
CALL_SUBTEST(check_sparse_spd_solving(minres_colmajor_upper_I));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2014-03-17 16:33:52 -07:00
|
|
|
CALL_SUBTEST(check_sparse_spd_solving(minres_colmajor_lower_diag));
|
|
|
|
|
CALL_SUBTEST(check_sparse_spd_solving(minres_colmajor_upper_diag));
|
2015-02-10 18:57:41 +01:00
|
|
|
CALL_SUBTEST(check_sparse_spd_solving(minres_colmajor_uplo_diag));
|
2023-12-05 21:22:55 +00:00
|
|
|
|
2014-03-17 16:33:52 -07:00
|
|
|
// TO DO: symmetric semi-definite matrix
|
|
|
|
|
// TO DO: symmetric indefinite matrix
|
2012-09-24 07:47:38 -07:00
|
|
|
}
|
|
|
|
|
|
2018-07-17 14:46:15 +02:00
|
|
|
EIGEN_DECLARE_TEST(minres) {
|
2012-10-09 13:30:48 +02:00
|
|
|
CALL_SUBTEST_1(test_minres_T<double>());
|
2024-08-02 00:06:24 +00:00
|
|
|
// CALL_SUBTEST_2(test_minres_T<std::complex<double> >());
|
2012-09-24 07:47:38 -07:00
|
|
|
}
|