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 {
31 IsVectorAtCompileTime = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime,
34 InnerStrideMatch =
int(StrideType::InnerStrideAtCompileTime)==
int(
Dynamic)
35 ||
int(StrideType::InnerStrideAtCompileTime)==
int(Derived::InnerStrideAtCompileTime)
36 || (
int(StrideType::InnerStrideAtCompileTime)==0 &&
int(Derived::InnerStrideAtCompileTime)==1),
37 OuterStrideMatch = IsVectorAtCompileTime
38 ||
int(StrideType::OuterStrideAtCompileTime)==
int(
Dynamic) ||
int(StrideType::OuterStrideAtCompileTime)==
int(Derived::OuterStrideAtCompileTime),
47 MatchAtCompileTime = HasDirectAccess && StorageOrderMatch && InnerStrideMatch && OuterStrideMatch && AlignmentMatch && ScalarTypeMatch
54 template<
typename Derived>
72 return StrideType::InnerStrideAtCompileTime != 0 ?
m_stride.
inner() : 1;
77 return StrideType::OuterStrideAtCompileTime != 0 ?
m_stride.
outer()
78 : IsVectorAtCompileTime ? this->
size()
84 : Base(0,RowsAtCompileTime==
Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==
Dynamic?0:ColsAtCompileTime),
98 return inner == 0 ? 1 : inner;
103 return outer == 0 ? isVectorAtCompileTime ? inner *
rows *
cols : isRowMajor ? inner *
cols : inner *
rows : outer;
108 template<
typename Expression>
116 || ( PlainObjectType::IsVectorAtCompileTime
119 ||
int(PlainObjectType::RowsAtCompileTime)==
int(Expression::ColsAtCompileTime))
122 ||
int(PlainObjectType::ColsAtCompileTime)==
int(Expression::RowsAtCompileTime)))),
123 YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES
129 if(PlainObjectType::RowsAtCompileTime==1)
135 else if(PlainObjectType::ColsAtCompileTime==1)
143 (PlainObjectType::RowsAtCompileTime ==
Dynamic) || (PlainObjectType::RowsAtCompileTime ==
rows));
145 (PlainObjectType::ColsAtCompileTime ==
Dynamic) || (PlainObjectType::ColsAtCompileTime ==
cols));
149 const bool transpose = PlainObjectType::IsVectorAtCompileTime && (
rows != expr.rows());
151 const bool row_major = ((PlainObjectType::Flags)&
RowMajorBit) != 0;
152 const bool expr_row_major = (Expression::Flags&
RowMajorBit) != 0;
153 const bool storage_differs = (row_major != expr_row_major);
155 const bool swap_stride = (transpose != storage_differs);
163 Expression::IsVectorAtCompileTime != 0,
168 const bool row_vector = (
rows == 1);
169 const bool col_vector = (
cols == 1);
170 const Index inner_stride =
171 ( (!row_major && row_vector) || (row_major && col_vector) ) ?
172 ( StrideType::InnerStrideAtCompileTime > 0 ?
Index(StrideType::InnerStrideAtCompileTime) : 1)
173 : swap_stride ? expr_outer_actual : expr_inner_actual;
177 const Index outer_stride =
178 ( (!row_major && col_vector) || (row_major && row_vector) ) ?
179 ( StrideType::OuterStrideAtCompileTime > 0 ?
Index(StrideType::OuterStrideAtCompileTime) :
rows *
cols * inner_stride)
180 : swap_stride ? expr_inner_actual : expr_outer_actual;
183 const bool inner_valid = (StrideType::InnerStrideAtCompileTime ==
Dynamic)
189 const bool outer_valid = (StrideType::OuterStrideAtCompileTime ==
Dynamic)
192 Index(StrideType::OuterStrideAtCompileTime),
193 rows,
cols, PlainObjectType::IsVectorAtCompileTime != 0,
202 (StrideType::OuterStrideAtCompileTime == 0) ? 0 : outer_stride,
203 (StrideType::InnerStrideAtCompileTime == 0) ? 0 : inner_stride );
281 template<
typename PlainObjectType,
int Options,
typename Str
ideType>
class Ref
282 :
public RefBase<Ref<PlainObjectType, Options, StrideType> >
286 template<
typename Derived>
295 #ifndef EIGEN_PARSED_BY_DOXYGEN
296 template<
typename Derived>
300 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
306 template<
typename Derived>
311 template<
typename Derived>
316 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
317 EIGEN_STATIC_ASSERT(!Derived::IsPlainObjectBase,THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY);
329 template<
typename TPlainObjectType,
int Options,
typename Str
ideType>
class Ref<const TPlainObjectType, Options,
StrideType>
330 :
public RefBase<Ref<const TPlainObjectType, Options, StrideType> >
338 template<
typename Derived>
352 template<
typename OtherRef>
359 template<
typename Expression>
368 template<
typename Expression>
381 #endif // EIGEN_REF_H