The base class for the direct and incomplete LU factorization of SuperLU. More...
Inheritance diagram for Eigen::SuperLUBase< MatrixType_, Derived >:Public Types | |
| enum | { ColsAtCompileTime , MaxColsAtCompileTime } |
| typedef Matrix< int, MatrixType::RowsAtCompileTime, 1 > | IntColVectorType |
| typedef Matrix< int, 1, MatrixType::ColsAtCompileTime > | IntRowVectorType |
| typedef SparseMatrix< Scalar > | LUMatrixType |
| typedef MatrixType_ | MatrixType |
| typedef Map< PermutationMatrix< Dynamic, Dynamic, int > > | PermutationMap |
| typedef MatrixType::RealScalar | RealScalar |
| typedef MatrixType::Scalar | Scalar |
| typedef MatrixType::StorageIndex | StorageIndex |
| typedef Matrix< Scalar, Dynamic, 1 > | Vector |
Public Member Functions | |
| void | analyzePattern (const MatrixType &) |
| Index | cols () const |
| void | compute (const MatrixType &matrix) |
| template<typename Stream > | |
| void | dumpMemory (Stream &) |
| ComputationInfo | info () const |
| Reports whether previous computation was successful. More... | |
| superlu_options_t & | options () |
| Index | rows () const |
| SuperLUBase () | |
| ~SuperLUBase () | |
Public Member Functions inherited from Eigen::SparseSolverBase< Derived > | |
| Derived & | derived () |
| const Derived & | derived () const |
| template<typename Rhs > | |
| const Solve< Derived, Rhs > | solve (const MatrixBase< Rhs > &b) const |
| template<typename Rhs > | |
| const Solve< Derived, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
| SparseSolverBase () | |
| SparseSolverBase (SparseSolverBase &&other) | |
| ~SparseSolverBase () | |
Protected Types | |
| typedef SparseSolverBase< Derived > | Base |
Protected Member Functions | |
| void | clearFactors () |
| Derived & | derived () |
| const Derived & | derived () const |
| void | extractData () const |
| void | init () |
| void | initFactorization (const MatrixType &a) |
Protected Attributes | |
| int | m_analysisIsOk |
| bool | m_extractedDataAreDirty |
| int | m_factorizationIsOk |
| ComputationInfo | m_info |
| bool | m_isInitialized |
| LUMatrixType | m_l |
| LUMatrixType | m_matrix |
| IntColVectorType | m_p |
| IntRowVectorType | m_q |
| SluMatrix | m_sluA |
| SluMatrix | m_sluB |
| Matrix< RealScalar, Dynamic, 1 > | m_sluBerr |
| Matrix< RealScalar, Dynamic, 1 > | m_sluCscale |
| char | m_sluEqued |
| std::vector< int > | m_sluEtree |
| Matrix< RealScalar, Dynamic, 1 > | m_sluFerr |
| SuperMatrix | m_sluL |
| superlu_options_t | m_sluOptions |
| Matrix< RealScalar, Dynamic, 1 > | m_sluRscale |
| SuperLUStat_t | m_sluStat |
| SuperMatrix | m_sluU |
| SluMatrix | m_sluX |
| LUMatrixType | m_u |
Protected Attributes inherited from Eigen::SparseSolverBase< Derived > | |
| bool | m_isInitialized |
Private Member Functions | |
| SuperLUBase (SuperLUBase &) | |
The base class for the direct and incomplete LU factorization of SuperLU.
Definition at line 319 of file SuperLUSupport.h.
|
protected |
Definition at line 322 of file SuperLUSupport.h.
| typedef Matrix<int, MatrixType::RowsAtCompileTime, 1> Eigen::SuperLUBase< MatrixType_, Derived >::IntColVectorType |
Definition at line 332 of file SuperLUSupport.h.
| typedef Matrix<int, 1, MatrixType::ColsAtCompileTime> Eigen::SuperLUBase< MatrixType_, Derived >::IntRowVectorType |
Definition at line 331 of file SuperLUSupport.h.
| typedef SparseMatrix<Scalar> Eigen::SuperLUBase< MatrixType_, Derived >::LUMatrixType |
Definition at line 334 of file SuperLUSupport.h.
| typedef MatrixType_ Eigen::SuperLUBase< MatrixType_, Derived >::MatrixType |
Definition at line 326 of file SuperLUSupport.h.
| typedef Map<PermutationMatrix<Dynamic,Dynamic,int> > Eigen::SuperLUBase< MatrixType_, Derived >::PermutationMap |
Definition at line 333 of file SuperLUSupport.h.
| typedef MatrixType::RealScalar Eigen::SuperLUBase< MatrixType_, Derived >::RealScalar |
Definition at line 328 of file SuperLUSupport.h.
| typedef MatrixType::Scalar Eigen::SuperLUBase< MatrixType_, Derived >::Scalar |
Definition at line 327 of file SuperLUSupport.h.
| typedef MatrixType::StorageIndex Eigen::SuperLUBase< MatrixType_, Derived >::StorageIndex |
Definition at line 329 of file SuperLUSupport.h.
| typedef Matrix<Scalar,Dynamic,1> Eigen::SuperLUBase< MatrixType_, Derived >::Vector |
Definition at line 330 of file SuperLUSupport.h.
| anonymous enum |
|
inline |
Definition at line 342 of file SuperLUSupport.h.
|
inline |
Definition at line 344 of file SuperLUSupport.h.
|
inlineprivate |
Definition at line 469 of file SuperLUSupport.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 379 of file SuperLUSupport.h.
|
inlineprotected |
Definition at line 432 of file SuperLUSupport.h.
|
inline |
Definition at line 350 of file SuperLUSupport.h.
|
inline |
Computes the sparse Cholesky decomposition of matrix
Definition at line 367 of file SuperLUSupport.h.
|
inlineprotected |
Definition at line 83 of file SparseSolverBase.h.
|
inlineprotected |
Definition at line 84 of file SparseSolverBase.h.
|
inline |
Definition at line 388 of file SuperLUSupport.h.
|
protected |
Definition at line 708 of file SuperLUSupport.h.
|
inline |
Reports whether previous computation was successful.
Success if computation was successful, NumericalIssue if the matrix.appears to be negative. Definition at line 360 of file SuperLUSupport.h.
|
inlineprotected |
Definition at line 422 of file SuperLUSupport.h.
|
inlineprotected |
Definition at line 393 of file SuperLUSupport.h.
|
inline |
Definition at line 353 of file SuperLUSupport.h.
|
inline |
Definition at line 349 of file SuperLUSupport.h.
|
protected |
Definition at line 465 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 466 of file SuperLUSupport.h.
|
protected |
Definition at line 464 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 463 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 123 of file SparseSolverBase.h.
|
mutableprotected |
Definition at line 447 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 452 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 449 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 450 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 453 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 455 of file SuperLUSupport.h.
|
protected |
Definition at line 460 of file SuperLUSupport.h.
|
protected |
Definition at line 459 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 461 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 458 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 460 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 454 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 457 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 459 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 456 of file SuperLUSupport.h.
|
protected |
Definition at line 454 of file SuperLUSupport.h.
|
protected |
Definition at line 455 of file SuperLUSupport.h.
|
mutableprotected |
Definition at line 448 of file SuperLUSupport.h.