Warning, /include/eigen3/unsupported/Eigen/IterativeSolvers is written in an unsupported language. File is not indexed.
0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // Copyright (C) 2008-2009 Gael Guennebaud <g.gael@free.fr>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009
0010 #ifndef EIGEN_ITERATIVE_SOLVERS_MODULE_H
0011 #define EIGEN_ITERATIVE_SOLVERS_MODULE_H
0012
0013 #include "../../Eigen/Sparse"
0014 #include "../../Eigen/Jacobi"
0015 #include "../../Eigen/Householder"
0016
0017
0018 /**
0019 * \defgroup IterativeLinearSolvers_Module Iterative solvers module
0020 * This module aims to provide various iterative linear and non linear solver algorithms.
0021 * It currently provides:
0022 * - a constrained conjugate gradient
0023 * - a Householder GMRES implementation
0024 * - an IDR(s) implementation
0025 * - a DGMRES implementation
0026 * - a MINRES implementation
0027 *
0028 * \code
0029 * #include <unsupported/Eigen/IterativeSolvers>
0030 * \endcode
0031 */
0032
0033
0034 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
0035
0036 #ifndef EIGEN_MPL2_ONLY
0037 #include "src/IterativeSolvers/IterationController.h"
0038 #include "src/IterativeSolvers/ConstrainedConjGrad.h"
0039 #endif
0040
0041 #include "src/IterativeSolvers/IncompleteLU.h"
0042 #include "src/IterativeSolvers/GMRES.h"
0043 #include "src/IterativeSolvers/DGMRES.h"
0044 //#include "src/IterativeSolvers/SSORPreconditioner.h"
0045 #include "src/IterativeSolvers/MINRES.h"
0046 #include "src/IterativeSolvers/IDRS.h"
0047
0048 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
0049
0050
0051 #endif // EIGEN_ITERATIVE_SOLVERS_MODULE_H