MOAB
4.9.3pre
|
A sparse direct Cholesky (LLT) factorization and solver based on the PARDISO library. More...
#include <PardisoSupport.h>
Public Types | |
enum | { UpLo = _UpLo } |
typedef Base::StorageIndex | StorageIndex |
Public Member Functions | |
PardisoLLT () | |
PardisoLLT (const MatrixType &matrix) | |
Protected Types | |
typedef PardisoImpl < PardisoLLT< MatrixType, _UpLo > > | Base |
typedef Base::Scalar | Scalar |
typedef Base::RealScalar | RealScalar |
Protected Member Functions | |
void | getMatrix (const MatrixType &matrix) |
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 433 of file PardisoSupport.h.
typedef PardisoImpl< PardisoLLT<MatrixType,_UpLo> > Eigen::PardisoLLT< MatrixType, _UpLo >::Base [protected] |
Reimplemented from Eigen::PardisoImpl< PardisoLLT< MatrixType, _UpLo > >.
Definition at line 436 of file PardisoSupport.h.
typedef Base::RealScalar Eigen::PardisoLLT< MatrixType, _UpLo >::RealScalar [protected] |
Reimplemented from Eigen::PardisoImpl< PardisoLLT< MatrixType, _UpLo > >.
Definition at line 438 of file PardisoSupport.h.
typedef Base::Scalar Eigen::PardisoLLT< MatrixType, _UpLo >::Scalar [protected] |
Reimplemented from Eigen::PardisoImpl< PardisoLLT< MatrixType, _UpLo > >.
Definition at line 437 of file PardisoSupport.h.
typedef Base::StorageIndex Eigen::PardisoLLT< MatrixType, _UpLo >::StorageIndex |
Reimplemented from Eigen::PardisoImpl< PardisoLLT< MatrixType, _UpLo > >.
Definition at line 445 of file PardisoSupport.h.
anonymous enum |
Eigen::PardisoLLT< MatrixType, _UpLo >::PardisoLLT | ( | ) | [inline] |
Definition at line 449 of file PardisoSupport.h.
: Base() { pardisoInit(Base::ScalarIsComplex ? 4 : 2); }
Eigen::PardisoLLT< MatrixType, _UpLo >::PardisoLLT | ( | const MatrixType & | matrix | ) | [inline, explicit] |
Definition at line 455 of file PardisoSupport.h.
: Base() { pardisoInit(Base::ScalarIsComplex ? 4 : 2); compute(matrix); }
void Eigen::PardisoLLT< MatrixType, _UpLo >::getMatrix | ( | const MatrixType & | matrix | ) | [inline, protected] |
Definition at line 464 of file PardisoSupport.h.
friend class PardisoImpl< PardisoLLT< MatrixType, _UpLo > > [friend] |
Definition at line 441 of file PardisoSupport.h.