A direct sparse LDLT Cholesky factorizations without square root. More...
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 |
![]() | |
Index | cols () const |
SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () |
SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () |
const SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () const |
const SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () const |
ComputationInfo | info () const |
Reports whether previous computation was successful. More... | |
const PermutationMatrix< Dynamic, Dynamic, StorageIndex > & | permutationP () const |
const PermutationMatrix< Dynamic, Dynamic, StorageIndex > & | permutationPinv () const |
Index | rows () const |
SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | setShift (const RealScalar &offset, const RealScalar &scale=1) |
SimplicialCholeskyBase () | |
SimplicialCholeskyBase (const MatrixType &matrix) | |
~SimplicialCholeskyBase () | |
![]() | |
SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () |
const SimplicialLDLT< MatrixType_, UpLo_, Ordering_ > & | derived () const |
const Solve< SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >, Rhs > | solve (const MatrixBase< Rhs > &b) const |
const Solve< SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
SparseSolverBase () | |
SparseSolverBase (SparseSolverBase &&other) | |
~SparseSolverBase () | |
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<> |
This class follows the sparse solver concept .
Definition at line 431 of file SimplicialCholesky.h.
typedef SimplicialCholeskyBase<SimplicialLDLT> Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::Base |
Definition at line 436 of file SimplicialCholesky.h.
typedef SparseMatrix<Scalar,ColMajor,StorageIndex> Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::CholMatrixType |
Definition at line 440 of file SimplicialCholesky.h.
typedef Traits::MatrixL Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::MatrixL |
Definition at line 443 of file SimplicialCholesky.h.
typedef MatrixType_ Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::MatrixType |
Definition at line 434 of file SimplicialCholesky.h.
typedef Traits::MatrixU Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::MatrixU |
Definition at line 444 of file SimplicialCholesky.h.
typedef MatrixType::RealScalar Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::RealScalar |
Definition at line 438 of file SimplicialCholesky.h.
typedef MatrixType::Scalar Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::Scalar |
Definition at line 437 of file SimplicialCholesky.h.
typedef MatrixType::StorageIndex Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::StorageIndex |
Definition at line 439 of file SimplicialCholesky.h.
typedef internal::traits<SimplicialLDLT> Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::Traits |
Definition at line 442 of file SimplicialCholesky.h.
typedef Matrix<Scalar,Dynamic,1> Eigen::SimplicialLDLT< MatrixType_, UpLo_, Ordering_ >::VectorType |
Definition at line 441 of file SimplicialCholesky.h.
anonymous enum |
|
inline |
Default constructor
Definition at line 447 of file SimplicialCholesky.h.
|
inlineexplicit |
Constructs and performs the LLT factorization of matrix
Definition at line 450 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 483 of file SimplicialCholesky.h.
|
inline |
Computes the sparse Cholesky decomposition of matrix
Definition at line 471 of file SimplicialCholesky.h.
|
inline |
Definition at line 500 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 494 of file SimplicialCholesky.h.
|
inline |
Definition at line 459 of file SimplicialCholesky.h.
|
inline |
Definition at line 465 of file SimplicialCholesky.h.
|
inline |
Definition at line 454 of file SimplicialCholesky.h.