HomeSort by relevance Sort by last modified time
    Searched defs:UpLo (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 172 UpLo = _UpLo
203 && (UpLo==(Lower|Upper))
208 EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJUGATE_GRADIENT_IS_COMPATIBLE_WITH_UPPER_UNION_LOWER_MODE_ONLY);
209 typedef typename internal::conditional<UpLo==(Lower|Upper),
211 typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
IncompleteCholesky.h 66 enum { UpLo = _UpLo };
121 ord(mat.template selfadjointView<UpLo>(), pinv);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 215 enum {UpLo = _UpLo};
246 && (UpLo==(Lower|Upper))
251 EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJUGATE_GRADIENT_IS_COMPATIBLE_WITH_UPPER_UNION_LOWER_MODE_ONLY);
252 typedef typename internal::conditional<UpLo==(Lower|Upper),
254 typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 517 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
532 enum { UpLo = _UpLo };
586 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
601 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
616 enum { UpLo = _UpLo };
671 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 19 template<typename MatrixType, int UpLo> struct LDLT_Traits;
59 UpLo = _UpLo
70 typedef internal::LDLT_Traits<MatrixType,UpLo> Traits;
289 template<int UpLo> struct ldlt_inplace;
517 m_info = internal::ldlt_inplace<UpLo>::unblocked(m_matrix, m_transpositions, m_temporary, m_sign) ? Success : NumericalIssue;
550 internal::ldlt_inplace<UpLo>::update(m_matrix, m_transpositions, m_temporary, w, sigma);
649 template<typename MatrixType, unsigned int UpLo>
650 inline const LDLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
651 SelfAdjointView<MatrixType, UpLo>::ldlt() cons
    [all...]
LLT.h 16 template<typename MatrixType, int UpLo> struct LLT_Traits;
69 UpLo = _UpLo
72 typedef internal::LLT_Traits<MatrixType,UpLo> Traits;
226 template<typename Scalar, int UpLo> struct llt_inplace;
462 if(internal::llt_inplace<typename MatrixType::Scalar, UpLo>::rankUpdate(m_matrix,v,sigma)>=0)
525 template<typename MatrixType, unsigned int UpLo>
526 inline const LLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
527 SelfAdjointView<MatrixType, UpLo>::llt() const
529 return LLT<PlainObject,UpLo>(m_matrix)
    [all...]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 120 template<typename _Scalar, int _Options, typename _Index, unsigned int UpLo>
121 cholmod_sparse viewAsCholmod(const SparseSelfAdjointView<const SparseMatrix<_Scalar,_Options,_Index>, UpLo>& mat)
125 if(UpLo==Upper) res.stype = 1;
126 if(UpLo==Lower) res.stype = -1;
181 enum { UpLo = _UpLo };
252 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
270 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 63 enum { UpLo = internal::traits<Derived>::UpLo };
213 if(m_P.size()==0 && (UpLo&Upper)==Upper)
220 tmp.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
276 enum { UpLo = _UpLo };
290 enum { UpLo = _UpLo };
304 enum { UpLo = _UpLo };
334 enum { UpLo = _UpLo };
425 enum { UpLo = _UpLo };
507 enum { UpLo = _UpLo }
    [all...]

Completed in 790 milliseconds