|
NDDEM
|
A general Cholesky factorization and solver based on Cholmod. More...
#include <CholmodSupport.h>
Inheritance diagram for Eigen::CholmodDecomposition< _MatrixType, _UpLo >:Public Types | |
| typedef _MatrixType | MatrixType |
Public Types inherited from Eigen::CholmodBase< _MatrixType, Lower, CholmodDecomposition< _MatrixType, Lower > > | |
| enum | |
| enum | |
| typedef _MatrixType | MatrixType |
| typedef MatrixType::Scalar | Scalar |
| typedef MatrixType::RealScalar | RealScalar |
| typedef MatrixType | CholMatrixType |
| typedef MatrixType::StorageIndex | StorageIndex |
Protected Member Functions | |
| void | init () |
Protected Member Functions inherited from Eigen::CholmodBase< _MatrixType, Lower, CholmodDecomposition< _MatrixType, Lower > > | |
| CholmodDecomposition< _MatrixType, Lower > & | derived () |
| const CholmodDecomposition< _MatrixType, Lower > & | derived () const |
Private Types | |
| typedef CholmodBase< _MatrixType, _UpLo, CholmodDecomposition > | Base |
Private Attributes | |
| cholmod_common | m_cholmod |
Additional Inherited Members | |
Protected Types inherited from Eigen::CholmodBase< _MatrixType, Lower, CholmodDecomposition< _MatrixType, Lower > > | |
| typedef SparseSolverBase< CholmodDecomposition< _MatrixType, Lower > > | Base |
Protected Attributes inherited from Eigen::CholmodBase< _MatrixType, Lower, CholmodDecomposition< _MatrixType, Lower > > | |
| cholmod_common | m_cholmod |
| cholmod_factor * | m_cholmodFactor |
| double | m_shiftOffset [2] |
| ComputationInfo | m_info |
| int | m_factorizationIsOk |
| int | m_analysisIsOk |
| bool | m_isInitialized |
Protected Attributes inherited from Eigen::SparseSolverBase< Derived > | |
| bool | m_isInitialized |
A general Cholesky factorization and solver based on Cholmod.
This class allows to solve for A.X = B sparse linear problems via a LL^T or LDL^T Cholesky factorization using the Cholmod library. The sparse matrix A must be selfadjoint and positive definite. The vectors or matrices X and B can be either dense or sparse.
This variant permits to change the underlying Cholesky method at runtime. On the other hand, it does not provide access to the result of the factorization. The default is to let Cholmod automatically choose between a simplicial and supernodal factorization.
| _MatrixType | the type of the sparse matrix A, it must be a SparseMatrix<> |
| _UpLo | the triangular part that will be used for the computations. It can be Lower or Upper. Default is Lower. |
\implsparsesolverconcept
This class supports all kind of SparseMatrix<>: row or column major; upper, lower, or both; compressed or non compressed.
|
private |
| typedef _MatrixType Eigen::CholmodDecomposition< _MatrixType, _UpLo >::MatrixType |
|
inline |
|
inline |
|
inline |
|
inlineprotected |
|
inline |
|
mutableprivate |