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

  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 160 UpLo = _UpLo
211 internal::conjugate_gradient(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 19 template<typename MatrixType, int UpLo> struct LDLT_Traits;
29 * \param UpLo the triangular part that will be used for the decompositon: Lower (default) or Upper.
55 UpLo = _UpLo
65 typedef internal::LDLT_Traits<MatrixType,UpLo> Traits;
244 template<int UpLo> struct ldlt_inplace;
439 internal::ldlt_inplace<UpLo>::unblocked(m_matrix, m_transpositions, m_temporary, &m_sign);
471 internal::ldlt_inplace<UpLo>::update(m_matrix, m_transpositions, m_temporary, w, sigma);
573 template<typename MatrixType, unsigned int UpLo>
574 inline const LDLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
    [all...]
LLT.h 16 template<typename MatrixType, int UpLo> struct LLT_Traits;
26 * \param UpLo the triangular part that will be used for the decompositon: Lower (default) or Upper.
67 UpLo = _UpLo
70 typedef internal::LLT_Traits<MatrixType,UpLo> Traits;
188 template<typename Scalar, int UpLo> struct llt_inplace;
409 if(internal::llt_inplace<typename MatrixType::Scalar, UpLo>::rankUpdate(m_matrix,v,sigma)>=0)
418 template<typename _MatrixType, int UpLo, typename Rhs>
419 struct solve_retval<LLT<_MatrixType, UpLo>, Rhs>
420 : solve_retval_base<LLT<_MatrixType, UpLo>, Rhs>
422 typedef LLT<_MatrixType,UpLo> LLTType
    [all...]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 102 template<typename _Scalar, int _Options, typename _Index, unsigned int UpLo>
103 cholmod_sparse viewAsCholmod(const SparseSelfAdjointView<SparseMatrix<_Scalar,_Options,_Index>, UpLo>& mat)
107 if(UpLo==Upper) res.stype = 1;
108 if(UpLo==Lower) res.stype = -1;
159 enum { UpLo = _UpLo };
253 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
271 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 557 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
570 enum { UpLo = _UpLo };
623 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
638 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
651 enum { UpLo = _UpLo };
705 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 80 enum { UpLo = internal::traits<Derived>::UpLo };
261 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
313 enum { UpLo = _UpLo };
326 enum { UpLo = _UpLo };
339 enum { UpLo = _UpLo };
366 enum { UpLo = _UpLo };
454 enum { UpLo = _UpLo };
536 enum { UpLo = _UpLo };
544 typedef internal::traits<SimplicialLDLT<MatrixType,UpLo> > LDLTTraits
    [all...]

Completed in 1908 milliseconds