Home | History | Annotate | Download | only in IterativeSolvers

Lines Matching full:template

1 // This file is part of Eigen, a lightweight C++ template library
29 template <typename Scalar, int _UpLo = Lower, typename _OrderingType = NaturalOrdering<int> >
73 template<typename MatrixType>
77 ord(mat.template selfadjointView<UpLo>(), m_perm);
81 template<typename MatrixType>
84 template<typename MatrixType>
91 template<typename Rhs, typename Dest>
100 x = m_L.template triangularView<UnitLower>().solve(x);
101 x = m_L.adjoint().template triangularView<Upper>().solve(x);
106 template<typename Rhs> inline const internal::solve_retval<IncompleteCholesky, Rhs>
126 template <typename IdxType, typename SclType>
130 template<typename Scalar, int _UpLo, typename OrderingType>
131 template<typename _MatrixType>
142 m_L.template selfadjointView<Lower>() = mat.template selfadjointView<_UpLo>().twistedBy(m_perm);
144 m_L.template selfadjointView<Lower>() = mat.template selfadjointView<_UpLo>();
239 template<typename Scalar, int _UpLo, typename OrderingType>
240 template <typename IdxType, typename SclType>
261 template<typename _Scalar, int _UpLo, typename OrderingType, typename Rhs>
268 template<typename Dest> void evalTo(Dest& dst) const