![]() |
Prusa Slicer 2.6.0
|
The base class for the direct and incomplete LU factorization of SuperLU. More...
#include <src/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h>
Inheritance diagram for Eigen::SuperLUBase< _MatrixType, Derived >:
Collaboration diagram for Eigen::SuperLUBase< _MatrixType, Derived >:Public Types | |
| enum | { ColsAtCompileTime = MatrixType::ColsAtCompileTime , MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime } |
| typedef _MatrixType | MatrixType |
| typedef MatrixType::Scalar | Scalar |
| typedef MatrixType::RealScalar | RealScalar |
| typedef MatrixType::StorageIndex | StorageIndex |
| typedef Matrix< Scalar, Dynamic, 1 > | Vector |
| typedef Matrix< int, 1, MatrixType::ColsAtCompileTime > | IntRowVectorType |
| typedef Matrix< int, MatrixType::RowsAtCompileTime, 1 > | IntColVectorType |
| typedef Map< PermutationMatrix< Dynamic, Dynamic, int > > | PermutationMap |
| typedef SparseMatrix< Scalar > | LUMatrixType |
Public Member Functions | |
| SuperLUBase () | |
| ~SuperLUBase () | |
| Index | rows () const |
| Index | cols () const |
| superlu_options_t & | options () |
| ComputationInfo | info () const |
| Reports whether previous computation was successful. | |
| void | compute (const MatrixType &matrix) |
| void | analyzePattern (const MatrixType &) |
| template<typename Stream > | |
| void | dumpMemory (Stream &) |
| 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 |
| template<typename Rhs , typename Dest > | |
| void | _solve_impl (const SparseMatrixBase< Rhs > &b, SparseMatrixBase< Dest > &dest) const |
Protected Types | |
| typedef SparseSolverBase< Derived > | Base |
Protected Member Functions | |
| void | initFactorization (const MatrixType &a) |
| void | init () |
| void | extractData () const |
| void | clearFactors () |
| Derived & | derived () |
| const Derived & | derived () const |
Protected Attributes | |
| LUMatrixType | m_l |
| LUMatrixType | m_u |
| IntColVectorType | m_p |
| IntRowVectorType | m_q |
| LUMatrixType | m_matrix |
| SluMatrix | m_sluA |
| SuperMatrix | m_sluL |
| SuperMatrix | m_sluU |
| SluMatrix | m_sluB |
| SluMatrix | m_sluX |
| SuperLUStat_t | m_sluStat |
| superlu_options_t | m_sluOptions |
| std::vector< int > | m_sluEtree |
| Matrix< RealScalar, Dynamic, 1 > | m_sluRscale |
| Matrix< RealScalar, Dynamic, 1 > | m_sluCscale |
| Matrix< RealScalar, Dynamic, 1 > | m_sluFerr |
| Matrix< RealScalar, Dynamic, 1 > | m_sluBerr |
| char | m_sluEqued |
| ComputationInfo | m_info |
| int | m_factorizationIsOk |
| int | m_analysisIsOk |
| bool | m_extractedDataAreDirty |
| bool | m_isInitialized |
Private Member Functions | |
| SuperLUBase (SuperLUBase &) | |
The base class for the direct and incomplete LU factorization of SuperLU.
|
protected |
| typedef Matrix<int, MatrixType::RowsAtCompileTime, 1> Eigen::SuperLUBase< _MatrixType, Derived >::IntColVectorType |
| typedef Matrix<int, 1, MatrixType::ColsAtCompileTime> Eigen::SuperLUBase< _MatrixType, Derived >::IntRowVectorType |
| typedef SparseMatrix<Scalar> Eigen::SuperLUBase< _MatrixType, Derived >::LUMatrixType |
| typedef _MatrixType Eigen::SuperLUBase< _MatrixType, Derived >::MatrixType |
| typedef Map<PermutationMatrix<Dynamic,Dynamic,int> > Eigen::SuperLUBase< _MatrixType, Derived >::PermutationMap |
| typedef MatrixType::RealScalar Eigen::SuperLUBase< _MatrixType, Derived >::RealScalar |
| typedef MatrixType::Scalar Eigen::SuperLUBase< _MatrixType, Derived >::Scalar |
| typedef MatrixType::StorageIndex Eigen::SuperLUBase< _MatrixType, Derived >::StorageIndex |
| typedef Matrix<Scalar,Dynamic,1> Eigen::SuperLUBase< _MatrixType, Derived >::Vector |
| anonymous enum |
| Enumerator | |
|---|---|
| ColsAtCompileTime | |
| MaxColsAtCompileTime | |
|
inline |
|
inline |
References Eigen::SuperLUBase< _MatrixType, Derived >::clearFactors().
Here is the call graph for this function:
|
inlineprivate |
|
inlineinherited |
References Eigen::SparseSolverBase< Derived >::derived(), Eigen::SparseMatrixBase< Derived >::derived(), and Eigen::internal::solve_sparse_through_dense_panels().
Here is the call graph for this function:
|
inline |
Performs a symbolic decomposition on the sparcity of matrix.
This function is particularly useful when solving for several problems having the same structure.
References Eigen::SuperLUBase< _MatrixType, Derived >::m_analysisIsOk, Eigen::SuperLUBase< _MatrixType, Derived >::m_factorizationIsOk, Eigen::SuperLUBase< _MatrixType, Derived >::m_info, Eigen::SuperLUBase< _MatrixType, Derived >::m_isInitialized, and Eigen::Success.
Referenced by Eigen::SuperLU< _MatrixType >::analyzePattern().
Here is the caller graph for this function:
|
inlineprotected |
References Eigen::SuperLUBase< _MatrixType, Derived >::m_sluL, and Eigen::SuperLUBase< _MatrixType, Derived >::m_sluU.
Referenced by Eigen::SuperLUBase< _MatrixType, Derived >::~SuperLUBase(), and Eigen::SuperLUBase< _MatrixType, Derived >::initFactorization().
Here is the caller graph for this function:
|
inline |
References Eigen::SparseMatrix< _Scalar, _Options, _StorageIndex >::cols(), and Eigen::SuperLUBase< _MatrixType, Derived >::m_matrix.
Here is the call graph for this function:
|
inline |
Computes the sparse Cholesky decomposition of matrix
References Eigen::SuperLUBase< _MatrixType, Derived >::derived().
Referenced by Eigen::SuperLU< _MatrixType >::SuperLU().
Here is the call graph for this function:
Here is the caller graph for this function:
|
inlineprotected |
Referenced by Eigen::SuperLUBase< _MatrixType, Derived >::compute().
Here is the caller graph for this function:
|
inlineprotected |
|
inline |
|
protected |
References eigen_assert.
|
inline |
Reports whether previous computation was successful.
Success if computation was succesful, NumericalIssue if the matrix.appears to be negative. References eigen_assert, Eigen::SuperLUBase< _MatrixType, Derived >::m_info, and Eigen::SuperLUBase< _MatrixType, Derived >::m_isInitialized.
|
inlineprotected |
References Eigen::InvalidInput, Eigen::SuperLUBase< _MatrixType, Derived >::m_info, Eigen::SuperLUBase< _MatrixType, Derived >::m_isInitialized, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluL, and Eigen::SuperLUBase< _MatrixType, Derived >::m_sluU.
Referenced by Eigen::SuperLU< _MatrixType >::init().
Here is the caller graph for this function:
|
inlineprotected |
References Eigen::internal::asSluMatrix(), Eigen::SuperLUBase< _MatrixType, Derived >::clearFactors(), Eigen::SuperLUBase< _MatrixType, Derived >::m_extractedDataAreDirty, Eigen::SuperLUBase< _MatrixType, Derived >::m_matrix, Eigen::SuperLUBase< _MatrixType, Derived >::m_p, Eigen::SuperLUBase< _MatrixType, Derived >::m_q, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluA, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluB, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluCscale, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluEtree, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluOptions, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluRscale, Eigen::SuperLUBase< _MatrixType, Derived >::m_sluX, Eigen::PlainObjectBase< Derived >::resize(), Eigen::SluMatrix::setScalarType(), Eigen::SluMatrix::setStorageType(), and Eigen::SluMatrix::storage.
Here is the call graph for this function:
|
inline |
References Eigen::SuperLUBase< _MatrixType, Derived >::m_sluOptions.
|
inline |
References Eigen::SuperLUBase< _MatrixType, Derived >::m_matrix, and Eigen::SparseMatrix< _Scalar, _Options, _StorageIndex >::rows().
Here is the call graph for this function:
|
inlineinherited |
References Eigen::SparseSolverBase< Derived >::derived(), eigen_assert, and Eigen::SparseSolverBase< Derived >::m_isInitialized.
Referenced by igl::embree::bone_heat(), igl::Frame_field_deformer::compute_optimal_positions(), igl::eigs(), igl::copyleft::comiso::FrameInterpolator::interpolateSymmetric(), igl::slim::solve_weighted_arap(), and igl::copyleft::comiso::NRosyField::solveNoRoundings().
Here is the call graph for this function:
Here is the caller graph for this function:
|
inlineinherited |
|
protected |
Referenced by Eigen::SuperLUBase< _MatrixType, Derived >::analyzePattern().
|
mutableprotected |
|
protected |
Referenced by Eigen::SuperLUBase< _MatrixType, Derived >::analyzePattern().
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
protected |
|
protected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
protected |
|
protected |
|
mutableprotected |