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