Searched defs:UpLo (Results 1 - 8 of 8) sorted by path

/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h19 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 enumerator in enum:Eigen::LDLT::__anon20487
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...]
H A DLLT.h16 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 enumerator in enum:Eigen::LLT::__anon20489
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> LLTTyp
[all...]
/external/eigen/Eigen/src/CholmodSupport/
H A DCholmodSupport.h107 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 }; enumerator in enum:Eigen::CholmodBase::__anon20490
260 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
278 cholmod_sparse A = viewAsCholmod(matrix.template selfadjointView<UpLo>());
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DConjugateGradient.h174 UpLo = _UpLo enumerator in enum:Eigen::ConjugateGradient::__anon20922
225 internal::conjugate_gradient(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,
/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h536 * \tparam UpLo The part of the matrix to use : Lower or Upper. The default is Lower as required by PaStiX
549 enum { UpLo = _UpLo }; enumerator in enum:Eigen::PastixLLT::__anon20937
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 }; enumerator in enum:Eigen::PastixLDLT::__anon20938
684 out.template selfadjointView<Lower>() = matrix.template selfadjointView<UpLo>();
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h41 enum { UpLo = internal::traits<Derived>::UpLo }; enumerator in enum:Eigen::SimplicialCholeskyBase::__anon20952
201 ap.template selfadjointView<Upper>() = a.template selfadjointView<UpLo>().twistedBy(m_P);
254 enum { UpLo = _UpLo }; enumerator in enum:Eigen::internal::traits::__anon20953
268 enum { UpLo = _UpLo }; enumerator in enum:Eigen::internal::traits::__anon20954
282 enum { UpLo = _UpLo }; enumerator in enum:Eigen::internal::traits::__anon20955
310 enum { UpLo = _UpLo }; enumerator in enum:Eigen::SimplicialLLT::__anon20956
399 enum { UpLo = _UpLo }; enumerator in enum:Eigen::SimplicialLDLT::__anon20957
481 enum { UpLo = _UpLo }; enumerator in enum:Eigen::SimplicialCholesky::__anon20958
489 typedef internal::traits<SimplicialLDLT<MatrixType,UpLo> > LDLTTrait
[all...]
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DIncompleteCholesky.h41 enum { UpLo = _UpLo }; enumerator in enum:Eigen::IncompleteCholesky::__anon21070
77 ord(mat.template selfadjointView<UpLo>(), m_perm);
H A DMINRES.h211 enum {UpLo = _UpLo}; enumerator in enum:Eigen::MINRES::__anon21071
262 internal::minres(mp_matrix->template selfadjointView<UpLo>(), b.col(j), xj,

Completed in 257 milliseconds