mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 11:19:02 +08:00
add the new module headers
This commit is contained in:
parent
53fa851724
commit
cb2f1944e2
37
Eigen/IterativeLinearSolvers
Normal file
37
Eigen/IterativeLinearSolvers
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#ifndef EIGEN_ITERATIVELINEARSOLVERS_MODULE_H
|
||||||
|
#define EIGEN_ITERATIVELINEARSOLVERS_MODULE_H
|
||||||
|
|
||||||
|
#include "SparseCore"
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
||||||
|
|
||||||
|
namespace Eigen {
|
||||||
|
|
||||||
|
/** \ingroup Sparse_modules
|
||||||
|
* \defgroup IterativeLinearSolvers_Module IterativeLinearSolvers module
|
||||||
|
*
|
||||||
|
* This module currently provides iterative methods to solve problems of the form \c A \c x = \c b, where \c A is a squared matrix, usually very large and sparse.
|
||||||
|
* Those solvers are accessible via the following classes:
|
||||||
|
* - ConjugateGrdient for selfadjoint (hermitian) matrices,
|
||||||
|
* - BiCGSTAB for general square matrices.
|
||||||
|
*
|
||||||
|
* Such problems can also be solved using the direct sparse decomposition modules: SparseCholesky, CholmodSupport, UmfPackSupport, SuperLUSupport.
|
||||||
|
*
|
||||||
|
* \code
|
||||||
|
* #include <Eigen/IterativeLinearSolvers>
|
||||||
|
* \endcode
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "src/misc/Solve.h"
|
||||||
|
#include "src/misc/SparseSolve.h"
|
||||||
|
|
||||||
|
#include "src/IterativeLinearSolvers/IterativeSolverBase.h"
|
||||||
|
#include "src/IterativeLinearSolvers/BasicPreconditioners.h"
|
||||||
|
#include "src/IterativeLinearSolvers/ConjugateGradient.h"
|
||||||
|
#include "src/IterativeLinearSolvers/BiCGSTAB.h"
|
||||||
|
|
||||||
|
} // namespace Eigen
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
||||||
|
|
||||||
|
#endif // EIGEN_ITERATIVELINEARSOLVERS_MODULE_H
|
27
Eigen/OrderingMethods
Normal file
27
Eigen/OrderingMethods
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#ifndef EIGEN_ORDERINGMETHODS_MODULE_H
|
||||||
|
#define EIGEN_ORDERINGMETHODS_MODULE_H
|
||||||
|
|
||||||
|
#include "SparseCore"
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
||||||
|
|
||||||
|
namespace Eigen {
|
||||||
|
|
||||||
|
/** \ingroup Sparse_modules
|
||||||
|
* \defgroup OrderingMethods_Module OrderingMethods module
|
||||||
|
*
|
||||||
|
* This module is currently for internal use only.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* \code
|
||||||
|
* #include <Eigen/OrderingMethods>
|
||||||
|
* \endcode
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "src/OrderingMethods/Amd.h"
|
||||||
|
|
||||||
|
} // namespace Eigen
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
||||||
|
|
||||||
|
#endif // EIGEN_ORDERINGMETHODS_MODULE_H
|
34
Eigen/SparseCholesky
Normal file
34
Eigen/SparseCholesky
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
#ifndef EIGEN_SPARSECHOLESKY_MODULE_H
|
||||||
|
#define EIGEN_SPARSECHOLESKY_MODULE_H
|
||||||
|
|
||||||
|
#include "SparseCore"
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
||||||
|
|
||||||
|
namespace Eigen {
|
||||||
|
|
||||||
|
/** \ingroup Sparse_modules
|
||||||
|
* \defgroup SparseCholesky_Module SparseCholesky module
|
||||||
|
*
|
||||||
|
* This module currently provides two variants of the direct sparse Cholesky decomposition for selfadjoint (hermitian) matrices.
|
||||||
|
* Those decompositions are accessible via the following classes:
|
||||||
|
* - SimplicialLLt,
|
||||||
|
* - SimplicialLDLt
|
||||||
|
*
|
||||||
|
* Such problems can also be solved using the ConjugateGradient solver from the IterativeLinearSolvers module.
|
||||||
|
*
|
||||||
|
* \code
|
||||||
|
* #include <Eigen/SparseCholesky>
|
||||||
|
* \endcode
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "src/misc/Solve.h"
|
||||||
|
#include "src/misc/SparseSolve.h"
|
||||||
|
|
||||||
|
#include "src/SparseCholesky/SimplicialCholesky.h"
|
||||||
|
|
||||||
|
} // namespace Eigen
|
||||||
|
|
||||||
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
||||||
|
|
||||||
|
#endif // EIGEN_SPARSECHOLESKY_MODULE_H
|
Loading…
x
Reference in New Issue
Block a user