1// This file is part of Eigen, a lightweight C++ template library
4// Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
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/.
10#ifndef EIGEN_ITERATIVE_SOLVERS_MODULE_H
11#define EIGEN_ITERATIVE_SOLVERS_MODULE_H
13#include "../../Eigen/Sparse"
14#include "../../Eigen/Jacobi"
15#include "../../Eigen/Householder"
19 * \defgroup IterativeLinearSolvers_Module Iterative solvers module
20 * This module aims to provide various iterative linear and non linear solver algorithms.
21 * It currently provides:
22 * - a constrained conjugate gradient
23 * - a Householder GMRES implementation
24 * - an IDR(s) implementation
25 * - a DGMRES implementation
26 * - a MINRES implementation
29 * #include <unsupported/Eigen/IterativeSolvers>
34#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
36#ifndef EIGEN_MPL2_ONLY
37#include "src/IterativeSolvers/IterationController.h"
38#include "src/IterativeSolvers/ConstrainedConjGrad.h"
41#include "src/IterativeSolvers/IncompleteLU.h"
42#include "src/IterativeSolvers/GMRES.h"
43#include "src/IterativeSolvers/DGMRES.h"
44//#include "src/IterativeSolvers/SSORPreconditioner.h"
45#include "src/IterativeSolvers/MINRES.h"
46#include "src/IterativeSolvers/IDRS.h"
48#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
51#endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H