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()
79 :
int(Flags)&RowMajorBit ? this->
cols()
84 : Base(0,RowsAtCompileTime==
Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==
Dynamic?0:ColsAtCompileTime),
86 m_stride(StrideType::OuterStrideAtCompileTime==
Dynamic?0:StrideType::OuterStrideAtCompileTime,
87 StrideType::InnerStrideAtCompileTime==
Dynamic?0:StrideType::InnerStrideAtCompileTime)
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);
158 const Index expr_inner_actual = resolveInnerStride(expr.innerStride());
159 const Index expr_outer_actual = resolveOuterStride(expr_inner_actual,
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)
184 || (resolveInnerStride(
Index(StrideType::InnerStrideAtCompileTime)) == inner_stride);
189 const bool outer_valid = (StrideType::OuterStrideAtCompileTime ==
Dynamic)
190 || (resolveOuterStride(
192 Index(StrideType::OuterStrideAtCompileTime),
193 rows,
cols, PlainObjectType::IsVectorAtCompileTime != 0,
200 ::new (static_cast<Base*>(
this)) Base(expr.data(),
rows,
cols);
201 ::new (&m_stride) StrideBase(
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 EIGEN_DEVICE_FUNC Ref(const DenseBase< Derived > &expr, typename internal::enable_if< bool(Traits::template match< Derived >::MatchAtCompileTime), Derived >::type *=0)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment_no_alias(Dst &dst, const Src &src, const Func &func)
bool match(const T &xpr, std::string ref, std::string str_xpr="")
Stride< StrideType::OuterStrideAtCompileTime, StrideType::InnerStrideAtCompileTime > StrideBase
EIGEN_DEVICE_FUNC RefBase()
internal::traits< Ref > Traits
internal::traits< Ref > Traits
internal::traits< Derived >::PlainObjectType PlainObjectType
Namespace containing all symbols from the Eigen library.
EIGEN_DEVICE_FUNC Ref(const DenseBase< Derived > &expr, typename internal::enable_if< bool(Traits::template match< Derived >::ScalarTypeMatch), Derived >::type *=0)
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
EIGEN_DEVICE_FUNC Ref(const RefBase< OtherRef > &other)
const unsigned int RowMajorBit
Base class for all dense matrices, vectors, and arrays.
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index resolveInnerStride(Index inner)
EIGEN_DEVICE_FUNC bool construct(Expression &expr)
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index resolveOuterStride(Index inner, Index outer, Index rows, Index cols, bool isVectorAtCompileTime, bool isRowMajor)
internal::conditional< MatchAtCompileTime, internal::true_type, internal::false_type >::type type
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
EIGEN_DEVICE_FUNC Ref(const Ref &other)
TPlainObjectType m_object
#define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived)
A matrix or vector expression mapping an existing expression.
const unsigned int NestByRefBit
EIGEN_CONSTEXPR Index size(const T &x)
#define EIGEN_DEVICE_FUNC
EIGEN_DEVICE_FUNC Ref(PlainObjectBase< Derived > &expr, typename internal::enable_if< bool(Traits::template match< Derived >::MatchAtCompileTime), Derived >::type *=0)
#define EIGEN_PREDICATE_SAME_MATRIX_SIZE(TYPE0, TYPE1)
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
EIGEN_DEVICE_FUNC void construct(const Expression &expr, internal::true_type)
Generic expression where a coefficient-wise unary operator is applied to an expression.
_PlainObjectType PlainObjectType
EIGEN_DEVICE_FUNC void construct(const Expression &expr, internal::false_type)
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index outerStride() const
#define EIGEN_UNUSED_VARIABLE(var)
internal::traits< Derived >::StrideType StrideType