Lines Matching refs:Decomposition
15 template<typename Decomposition, typename RhsType, typename GuessType> class SolveWithGuess;
32 template<typename Decomposition, typename RhsType, typename GuessType>
33 struct traits<SolveWithGuess<Decomposition, RhsType, GuessType> >
34 : traits<Solve<Decomposition,RhsType> >
40 template<typename Decomposition, typename RhsType, typename GuessType>
41 class SolveWithGuess : public internal::generic_xpr_base<SolveWithGuess<Decomposition,RhsType,Guess…
46 …typedef typename internal::generic_xpr_base<SolveWithGuess<Decomposition,RhsType,GuessType>, Matri…
49 SolveWithGuess(const Decomposition &dec, const RhsType &rhs, const GuessType &guess)
56 EIGEN_DEVICE_FUNC const Decomposition& dec() const { return m_dec; }
61 const Decomposition &m_dec;
73 template<typename Decomposition, typename RhsType, typename GuessType>
74 struct evaluator<SolveWithGuess<Decomposition,RhsType, GuessType> >
75 : public evaluator<typename SolveWithGuess<Decomposition,RhsType,GuessType>::PlainObject>
77 typedef SolveWithGuess<Decomposition,RhsType,GuessType> SolveType;