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.

41 lines
1.3 KiB

  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. /** \ingroup Unsupported_modules
  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. #include "../../Eigen/src/misc/Solve.h"
  24. #include "../../Eigen/src/misc/SparseSolve.h"
  25. #include "src/IterativeSolvers/IterationController.h"
  26. #include "src/IterativeSolvers/ConstrainedConjGrad.h"
  27. #include "src/IterativeSolvers/IncompleteLU.h"
  28. #include "../../Eigen/Jacobi"
  29. #include "../../Eigen/Householder"
  30. #include "src/IterativeSolvers/GMRES.h"
  31. #include "src/IterativeSolvers/IncompleteCholesky.h"
  32. //#include "src/IterativeSolvers/SSORPreconditioner.h"
  33. //@}
  34. #endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H