A direct sparse LLT Cholesky factorizations. More...
#include <SimplicialCholesky.h>
Public Types | |
| enum | { UpLo = _UpLo } |
| typedef SimplicialCholeskyBase< SimplicialLLT > | Base |
| typedef SparseMatrix< Scalar, ColMajor, Index > | CholMatrixType |
| typedef Traits::MatrixL | MatrixL |
| typedef _MatrixType | MatrixType |
| typedef Traits::MatrixU | MatrixU |
| typedef MatrixType::RealScalar | RealScalar |
| typedef MatrixType::Scalar | Scalar |
| typedef MatrixType::StorageIndex | StorageIndex |
| typedef internal::traits< SimplicialLLT > | Traits |
| typedef Matrix< Scalar, Dynamic, 1 > | VectorType |
Public Member Functions | |
| void | analyzePattern (const MatrixType &a) |
| SimplicialLLT & | compute (const MatrixType &matrix) |
| Scalar | determinant () const |
| void | factorize (const MatrixType &a) |
| const MatrixL | matrixL () const |
| const MatrixU | matrixU () const |
| SimplicialLLT () | |
| SimplicialLLT (const MatrixType &matrix) | |
A direct sparse LLT Cholesky factorizations.
This class provides a LL^T Cholesky factorizations of sparse matrices that are selfadjoint and positive definite. The factorization allows for solving A.X = B where X and B can be either dense or sparse.
In order to reduce the fill-in, a symmetric permutation P is applied prior to the factorization such that the factorized matrix is P A P^-1.
| _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. |
| _Ordering | The ordering method to use, either AMDOrdering<> or NaturalOrdering<>. Default is AMDOrdering<> |
\implsparsesolverconcept
Definition at line 274 of file SimplicialCholesky.h.
Definition at line 343 of file SimplicialCholesky.h.
Definition at line 347 of file SimplicialCholesky.h.
| typedef Traits::MatrixL Eigen::SimplicialLLT::MatrixL |
Definition at line 350 of file SimplicialCholesky.h.
| typedef _MatrixType Eigen::SimplicialLLT::MatrixType |
Definition at line 341 of file SimplicialCholesky.h.
| typedef Traits::MatrixU Eigen::SimplicialLLT::MatrixU |
Definition at line 351 of file SimplicialCholesky.h.
| typedef MatrixType::RealScalar Eigen::SimplicialLLT::RealScalar |
Definition at line 345 of file SimplicialCholesky.h.
| typedef MatrixType::Scalar Eigen::SimplicialLLT::Scalar |
Definition at line 344 of file SimplicialCholesky.h.
| typedef MatrixType::StorageIndex Eigen::SimplicialLLT::StorageIndex |
Definition at line 346 of file SimplicialCholesky.h.
Definition at line 349 of file SimplicialCholesky.h.
| typedef Matrix<Scalar,Dynamic,1> Eigen::SimplicialLLT::VectorType |
Definition at line 348 of file SimplicialCholesky.h.
| anonymous enum |
| Enumerator | |
|---|---|
| UpLo | |
Definition at line 342 of file SimplicialCholesky.h.
|
inline |
Default constructor
Definition at line 354 of file SimplicialCholesky.h.
|
inlineexplicit |
Constructs and performs the LLT factorization of matrix
Definition at line 356 of file SimplicialCholesky.h.
|
inline |
Performs a symbolic decomposition on the sparcity of matrix.
This function is particularly useful when solving for several problems having the same structure.
Definition at line 384 of file SimplicialCholesky.h.
|
inline |
Computes the sparse Cholesky decomposition of matrix
Definition at line 372 of file SimplicialCholesky.h.
|
inline |
Definition at line 401 of file SimplicialCholesky.h.
|
inline |
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.
Definition at line 395 of file SimplicialCholesky.h.
|
inline |
Definition at line 360 of file SimplicialCholesky.h.
|
inline |
Definition at line 366 of file SimplicialCholesky.h.