You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.2 KiB

  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2011 Gael Guennebaud <g.gael@free.fr>
  5. // Copyright (C) 2012 desire Nuentsa <desire.nuentsa_wakam@inria.fr
  6. //
  7. // This Source Code Form is subject to the terms of the Mozilla
  8. // Public License v. 2.0. If a copy of the MPL was not distributed
  9. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  10. #include "../../test/sparse_solver.h"
  11. #include <Eigen/src/IterativeSolvers/DGMRES.h>
  12. template<typename T> void test_dgmres_T()
  13. {
  14. DGMRES<SparseMatrix<T>, DiagonalPreconditioner<T> > dgmres_colmajor_diag;
  15. DGMRES<SparseMatrix<T>, IdentityPreconditioner > dgmres_colmajor_I;
  16. DGMRES<SparseMatrix<T>, IncompleteLUT<T> > dgmres_colmajor_ilut;
  17. //GMRES<SparseMatrix<T>, SSORPreconditioner<T> > dgmres_colmajor_ssor;
  18. CALL_SUBTEST( check_sparse_square_solving(dgmres_colmajor_diag) );
  19. // CALL_SUBTEST( check_sparse_square_solving(dgmres_colmajor_I) );
  20. CALL_SUBTEST( check_sparse_square_solving(dgmres_colmajor_ilut) );
  21. //CALL_SUBTEST( check_sparse_square_solving(dgmres_colmajor_ssor) );
  22. }
  23. void test_dgmres()
  24. {
  25. CALL_SUBTEST_1(test_dgmres_T<double>());
  26. CALL_SUBTEST_2(test_dgmres_T<std::complex<double> >());
  27. }