11 #ifndef EIGEN_XPRHELPER_H
12 #define EIGEN_XPRHELPER_H
17 #if (defined __GNUG__) && !((__GNUC__==4) && (__GNUC_MINOR__==3))
18 #define EIGEN_EMPTY_STRUCT_CTOR(X) \
19 EIGEN_STRONG_INLINE X() {} \
20 EIGEN_STRONG_INLINE X(const X& ) {}
22 #define EIGEN_EMPTY_STRUCT_CTOR(X)
27 typedef EIGEN_DEFAULT_DENSE_INDEX_TYPE DenseIndex;
32 class no_assignment_operator
35 no_assignment_operator& operator=(
const no_assignment_operator&);
39 template<
typename I1,
typename I2>
40 struct promote_index_type
42 typedef typename conditional<(sizeof(I1)<sizeof(I2)), I2, I1>::type type;
49 template<
typename T,
int Value>
class variable_if_dynamic
52 EIGEN_EMPTY_STRUCT_CTOR(variable_if_dynamic)
53 explicit variable_if_dynamic(T v) { EIGEN_ONLY_USED_FOR_DEBUG(v); assert(v == T(Value)); }
54 static T value() {
return T(Value); }
58 template<
typename T>
class variable_if_dynamic<T,
Dynamic>
61 variable_if_dynamic() { assert(
false); }
63 explicit variable_if_dynamic(T value) : m_value(value) {}
64 T value()
const {
return m_value; }
65 void setValue(T value) { m_value = value; }
70 template<
typename T,
int Value>
class variable_if_dynamicindex
73 EIGEN_EMPTY_STRUCT_CTOR(variable_if_dynamicindex)
74 explicit variable_if_dynamicindex(T v) { EIGEN_ONLY_USED_FOR_DEBUG(v); assert(v == T(Value)); }
75 static T value() {
return T(Value); }
79 template<
typename T>
class variable_if_dynamicindex<T,
DynamicIndex>
82 variable_if_dynamicindex() { assert(
false); }
84 explicit variable_if_dynamicindex(T value) : m_value(value) {}
85 T value()
const {
return m_value; }
86 void setValue(T value) { m_value = value; }
89 template<
typename T>
struct functor_traits
99 template<
typename T>
struct packet_traits;
101 template<
typename T>
struct unpacket_traits
107 template<
typename _Scalar,
int _Rows,
int _Cols,
111 : EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION ),
112 int _MaxRows = _Rows,
114 >
class make_proper_matrix_type
117 IsColVector = _Cols==1 && _Rows!=1,
118 IsRowVector = _Rows==1 && _Cols!=1,
124 typedef Matrix<_Scalar, _Rows, _Cols, Options, _MaxRows, _MaxCols> type;
127 template<
typename Scalar,
int Rows,
int Cols,
int Options,
int MaxRows,
int MaxCols>
128 class compute_matrix_flags
138 #if EIGEN_ALIGN_STATICALLY
139 ((!is_dynamic_size_storage) && (((MaxCols*MaxRows*
int(
sizeof(Scalar))) % 16) == 0))
147 is_dynamic_size_storage
154 packet_access_bit = packet_traits<Scalar>::Vectorizable && aligned_bit ?
PacketAccessBit : 0
161 template<
int _Rows,
int _Cols>
struct size_at_compile_time
170 template<typename T, typename StorageKind = typename traits<T>::StorageKind>
struct plain_matrix_type;
171 template<
typename T,
typename BaseClassType>
struct plain_matrix_type_dense;
172 template<
typename T>
struct plain_matrix_type<T,Dense>
174 typedef typename plain_matrix_type_dense<T,typename traits<T>::XprKind>::type type;
177 template<
typename T>
struct plain_matrix_type_dense<T,MatrixXpr>
179 typedef Matrix<typename traits<T>::Scalar,
180 traits<T>::RowsAtCompileTime,
181 traits<T>::ColsAtCompileTime,
183 traits<T>::MaxRowsAtCompileTime,
184 traits<T>::MaxColsAtCompileTime
188 template<
typename T>
struct plain_matrix_type_dense<T,ArrayXpr>
190 typedef Array<typename traits<T>::Scalar,
191 traits<T>::RowsAtCompileTime,
192 traits<T>::ColsAtCompileTime,
194 traits<T>::MaxRowsAtCompileTime,
195 traits<T>::MaxColsAtCompileTime
203 template<typename T, typename StorageKind = typename traits<T>::StorageKind>
struct eval;
205 template<
typename T>
struct eval<T,Dense>
207 typedef typename plain_matrix_type<T>::type type;
219 template<
typename _Scalar,
int _Rows,
int _Cols,
int _Options,
int _MaxRows,
int _MaxCols>
220 struct eval<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
222 typedef const Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type;
225 template<
typename _Scalar,
int _Rows,
int _Cols,
int _Options,
int _MaxRows,
int _MaxCols>
226 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
228 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type;
235 template<
typename T>
struct plain_matrix_type_column_major
237 enum { Rows = traits<T>::RowsAtCompileTime,
238 Cols = traits<T>::ColsAtCompileTime,
239 MaxRows = traits<T>::MaxRowsAtCompileTime,
240 MaxCols = traits<T>::MaxColsAtCompileTime
242 typedef Matrix<typename traits<T>::Scalar,
253 template<
typename T>
struct plain_matrix_type_row_major
255 enum { Rows = traits<T>::RowsAtCompileTime,
256 Cols = traits<T>::ColsAtCompileTime,
257 MaxRows = traits<T>::MaxRowsAtCompileTime,
258 MaxCols = traits<T>::MaxColsAtCompileTime
260 typedef Matrix<typename traits<T>::Scalar,
270 template<
typename T>
struct must_nest_by_value {
enum { ret =
false }; };
275 template <
typename T>
278 typedef typename conditional<
279 bool(traits<T>::Flags & NestByRefBit),
286 template<
typename T1,
typename T2>
287 struct transfer_constness
289 typedef typename conditional<
290 bool(internal::is_const<T1>::value),
291 typename internal::add_const_on_value_type<T2>::type,
316 template<typename T, int n=1, typename PlainObject = typename eval<T>::type>
struct nested
324 DynamicAsInteger = 10000,
325 ScalarReadCost = NumTraits<typename traits<T>::Scalar>::ReadCost,
326 ScalarReadCostAsInteger = ScalarReadCost ==
Dynamic ? int(DynamicAsInteger) : int(ScalarReadCost),
327 CoeffReadCost = traits<T>::CoeffReadCost,
328 CoeffReadCostAsInteger = CoeffReadCost ==
Dynamic ? int(DynamicAsInteger) : int(CoeffReadCost),
329 NAsInteger = n ==
Dynamic ? int(DynamicAsInteger) : n,
330 CostEvalAsInteger = (NAsInteger+1) * ScalarReadCostAsInteger + CoeffReadCostAsInteger,
331 CostNoEvalAsInteger = NAsInteger * CoeffReadCostAsInteger
334 typedef typename conditional<
336 int(CostEvalAsInteger) < int(CostNoEvalAsInteger)
339 typename ref_selector<T>::type
344 inline T* const_cast_ptr(
const T* ptr)
346 return const_cast<T*
>(ptr);
349 template<typename Derived, typename XprKind = typename traits<Derived>::XprKind>
350 struct dense_xpr_base
355 template<
typename Derived>
356 struct dense_xpr_base<Derived, MatrixXpr>
358 typedef MatrixBase<Derived> type;
361 template<
typename Derived>
362 struct dense_xpr_base<Derived, ArrayXpr>
364 typedef ArrayBase<Derived> type;
369 template<
typename Derived,
typename Scalar,
typename OtherScalar,
typename BaseType,
370 bool EnableIt = !is_same<Scalar,OtherScalar>::value >
371 struct special_scalar_op_base :
public BaseType
378 template<
typename Derived,
typename Scalar,
typename OtherScalar,
typename BaseType>
379 struct special_scalar_op_base<Derived,Scalar,OtherScalar,BaseType,true> :
public BaseType
381 const CwiseUnaryOp<scalar_multiple2_op<Scalar,OtherScalar>, Derived>
382 operator*(
const OtherScalar& scalar)
const
384 return CwiseUnaryOp<scalar_multiple2_op<Scalar,OtherScalar>, Derived>
385 (*
static_cast<const Derived*
>(
this), scalar_multiple2_op<Scalar,OtherScalar>(scalar));
388 inline friend const CwiseUnaryOp<scalar_multiple2_op<Scalar,OtherScalar>, Derived>
389 operator*(
const OtherScalar& scalar,
const Derived& matrix)
390 {
return static_cast<const special_scalar_op_base&
>(matrix).
operator*(scalar); }
393 template<
typename XprType,
typename CastType>
struct cast_return_type
395 typedef typename XprType::Scalar CurrentScalarType;
396 typedef typename remove_all<CastType>::type _CastType;
397 typedef typename _CastType::Scalar NewScalarType;
398 typedef typename conditional<is_same<CurrentScalarType,NewScalarType>::value,
399 const XprType&,CastType>::type type;
402 template <
typename A,
typename B>
struct promote_storage_type;
404 template <
typename A>
struct promote_storage_type<A,A>
412 template<
typename ExpressionType,
typename Scalar =
typename ExpressionType::Scalar>
413 struct plain_row_type
415 typedef Matrix<Scalar, 1, ExpressionType::ColsAtCompileTime,
416 ExpressionType::PlainObject::Options |
RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType;
417 typedef Array<Scalar, 1, ExpressionType::ColsAtCompileTime,
418 ExpressionType::PlainObject::Options |
RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType;
420 typedef typename conditional<
421 is_same< typename traits<ExpressionType>::XprKind, MatrixXpr >::value,
427 template<
typename ExpressionType,
typename Scalar =
typename ExpressionType::Scalar>
428 struct plain_col_type
430 typedef Matrix<Scalar, ExpressionType::RowsAtCompileTime, 1,
431 ExpressionType::PlainObject::Options & ~
RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType;
432 typedef Array<Scalar, ExpressionType::RowsAtCompileTime, 1,
433 ExpressionType::PlainObject::Options & ~
RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType;
435 typedef typename conditional<
436 is_same< typename traits<ExpressionType>::XprKind, MatrixXpr >::value,
442 template<
typename ExpressionType,
typename Scalar =
typename ExpressionType::Scalar>
443 struct plain_diag_type
445 enum { diag_size = EIGEN_SIZE_MIN_PREFER_DYNAMIC(ExpressionType::RowsAtCompileTime, ExpressionType::ColsAtCompileTime),
446 max_diag_size = EIGEN_SIZE_MIN_PREFER_FIXED(ExpressionType::MaxRowsAtCompileTime, ExpressionType::MaxColsAtCompileTime)
448 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType;
449 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
451 typedef typename conditional<
452 is_same< typename traits<ExpressionType>::XprKind, MatrixXpr >::value,
458 template<
typename ExpressionType>
461 enum { value = !bool(is_const<ExpressionType>::value) &&
462 bool(traits<ExpressionType>::Flags &
LvalueBit) };
469 #endif // EIGEN_XPRHELPER_H
Definition: Constants.h:270
const unsigned int EvalBeforeNestingBit
Definition: Constants.h:58
const int DynamicIndex
Definition: Constants.h:26
const internal::permut_matrix_product_retval< PermutationDerived, Derived, OnTheRight > operator*(const MatrixBase< Derived > &matrix, const PermutationBase< PermutationDerived > &permutation)
Definition: PermutationMatrix.h:539
const int Dynamic
Definition: Constants.h:21
Definition: Constants.h:264
const unsigned int PacketAccessBit
Definition: Constants.h:81
const unsigned int LinearAccessBit
Definition: Constants.h:117
const unsigned int LvalueBit
Definition: Constants.h:131
Definition: Constants.h:268
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53
const unsigned int DirectAccessBit
Definition: Constants.h:142
const unsigned int AlignedBit
Definition: Constants.h:147