Searched defs:analyzePattern (Results 1 - 11 of 11) 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.h138 void analyzePattern(const MatrixType& amat);
151 analyzePattern(amat);
223 void IncompleteLUT<Scalar>::analyzePattern(const _MatrixType& amat) function in class:Eigen::IncompleteLUT
257 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIncompleteCholesky.h74 void analyzePattern(const MatrixType& mat) function in class:Eigen::IncompleteCholesky
87 analyzePattern(matrix);
136 eigen_assert(m_analysisIsOk && "analyzePattern() should be called first");
140 // Apply the fill-reducing permutation computed in analyzePattern()
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h214 analyzePattern(matrix);
253 void analyzePattern(const MatrixType& matrix) function in class:Eigen::CholmodBase
273 * \sa analyzePattern()
277 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h172 * \sa analyzePattern() factorize()
190 * \sa analyzePattern() factorize()
243 void analyzePattern(ColSpMatrix& mat);
319 analyzePattern(mat);
328 void PastixBase<Derived>::analyzePattern(ColSpMatrix& mat) function in class:Eigen::PastixBase
453 * \sa analyzePattern() factorize()
467 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLU
472 Base::analyzePattern(temp);
478 * \sa analyzePattern()
562 * \sa analyzePattern() factoriz
575 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLLT
656 void analyzePattern(const MatrixType& matrix) function in class:Eigen::PastixLDLT
[all...]
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h208 void analyzePattern(const MatrixType& a, bool doLDLT) function in class:Eigen::SimplicialCholeskyBase
352 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialLLT
354 Base::analyzePattern(a, false);
361 * \sa analyzePattern()
447 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialLDLT
449 Base::analyzePattern(a, true);
456 * \sa analyzePattern()
542 void analyzePattern(const MatrixType& a) function in class:Eigen::SimplicialCholesky
544 Base::analyzePattern(a, m_LDLT);
551 * \sa analyzePattern()
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h50 * solver.analyzePattern(A);
104 void analyzePattern (const MatrixType& matrix);
115 analyzePattern(matrix);
371 void SparseLU<MatrixType, OrderingType>::analyzePattern(const MatrixType& mat) function in class:Eigen::SparseLU
457 eigen_assert(m_analysisIsOk && "analyzePattern() should be called first");
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h96 * \sa analyzePattern(), factorize()
100 analyzePattern(mat);
103 void analyzePattern(const MatrixType& mat);
281 void SparseQR<MatrixType,OrderingType>::analyzePattern(const MatrixType& mat) function in class:Eigen::SparseQR
313 * The function SparseQR::analyzePattern(const MatrixType&) must have been called beforehand with
324 eigen_assert(m_analysisIsok && "analyzePattern() should be called before this step");
/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/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()");
642 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or analyzePattern()/factorize()");
692 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for extracting factors, you must first call either compute() or analyzePattern()/factorize()");
778 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()");
850 void analyzePattern(cons function in class:Eigen::SuperILU
[all...]

Completed in 130 milliseconds