1// This file is part of Eigen, a lightweight C++ template library 2// for linear algebra. 3// 4// Copyright (C) 2008-2009 Gael Guennebaud <[email protected]> 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 10#ifndef EIGEN_ITERATIVE_SOLVERS_MODULE_H 11#define EIGEN_ITERATIVE_SOLVERS_MODULE_H 12 13#include "../../Eigen/Sparse" 14#include "../../Eigen/Jacobi" 15#include "../../Eigen/Householder" 16 17 18/** 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 27 * 28 * \code 29 * #include <unsupported/Eigen/IterativeSolvers> 30 * \endcode 31 */ 32 33 34#include "../../Eigen/src/Core/util/DisableStupidWarnings.h" 35 36#ifndef EIGEN_MPL2_ONLY 37#include "src/IterativeSolvers/IterationController.h" 38#include "src/IterativeSolvers/ConstrainedConjGrad.h" 39#endif 40 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" 47 48#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h" 49 50 51#endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H 52