The base class for the direct Cholesky factorization of Cholmod.
More...
#include <CholmodSupport.h>
|
| template<typename Rhs , typename Dest > |
| void | _solve (const MatrixBase< Rhs > &b, MatrixBase< Dest > &dest) const |
| |
| template<typename RhsScalar , int RhsOptions, typename RhsIndex , typename DestScalar , int DestOptions, typename DestIndex > |
| void | _solve (const SparseMatrix< RhsScalar, RhsOptions, RhsIndex > &b, SparseMatrix< DestScalar, DestOptions, DestIndex > &dest) const |
| |
| void | analyzePattern (const MatrixType &matrix) |
| |
| cholmod_common & | cholmod () |
| |
| | CholmodBase () |
| |
| | CholmodBase (const MatrixType &matrix) |
| |
| Index | cols () const |
| |
| Derived & | compute (const MatrixType &matrix) |
| |
| Derived & | derived () |
| |
| const Derived & | derived () const |
| |
| template<typename Stream > |
| void | dumpMemory (Stream &) |
| |
| void | factorize (const MatrixType &matrix) |
| |
| ComputationInfo | info () const |
| | Reports whether previous computation was successful. More...
|
| |
| Index | rows () const |
| |
| Derived & | setShift (const RealScalar &offset) |
| |
| template<typename Rhs > |
| const internal::solve_retval< CholmodBase, Rhs > | solve (const MatrixBase< Rhs > &b) const |
| |
| template<typename Rhs > |
| const internal::sparse_solve_retval< CholmodBase, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
| |
| | ~CholmodBase () |
| |
template<typename _MatrixType, int _UpLo, typename Derived>
class Eigen::CholmodBase< _MatrixType, _UpLo, Derived >
The base class for the direct Cholesky factorization of Cholmod.
- See also
- class CholmodSupernodalLLT, class CholmodSimplicialLDLT, class CholmodSimplicialLLT
Definition at line 158 of file CholmodSupport.h.
◆ CholMatrixType
template<typename _MatrixType, int _UpLo, typename Derived>
◆ Index
template<typename _MatrixType, int _UpLo, typename Derived>
◆ MatrixType
template<typename _MatrixType, int _UpLo, typename Derived>
◆ RealScalar
template<typename _MatrixType, int _UpLo, typename Derived>
◆ Scalar
template<typename _MatrixType, int _UpLo, typename Derived>
◆ anonymous enum
template<typename _MatrixType, int _UpLo, typename Derived>
◆ CholmodBase() [1/2]
template<typename _MatrixType, int _UpLo, typename Derived>
◆ CholmodBase() [2/2]
template<typename _MatrixType, int _UpLo, typename Derived>
◆ ~CholmodBase()
template<typename _MatrixType, int _UpLo, typename Derived>
◆ _solve() [1/2]
template<typename _MatrixType, int _UpLo, typename Derived>
template<typename Rhs , typename Dest >
◆ _solve() [2/2]
template<typename _MatrixType, int _UpLo, typename Derived>
template<typename RhsScalar , int RhsOptions, typename RhsIndex , typename DestScalar , int DestOptions, typename DestIndex >
◆ analyzePattern()
template<typename _MatrixType, int _UpLo, typename Derived>
Performs a symbolic decomposition on the sparcity of matrix.
This function is particularly useful when solving for several problems having the same structure.
- See also
- factorize()
Definition at line 250 of file CholmodSupport.h.
◆ cholmod()
template<typename _MatrixType, int _UpLo, typename Derived>
Returns a reference to the Cholmod's configuration structure to get a full control over the performed operations. See the Cholmod user guide for details.
Definition at line 285 of file CholmodSupport.h.
◆ cols()
template<typename _MatrixType, int _UpLo, typename Derived>
◆ compute()
template<typename _MatrixType, int _UpLo, typename Derived>
Computes the sparse Cholesky decomposition of matrix
Definition at line 209 of file CholmodSupport.h.
◆ derived() [1/2]
template<typename _MatrixType, int _UpLo, typename Derived>
◆ derived() [2/2]
template<typename _MatrixType, int _UpLo, typename Derived>
◆ dumpMemory()
template<typename _MatrixType, int _UpLo, typename Derived>
template<typename Stream >
◆ factorize()
template<typename _MatrixType, int _UpLo, typename Derived>
Performs a numeric decomposition of matrix
The given matrix must has the same sparcity than the matrix on which the symbolic decomposition has been performed.
- See also
- analyzePattern()
Definition at line 272 of file CholmodSupport.h.
◆ info()
template<typename _MatrixType, int _UpLo, typename Derived>
Reports whether previous computation was successful.
- Returns
Success if computation was succesful, NumericalIssue if the matrix.appears to be negative.
Definition at line 202 of file CholmodSupport.h.
◆ rows()
template<typename _MatrixType, int _UpLo, typename Derived>
◆ setShift()
template<typename _MatrixType, int _UpLo, typename Derived>
Sets the shift parameter that will be used to adjust the diagonal coefficients during the numerical factorization.
During the numerical factorization, an offset term is added to the diagonal coefficients:
d_ii = offset + d_ii
The default is offset=0.
- Returns
- a reference to
*this.
Definition at line 342 of file CholmodSupport.h.
◆ solve() [1/2]
template<typename _MatrixType, int _UpLo, typename Derived>
template<typename Rhs >
◆ solve() [2/2]
template<typename _MatrixType, int _UpLo, typename Derived>
template<typename Rhs >
◆ m_analysisIsOk
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_cholmod
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_cholmodFactor
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_factorizationIsOk
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_info
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_isInitialized
template<typename _MatrixType, int _UpLo, typename Derived>
◆ m_shiftOffset
template<typename _MatrixType, int _UpLo, typename Derived>
The documentation for this class was generated from the following file: