Searched refs:analyzePattern (Results 1 - 10 of 10) sorted by relevance

/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DBasicPreconditioners.h55 DiagonalPreconditioner& analyzePattern(const MatType& ) function in class:Eigen::DiagonalPreconditioner
135 IdentityPreconditioner& analyzePattern(const MatrixType& ) { return *this; } function in class:Eigen::IdentityPreconditioner
H A DIterativeSolverBase.h62 * Currently, this function mostly call analyzePattern on the preconditioner. In the future
65 Derived& analyzePattern(const MatrixType& A) function in class:Eigen::IterativeSolverBase
67 m_preconditioner.analyzePattern(A);
85 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
H A DIncompleteLUT.h86 void analyzePattern(const MatrixType& amat);
99 analyzePattern(amat);
221 void IncompleteLUT<Scalar>::analyzePattern(const _MatrixType& amat) function in class:Eigen::IncompleteLUT
255 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h193 * \sa analyzePattern() factorize()
211 * \sa analyzePattern() factorize()
264 void analyzePattern(ColSpMatrix& mat);
340 analyzePattern(mat);
349 void PastixBase<Derived>::analyzePattern(ColSpMatrix& mat) function in class:Eigen::PastixBase
474 * \sa analyzePattern() factorize()
488 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLU
493 Base::analyzePattern(temp);
499 * \sa analyzePattern()
583 * \sa analyzePattern() factoriz
596 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLLT
677 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLDLT
[all...]
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h268 void analyzePattern(const MatrixType& a, bool doLDLT) function in class:Eigen::SimplicialCholeskyBase
408 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialLLT
410 Base::analyzePattern(a, false);
417 * \sa analyzePattern()
502 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialLDLT
504 Base::analyzePattern(a, true);
511 * \sa analyzePattern()
597 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialCholesky
599 Base::analyzePattern(a, m_LDLT);
606 * \sa analyzePattern()
[all...]
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h335 derived().analyzePattern(matrix);
371 void analyzePattern(const MatrixType& /*matrix*/) function in class:Eigen::SuperLUBase
513 void analyzePattern(const MatrixType& matrix) function in class:Eigen::SuperLU
517 Base::analyzePattern(matrix);
524 * \sa analyzePattern()
606 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
641 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or analyzePattern()/factorize()");
691 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for extracting factors, you must first call either compute() or analyzePattern()/factorize()");
777 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for computing the determinant, you must first call either compute() or analyzePattern()/factorize()");
849 void analyzePattern(cons function in class:Eigen::SuperILU
[all...]
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h207 analyzePattern(matrix);
246 void analyzePattern(const MatrixType& matrix) function in class:Eigen::CholmodBase
266 * \sa analyzePattern()
270 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h197 analyzePattern(matrix);
233 void analyzePattern(const MatrixType& matrix) function in class:Eigen::UmfPackLU
256 * \sa analyzePattern(), compute()
260 eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
/external/eigen/Eigen/src/PardisoSupport/
H A DPardisoSupport.h156 Derived& analyzePattern(const MatrixType& matrix);
162 * \sa analyzePattern()
330 Derived& PardisoImpl<Derived>::analyzePattern(const MatrixType& a)
355 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
/external/eigen/test/
H A Dsparse_solver.h43 solver.analyzePattern(A);

Completed in 158 milliseconds