A direct sparse LDLT Cholesky factorizations without square root. More...
#include <SimplicialCholesky.h>
Public Types | |
enum | { UpLo = _UpLo } |
typedef SimplicialCholeskyBase< SimplicialLDLT > | Base |
typedef SparseMatrix< Scalar, ColMajor, StorageIndex > | 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< SimplicialLDLT > | Traits |
typedef Matrix< Scalar, Dynamic, 1 > | VectorType |
Public Member Functions | |
void | analyzePattern (const MatrixType &a) |
SimplicialLDLT & | compute (const MatrixType &matrix) |
Scalar | determinant () const |
void | factorize (const MatrixType &a) |
const MatrixL | matrixL () const |
const MatrixU | matrixU () const |
SimplicialLDLT () | |
SimplicialLDLT (const MatrixType &matrix) | |
const VectorType | vectorD () const |
A direct sparse LDLT Cholesky factorizations without square root.
This class provides a LDL^T Cholesky factorizations without square root 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 275 of file SimplicialCholesky.h.
Definition at line 434 of file SimplicialCholesky.h.
Definition at line 438 of file SimplicialCholesky.h.
typedef Traits::MatrixL Eigen::SimplicialLDLT::MatrixL |
Definition at line 441 of file SimplicialCholesky.h.
typedef _MatrixType Eigen::SimplicialLDLT::MatrixType |
Definition at line 432 of file SimplicialCholesky.h.
typedef Traits::MatrixU Eigen::SimplicialLDLT::MatrixU |
Definition at line 442 of file SimplicialCholesky.h.
typedef MatrixType::RealScalar Eigen::SimplicialLDLT::RealScalar |
Definition at line 436 of file SimplicialCholesky.h.
typedef MatrixType::Scalar Eigen::SimplicialLDLT::Scalar |
Definition at line 435 of file SimplicialCholesky.h.
typedef MatrixType::StorageIndex Eigen::SimplicialLDLT::StorageIndex |
Definition at line 437 of file SimplicialCholesky.h.
Definition at line 440 of file SimplicialCholesky.h.
typedef Matrix<Scalar,Dynamic,1> Eigen::SimplicialLDLT::VectorType |
Definition at line 439 of file SimplicialCholesky.h.
anonymous enum |
Enumerator | |
---|---|
UpLo |
Definition at line 433 of file SimplicialCholesky.h.
|
inline |
Default constructor
Definition at line 445 of file SimplicialCholesky.h.
|
inlineexplicit |
Constructs and performs the LLT factorization of matrix
Definition at line 448 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 481 of file SimplicialCholesky.h.
|
inline |
Computes the sparse Cholesky decomposition of matrix
Definition at line 469 of file SimplicialCholesky.h.
|
inline |
Definition at line 498 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 492 of file SimplicialCholesky.h.
|
inline |
Definition at line 457 of file SimplicialCholesky.h.
|
inline |
Definition at line 463 of file SimplicialCholesky.h.
|
inline |
Definition at line 452 of file SimplicialCholesky.h.