A sparse direct Cholesky (LLT) factorization and solver based on the PARDISO library. More...
#include <PardisoSupport.h>
Public Types | |
enum | { UpLo = _UpLo } |
Public Member Functions | |
PardisoLLT () | |
PardisoLLT (const MatrixType &matrix) | |
Protected Types | |
typedef PardisoImpl < PardisoLLT< MatrixType, _UpLo > > | Base |
typedef Base::Index | Index |
typedef Base::RealScalar | RealScalar |
typedef Base::Scalar | Scalar |
Protected Member Functions | |
void | getMatrix (const MatrixType &matrix) |
Private Member Functions | |
PardisoLLT (PardisoLLT &) | |
Friends | |
class | PardisoImpl< PardisoLLT< MatrixType, _UpLo > > |
A sparse direct Cholesky (LLT) factorization and solver based on the PARDISO library.
This class allows to solve for A.X = B sparse linear problems via a LL^T Cholesky factorization using the Intel MKL PARDISO library. The sparse matrix A must be selfajoint and positive definite. The vectors or matrices X and B can be either dense or sparse.
MatrixType | the type of the sparse matrix A, it must be a SparseMatrix<> |
UpLo | can be any bitwise combination of Upper, Lower. The default is Upper, meaning only the upper triangular part has to be used. Upper|Lower can be used to tell both triangular parts can be used as input. |
Definition at line 480 of file PardisoSupport.h.
typedef PardisoImpl< PardisoLLT<MatrixType,_UpLo> > Eigen::PardisoLLT< MatrixType, _UpLo >::Base [protected] |
Definition at line 483 of file PardisoSupport.h.
typedef Base::Index Eigen::PardisoLLT< MatrixType, _UpLo >::Index [protected] |
Reimplemented from Eigen::PardisoImpl< Derived >.
Definition at line 485 of file PardisoSupport.h.
typedef Base::RealScalar Eigen::PardisoLLT< MatrixType, _UpLo >::RealScalar [protected] |
Reimplemented from Eigen::PardisoImpl< Derived >.
Definition at line 486 of file PardisoSupport.h.
typedef Base::Scalar Eigen::PardisoLLT< MatrixType, _UpLo >::Scalar [protected] |
Reimplemented from Eigen::PardisoImpl< Derived >.
Definition at line 484 of file PardisoSupport.h.
anonymous enum |
Definition at line 493 of file PardisoSupport.h.
Eigen::PardisoLLT< MatrixType, _UpLo >::PardisoLLT | ( | ) | [inline] |
Definition at line 497 of file PardisoSupport.h.
Eigen::PardisoLLT< MatrixType, _UpLo >::PardisoLLT | ( | const MatrixType & | matrix | ) | [inline] |
Definition at line 503 of file PardisoSupport.h.
Eigen::PardisoLLT< MatrixType, _UpLo >::PardisoLLT | ( | PardisoLLT< MatrixType, _UpLo > & | ) | [inline, private] |
Definition at line 521 of file PardisoSupport.h.
void Eigen::PardisoLLT< MatrixType, _UpLo >::getMatrix | ( | const MatrixType & | matrix | ) | [inline, protected] |
Definition at line 512 of file PardisoSupport.h.
friend class PardisoImpl< PardisoLLT< MatrixType, _UpLo > > [friend] |
Definition at line 489 of file PardisoSupport.h.