17 template<
typename _PlainObjectType,
int _Options,
typename _Str
ideType>
18 struct traits<
Ref<_PlainObjectType, _Options, _StrideType> >
19 :
public traits<Map<_PlainObjectType, _Options, _StrideType> >
29 template<
typename Derived>
struct match {
32 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&
RowMajorBit)==(Derived::Flags&
RowMajorBit)),
33 InnerStrideMatch =
int(StrideType::InnerStrideAtCompileTime)==
int(
Dynamic)
34 ||
int(StrideType::InnerStrideAtCompileTime)==
int(Derived::InnerStrideAtCompileTime)
35 || (
int(StrideType::InnerStrideAtCompileTime)==0 &&
int(Derived::InnerStrideAtCompileTime)==1),
36 OuterStrideMatch = Derived::IsVectorAtCompileTime
37 ||
int(StrideType::OuterStrideAtCompileTime)==
int(
Dynamic) ||
int(StrideType::OuterStrideAtCompileTime)==
int(Derived::OuterStrideAtCompileTime),
46 MatchAtCompileTime = HasDirectAccess && StorageOrderMatch && InnerStrideMatch && OuterStrideMatch && AlignmentMatch && ScalarTypeMatch
53 template<
typename Derived>
71 return StrideType::InnerStrideAtCompileTime != 0 ?
m_stride.
inner() : 1;
76 return StrideType::OuterStrideAtCompileTime != 0 ?
m_stride.
outer()
77 : IsVectorAtCompileTime ? this->
size()
83 :
Base(0,RowsAtCompileTime==
Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==
Dynamic?0:ColsAtCompileTime),
95 template<
typename Expression>
100 if(PlainObjectType::RowsAtCompileTime==1)
103 ::new (
static_cast<Base*
>(
this))
Base(expr.data(), 1, expr.size());
105 else if(PlainObjectType::ColsAtCompileTime==1)
108 ::new (
static_cast<Base*
>(
this))
Base(expr.data(), expr.size(), 1);
111 ::new (
static_cast<Base*
>(
this))
Base(expr.data(), expr.rows(), expr.cols());
113 if(Expression::IsVectorAtCompileTime && (!PlainObjectType::IsVectorAtCompileTime) && ((Expression::Flags&
RowMajorBit)!=(PlainObjectType::Flags&
RowMajorBit)))
114 ::new (&
m_stride)
StrideBase(expr.innerStride(), StrideType::InnerStrideAtCompileTime==0?0:1);
116 ::new (&
m_stride)
StrideBase(StrideType::OuterStrideAtCompileTime==0?0:expr.outerStride(),
117 StrideType::InnerStrideAtCompileTime==0?0:expr.innerStride());
192 template<
typename PlainObjectType,
int Options,
typename Str
ideType>
class Ref
193 :
public RefBase<Ref<PlainObjectType, Options, StrideType> >
197 template<
typename Derived>
199 typename internal::enable_if<
bool(Traits::template match<Derived>::MatchAtCompileTime),Derived>::type* = 0);
206 #ifndef EIGEN_PARSED_BY_DOXYGEN
207 template<
typename Derived>
209 typename internal::enable_if<
bool(Traits::template match<Derived>::MatchAtCompileTime),Derived>::type* = 0)
211 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
214 template<
typename Derived>
216 typename internal::enable_if<
bool(Traits::template match<Derived>::MatchAtCompileTime),Derived>::type* = 0)
219 template<
typename Derived>
224 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
225 EIGEN_STATIC_ASSERT(!Derived::IsPlainObjectBase,THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY);
234 template<
typename TPlainObjectType,
int Options,
typename Str
ideType>
class Ref<const TPlainObjectType, Options,
StrideType>
235 :
public RefBase<Ref<const TPlainObjectType, Options, StrideType> >
243 template<
typename Derived>
245 typename internal::enable_if<
bool(Traits::template match<Derived>::ScalarTypeMatch),Derived>::type* = 0)
250 construct(expr.derived(),
typename Traits::template match<Derived>::type());
253 EIGEN_DEVICE_FUNC
inline Ref(
const Ref& other) :
Base(other) {
257 template<
typename OtherRef>
259 construct(other.derived(),
typename Traits::template match<OtherRef>::type());
264 template<
typename Expression>
270 template<
typename Expression>
283 #endif // EIGEN_REF_H