IterativeSolvers 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #ifndef EIGEN_ITERATIVE_SOLVERS_MODULE_H
  10. #define EIGEN_ITERATIVE_SOLVERS_MODULE_H
  11. #include "../../Eigen/Sparse"
  12. #include "../../Eigen/Jacobi"
  13. #include "../../Eigen/Householder"
  14. /**
  15. * \defgroup IterativeLinearSolvers_Module Iterative solvers module
  16. * This module aims to provide various iterative linear and non linear solver algorithms.
  17. * It currently provides:
  18. * - a constrained conjugate gradient
  19. * - a Householder GMRES implementation
  20. * - an IDR(s) implementation
  21. * - a DGMRES implementation
  22. * - a MINRES implementation
  23. *
  24. * \code
  25. * #include <unsupported/Eigen/IterativeSolvers>
  26. * \endcode
  27. */
  28. #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
  29. #ifndef EIGEN_MPL2_ONLY
  30. #include "src/IterativeSolvers/IterationController.h"
  31. #include "src/IterativeSolvers/ConstrainedConjGrad.h"
  32. #endif
  33. #include "src/IterativeSolvers/IncompleteLU.h"
  34. #include "src/IterativeSolvers/GMRES.h"
  35. #include "src/IterativeSolvers/DGMRES.h"
  36. //#include "src/IterativeSolvers/SSORPreconditioner.h"
  37. #include "src/IterativeSolvers/MINRES.h"
  38. #include "src/IterativeSolvers/IDRS.h"
  39. #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
  40. #endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H