IterativeSolvers 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. /**
  13. * \defgroup IterativeSolvers_Module Iterative solvers module
  14. * This module aims to provide various iterative linear and non linear solver algorithms.
  15. * It currently provides:
  16. * - a constrained conjugate gradient
  17. * - a Householder GMRES implementation
  18. * \code
  19. * #include <unsupported/Eigen/IterativeSolvers>
  20. * \endcode
  21. */
  22. //@{
  23. #ifndef EIGEN_MPL2_ONLY
  24. #include "src/IterativeSolvers/IterationController.h"
  25. #include "src/IterativeSolvers/ConstrainedConjGrad.h"
  26. #endif
  27. #include "src/IterativeSolvers/IncompleteLU.h"
  28. #include "../../Eigen/Jacobi"
  29. #include "../../Eigen/Householder"
  30. #include "src/IterativeSolvers/GMRES.h"
  31. #include "src/IterativeSolvers/DGMRES.h"
  32. //#include "src/IterativeSolvers/SSORPreconditioner.h"
  33. #include "src/IterativeSolvers/MINRES.h"
  34. //@}
  35. #endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H