![]() |
Prusa Slicer 2.6.0
|
#include <src/eigen/Eigen/src/PardisoSupport/PardisoSupport.h>
Inheritance diagram for Eigen::PardisoImpl< Derived >:
Collaboration diagram for Eigen::PardisoImpl< Derived >:Public Types | |
| enum | { ScalarIsComplex = NumTraits<Scalar>::IsComplex , ColsAtCompileTime = Dynamic , MaxColsAtCompileTime = Dynamic } |
| typedef Traits::MatrixType | MatrixType |
| typedef Traits::Scalar | Scalar |
| typedef Traits::RealScalar | RealScalar |
| typedef Traits::StorageIndex | StorageIndex |
| typedef SparseMatrix< Scalar, RowMajor, StorageIndex > | SparseMatrixType |
| typedef Matrix< Scalar, Dynamic, 1 > | VectorType |
| typedef Matrix< StorageIndex, 1, MatrixType::ColsAtCompileTime > | IntRowVectorType |
| typedef Matrix< StorageIndex, MatrixType::RowsAtCompileTime, 1 > | IntColVectorType |
| typedef Array< StorageIndex, 64, 1, DontAlign > | ParameterType |
Public Member Functions | |
| PardisoImpl () | |
| ~PardisoImpl () | |
| Index | cols () const |
| Index | rows () const |
| ComputationInfo | info () const |
| Reports whether previous computation was successful. | |
| ParameterType & | pardisoParameterArray () |
| Derived & | analyzePattern (const MatrixType &matrix) |
| Derived & | factorize (const MatrixType &matrix) |
| Derived & | compute (const MatrixType &matrix) |
| template<typename Rhs , typename Dest > | |
| void | _solve_impl (const MatrixBase< Rhs > &b, MatrixBase< Dest > &dest) const |
| template<typename BDerived , typename XDerived > | |
| void | _solve_impl (const MatrixBase< BDerived > &b, MatrixBase< XDerived > &x) const |
| template<typename Rhs , typename Dest > | |
| void | _solve_impl (const SparseMatrixBase< Rhs > &b, SparseMatrixBase< Dest > &dest) 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 |
Protected Types | |
| typedef SparseSolverBase< Derived > | Base |
| typedef internal::pardiso_traits< Derived > | Traits |
Protected Member Functions | |
| void | pardisoRelease () |
| void | pardisoInit (int type) |
| void | manageErrorCode (Index error) const |
| Derived & | derived () |
| const Derived & | derived () const |
Protected Attributes | |
| SparseMatrixType | m_matrix |
| ComputationInfo | m_info |
| bool | m_analysisIsOk |
| bool | m_factorizationIsOk |
| StorageIndex | m_type |
| StorageIndex | m_msglvl |
| void * | m_pt [64] |
| ParameterType | m_iparm |
| IntColVectorType | m_perm |
| Index | m_size |
| bool | m_isInitialized |
|
protected |
| typedef Matrix<StorageIndex, MatrixType::RowsAtCompileTime, 1> Eigen::PardisoImpl< Derived >::IntColVectorType |
| typedef Matrix<StorageIndex, 1, MatrixType::ColsAtCompileTime> Eigen::PardisoImpl< Derived >::IntRowVectorType |
| typedef Traits::MatrixType Eigen::PardisoImpl< Derived >::MatrixType |
| typedef Array<StorageIndex,64,1,DontAlign> Eigen::PardisoImpl< Derived >::ParameterType |
| typedef Traits::RealScalar Eigen::PardisoImpl< Derived >::RealScalar |
| typedef Traits::Scalar Eigen::PardisoImpl< Derived >::Scalar |
| typedef SparseMatrix<Scalar,RowMajor,StorageIndex> Eigen::PardisoImpl< Derived >::SparseMatrixType |
| typedef Traits::StorageIndex Eigen::PardisoImpl< Derived >::StorageIndex |
|
protected |
| typedef Matrix<Scalar,Dynamic,1> Eigen::PardisoImpl< Derived >::VectorType |
| anonymous enum |
| Enumerator | |
|---|---|
| ScalarIsComplex | |
| ColsAtCompileTime | |
| MaxColsAtCompileTime | |
|
inline |
References eigen_assert, Eigen::PardisoImpl< Derived >::m_iparm, Eigen::PardisoImpl< Derived >::m_isInitialized, Eigen::PardisoImpl< Derived >::m_msglvl, and Eigen::PlainObjectBase< Derived >::setZero().
Here is the call graph for this function:
|
inline |
References Eigen::PardisoImpl< Derived >::pardisoRelease().
Here is the call graph for this function:| void Eigen::PardisoImpl< Derived >::_solve_impl | ( | const MatrixBase< BDerived > & | b, |
| MatrixBase< XDerived > & | x | ||
| ) | const |
References Eigen::PlainObjectBase< Derived >::data(), eigen_assert, error, Eigen::InvalidInput, Eigen::RowMajorBit, and Eigen::internal::pardiso_run_selector< IndexType >::run().
Here is the call graph for this function:| void Eigen::PardisoImpl< Derived >::_solve_impl | ( | const MatrixBase< Rhs > & | b, |
| MatrixBase< Dest > & | dest | ||
| ) | const |
|
inline |
| Derived & Eigen::PardisoImpl< Derived >::analyzePattern | ( | const MatrixType & | matrix | ) |
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_assert, error, and Eigen::internal::pardiso_run_selector< IndexType >::run().
Here is the call graph for this function:
|
inline |
References Eigen::PardisoImpl< Derived >::m_size.
| Derived & Eigen::PardisoImpl< Derived >::compute | ( | const MatrixType & | matrix | ) |
References eigen_assert, error, and Eigen::internal::pardiso_run_selector< IndexType >::run().
Here is the call graph for this function:
|
inlineprotected |
|
inlineprotected |
| Derived & Eigen::PardisoImpl< Derived >::factorize | ( | const MatrixType & | matrix | ) |
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.
References eigen_assert, error, and Eigen::internal::pardiso_run_selector< IndexType >::run().
Here is the call graph for this function:
|
inline |
Reports whether previous computation was successful.
Success if computation was succesful, NumericalIssue if the matrix appears to be negative. References eigen_assert, Eigen::PardisoImpl< Derived >::m_info, and Eigen::PardisoImpl< Derived >::m_isInitialized.
|
inlineprotected |
References error, Eigen::InvalidInput, Eigen::PardisoImpl< Derived >::m_info, Eigen::NumericalIssue, and Eigen::Success.
|
inlineprotected |
References Eigen::PardisoImpl< Derived >::m_iparm, Eigen::PardisoImpl< Derived >::m_pt, and Eigen::PardisoImpl< Derived >::m_type.
|
inline |
References Eigen::PardisoImpl< Derived >::m_iparm.
|
inlineprotected |
References Eigen::PlainObjectBase< Derived >::data(), Eigen::PardisoImpl< Derived >::m_iparm, Eigen::PardisoImpl< Derived >::m_isInitialized, Eigen::PardisoImpl< Derived >::m_msglvl, Eigen::PardisoImpl< Derived >::m_perm, Eigen::PardisoImpl< Derived >::m_pt, Eigen::PardisoImpl< Derived >::m_size, Eigen::PardisoImpl< Derived >::m_type, and Eigen::internal::pardiso_run_selector< IndexType >::run().
Referenced by Eigen::PardisoImpl< Derived >::~PardisoImpl().
Here is the call graph for this function:
Here is the caller graph for this function:
|
inline |
References Eigen::PardisoImpl< Derived >::m_size.
|
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 |
|
protected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
mutableprotected |
|
protected |
|
mutableprotected |
Referenced by Eigen::PardisoImpl< Derived >::pardisoRelease().
|
mutableprotected |
|
protected |
|
protected |