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

  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 211 enum {UpLo = _UpLo};
262 internal::minres(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,
IncompleteCholesky.h 41 enum { UpLo = _UpLo };
77 ord(mat.template selfadjointView<UpLo>(), m_perm);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 174 UpLo = _UpLo
225 internal::conjugate_gradient(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 536 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
549 enum { UpLo = _UpLo };
602 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
617 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
630 enum { UpLo = _UpLo };
684 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 19 template<typename MatrixType, int UpLo> struct LDLT_Traits;
32 * \param UpLo the triangular part that will be used for the decompositon: Lower (default) or Upper.
58 UpLo = _UpLo
68 typedef internal::LDLT_Traits<MatrixType,UpLo> Traits;
254 template<int UpLo> struct ldlt_inplace;
446 internal::ldlt_inplace<UpLo>::unblocked(m_matrix, m_transpositions, m_temporary, m_sign);
478 internal::ldlt_inplace<UpLo>::update(m_matrix, m_transpositions, m_temporary, w, sigma);
585 template<typename MatrixType, unsigned int UpLo>
586 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;
411 if(internal::llt_inplace<typename MatrixType::Scalar, UpLo>::rankUpdate(m_matrix,v,sigma)>=0)
420 template<typename _MatrixType, int UpLo, typename Rhs>
421 struct solve_retval<LLT<_MatrixType, UpLo>, Rhs>
422 : solve_retval_base<LLT<_MatrixType, UpLo>, Rhs>
424 typedef LLT<_MatrixType,UpLo> LLTType
    [all...]
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 107 template<typename _Scalar, int _Options, typename _Index, unsigned int UpLo>
108 cholmod_sparse viewAsCholmod(const SparseSelfAdjointView<SparseMatrix<_Scalar,_Options,_Index>, UpLo>& mat)
112 if(UpLo==Upper) res.stype = 1;
113 if(UpLo==Lower) res.stype = -1;
164 enum { UpLo = _UpLo };
260 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
278 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 41 enum { UpLo = internal::traits<Derived>::UpLo };
201 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
254 enum { UpLo = _UpLo };
268 enum { UpLo = _UpLo };
282 enum { UpLo = _UpLo };
310 enum { UpLo = _UpLo };
399 enum { UpLo = _UpLo };
481 enum { UpLo = _UpLo };
489 typedef internal::traits<SimplicialLDLT<MatrixType,UpLo> > LDLTTraits
    [all...]

Completed in 1799 milliseconds