Home
last modified time | relevance | path

Searched defs:EigenBase (Results 1 – 1 of 1) sorted by relevance

/external/eigen/Eigen/src/Core/
DEigenBase.h26 template<typename Derived> struct EigenBase struct
39 { return *static_cast<Derived*>(const_cast<EigenBase*>(this)); } in const_cast_derived() argument
40 inline const Derived& const_derived() const in const_derived()
44 inline Index rows() const { return derived().rows(); } in rows()
46 inline Index cols() const { return derived().cols(); } in cols()
49 inline Index size() const { return rows() * cols(); } in size()
52 template<typename Dest> inline void evalTo(Dest& dst) const in evalTo()
56 template<typename Dest> inline void addTo(Dest& dst) const in addTo()
66 template<typename Dest> inline void subTo(Dest& dst) const in subTo()
76 template<typename Dest> inline void applyThisOnTheRight(Dest& dst) const in applyThisOnTheRight()
[all …]