13#ifndef EIGEN_COREEVALUATORS_H
14#define EIGEN_COREEVALUATORS_H
22template<
typename StorageKind>
69 static const int AssumeAliasing = 0;
99template<
typename ExpressionType>
117template<
typename Derived>
122 typedef typename PlainObjectType::Scalar Scalar;
123 typedef typename PlainObjectType::CoeffReturnType CoeffReturnType;
126 IsRowMajor = PlainObjectType::IsRowMajor,
127 IsVectorAtCompileTime = PlainObjectType::IsVectorAtCompileTime,
128 RowsAtCompileTime = PlainObjectType::RowsAtCompileTime,
129 ColsAtCompileTime = PlainObjectType::ColsAtCompileTime,
138 m_outerStride(IsVectorAtCompileTime ? 0
139 : int(IsRowMajor) ? ColsAtCompileTime
142 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
146 : m_data(m.data()), m_outerStride(IsVectorAtCompileTime ? 0 : m.outerStride())
148 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
154 return m_data[row * m_outerStride.value() + col];
156 return m_data[row + col * m_outerStride.value()];
161 return m_data[index];
167 return const_cast<Scalar*
>(m_data)[row * m_outerStride.value() + col];
169 return const_cast<Scalar*
>(m_data)[row + col * m_outerStride.value()];
174 return const_cast<Scalar*
>(m_data)[index];
177 template<
int LoadMode,
typename PacketType>
178 PacketType packet(Index row, Index col)
const
186 template<
int LoadMode,
typename PacketType>
187 PacketType packet(Index index)
const
192 template<
int StoreMode,
typename PacketType>
193 void writePacket(Index row, Index col,
const PacketType& x)
197 (
const_cast<Scalar*
>(m_data) + row * m_outerStride.value() + col, x);
200 (
const_cast<Scalar*
>(m_data) + row + col * m_outerStride.value(), x);
203 template<
int StoreMode,
typename PacketType>
204 void writePacket(Index index,
const PacketType& x)
210 const Scalar *m_data;
214 : int(IsRowMajor) ? ColsAtCompileTime
215 : RowsAtCompileTime> m_outerStride;
218template<
typename Scalar,
int Rows,
int Cols,
int Options,
int MaxRows,
int MaxCols>
220 :
evaluator<PlainObjectBase<Matrix<Scalar, Rows, Cols, Options, MaxRows, MaxCols> > >
231template<
typename Scalar,
int Rows,
int Cols,
int Options,
int MaxRows,
int MaxCols>
233 :
evaluator<PlainObjectBase<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> > >
246template<
typename ArgType>
260 typedef typename XprType::Scalar Scalar;
261 typedef typename XprType::CoeffReturnType CoeffReturnType;
265 return m_argImpl.coeff(col, row);
270 return m_argImpl.coeff(index);
275 return m_argImpl.coeffRef(col, row);
280 return m_argImpl.coeffRef(index);
283 template<
int LoadMode,
typename PacketType>
284 PacketType packet(Index row, Index col)
const
289 template<
int LoadMode,
typename PacketType>
290 PacketType packet(Index index)
const
295 template<
int StoreMode,
typename PacketType>
296 void writePacket(Index row, Index col,
const PacketType& x)
301 template<
int StoreMode,
typename PacketType>
302 void writePacket(Index index,
const PacketType& x)
315template<
typename NullaryOp,
typename PlainObjectType>
320 typedef typename internal::remove_all<PlainObjectType>::type PlainObjectTypeCleaned;
330 Alignment = AlignedMax
334 : m_functor(n.functor())
336 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
339 typedef typename XprType::CoeffReturnType CoeffReturnType;
343 return m_functor(row, col);
348 return m_functor(index);
351 template<
int LoadMode,
typename PacketType>
352 PacketType packet(Index row, Index col)
const
357 template<
int LoadMode,
typename PacketType>
358 PacketType packet(Index index)
const
369template<
typename UnaryOp,
typename ArgType>
384 : m_functor(op.functor()),
385 m_argImpl(op.nestedExpression())
388 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
391 typedef typename XprType::CoeffReturnType CoeffReturnType;
395 return m_functor(m_argImpl.coeff(row, col));
400 return m_functor(m_argImpl.coeff(index));
403 template<
int LoadMode,
typename PacketType>
404 PacketType packet(Index row, Index col)
const
409 template<
int LoadMode,
typename PacketType>
410 PacketType packet(Index index)
const
423template<
typename BinaryOp,
typename Lhs,
typename Rhs>
433template<
typename BinaryOp,
typename Lhs,
typename Rhs>
446 Flags0 = (
int(LhsFlags) | int(RhsFlags)) & (
448 | (
int(LhsFlags) &
int(RhsFlags) &
454 Flags = (Flags0 & ~RowMajorBit) | (LhsFlags &
RowMajorBit),
459 : m_functor(
xpr.functor()),
460 m_lhsImpl(
xpr.lhs()),
464 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
467 typedef typename XprType::CoeffReturnType CoeffReturnType;
471 return m_functor(m_lhsImpl.coeff(row, col), m_rhsImpl.coeff(row, col));
476 return m_functor(m_lhsImpl.coeff(index), m_rhsImpl.coeff(index));
479 template<
int LoadMode,
typename PacketType>
480 PacketType packet(Index row, Index col)
const
486 template<
int LoadMode,
typename PacketType>
487 PacketType packet(Index index)
const
494 const BinaryOp m_functor;
501template<
typename UnaryOp,
typename ArgType>
516 : m_unaryOp(op.functor()),
517 m_argImpl(op.nestedExpression())
520 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
523 typedef typename XprType::Scalar Scalar;
524 typedef typename XprType::CoeffReturnType CoeffReturnType;
528 return m_unaryOp(m_argImpl.coeff(row, col));
533 return m_unaryOp(m_argImpl.coeff(index));
538 return m_unaryOp(m_argImpl.coeffRef(row, col));
543 return m_unaryOp(m_argImpl.coeffRef(index));
555template<
typename Derived,
typename PlainObjectType>
558template<
typename Derived,
typename PlainObjectType>
561 typedef Derived XprType;
562 typedef typename XprType::PointerType PointerType;
563 typedef typename XprType::Scalar Scalar;
564 typedef typename XprType::CoeffReturnType CoeffReturnType;
567 IsRowMajor = XprType::RowsAtCompileTime,
568 ColsAtCompileTime = XprType::ColsAtCompileTime,
573 : m_data(
const_cast<PointerType
>(map.data())),
577 PACKET_ACCESS_REQUIRES_TO_HAVE_INNER_STRIDE_FIXED_TO_1);
578 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
583 return m_data[col * m_xpr.colStride() + row * m_xpr.rowStride()];
588 return m_data[index * m_xpr.innerStride()];
593 return m_data[col * m_xpr.colStride() + row * m_xpr.rowStride()];
598 return m_data[index * m_xpr.innerStride()];
601 template<
int LoadMode,
typename PacketType>
602 PacketType packet(Index row, Index col)
const
604 PointerType ptr = m_data + row * m_xpr.rowStride() + col * m_xpr.colStride();
605 return internal::ploadt<PacketType, LoadMode>(ptr);
608 template<
int LoadMode,
typename PacketType>
609 PacketType packet(Index index)
const
611 return internal::ploadt<PacketType, LoadMode>(m_data + index * m_xpr.innerStride());
614 template<
int StoreMode,
typename PacketType>
615 void writePacket(Index row, Index col,
const PacketType& x)
617 PointerType ptr = m_data + row * m_xpr.rowStride() + col * m_xpr.colStride();
618 return internal::pstoret<Scalar, PacketType, StoreMode>(ptr, x);
621 template<
int StoreMode,
typename PacketType>
622 void writePacket(Index index,
const PacketType& x)
624 internal::pstoret<Scalar, PacketType, StoreMode>(m_data + index * m_xpr.innerStride(), x);
629 const XprType& m_xpr;
632template<
typename PlainObjectType,
int MapOptions,
typename Str
ideType>
634 :
public mapbase_evaluator<Map<PlainObjectType, MapOptions, StrideType>, PlainObjectType>
637 typedef typename XprType::Scalar Scalar;
639 typedef typename packet_traits<Scalar>::type PacketScalar;
642 InnerStrideAtCompileTime = StrideType::InnerStrideAtCompileTime == 0
643 ? int(PlainObjectType::InnerStrideAtCompileTime)
644 : int(StrideType::InnerStrideAtCompileTime),
645 OuterStrideAtCompileTime = StrideType::OuterStrideAtCompileTime == 0
646 ? int(PlainObjectType::OuterStrideAtCompileTime)
647 : int(StrideType::OuterStrideAtCompileTime),
648 HasNoInnerStride = InnerStrideAtCompileTime == 1,
649 HasNoOuterStride = StrideType::OuterStrideAtCompileTime == 0,
650 HasNoStride = HasNoInnerStride && HasNoOuterStride,
651 IsDynamicSize = PlainObjectType::SizeAtCompileTime==Dynamic,
653 PacketAccessMask = bool(HasNoInnerStride) ? ~int(0) : ~int(
PacketAccessBit),
654 LinearAccessMask = bool(HasNoStride) || bool(PlainObjectType::IsVectorAtCompileTime) ? ~int(0) : ~int(
LinearAccessBit),
667template<
typename PlainObjectType,
int RefOptions,
typename Str
ideType>
669 :
public mapbase_evaluator<Ref<PlainObjectType, RefOptions, StrideType>, PlainObjectType>
688template<
typename ArgType,
int BlockRows,
int BlockCols,
bool InnerPanel>
693 typedef typename XprType::Scalar Scalar;
695 typedef typename packet_traits<Scalar>::type PacketScalar;
706 IsRowMajor = (MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1) ? 1
707 : (MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1) ? 0
709 HasSameStorageOrderAsArgType = (IsRowMajor == ArgTypeIsRowMajor),
710 InnerSize = IsRowMajor ?
int(ColsAtCompileTime) : int(RowsAtCompileTime),
711 InnerStrideAtCompileTime = HasSameStorageOrderAsArgType
714 OuterStrideAtCompileTime = HasSameStorageOrderAsArgType
718 && (InnerStrideAtCompileTime == 1)
725 MaskPacketAccessBit),
726 Flags = Flags0 | FlagsLinearAccessBit | FlagsRowMajorBit,
729 Alignment0 = (
InnerPanel && (OuterStrideAtCompileTime!=Dynamic) && (((OuterStrideAtCompileTime *
int(
sizeof(Scalar))) %
int(PacketAlignment)) == 0)) ?
int(PacketAlignment) : 0,
735 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
740template<
typename ArgType,
int BlockRows,
int BlockCols,
bool InnerPanel>
751template<
typename ArgType,
int BlockRows,
int BlockCols,
bool InnerPanel>
753 :
evaluator_base<Block<ArgType, BlockRows, BlockCols, InnerPanel> >
758 : m_argImpl(block.nestedExpression()),
759 m_startRow(block.startRow()),
760 m_startCol(block.startCol())
763 typedef typename XprType::Scalar Scalar;
764 typedef typename XprType::CoeffReturnType CoeffReturnType;
767 RowsAtCompileTime = XprType::RowsAtCompileTime
772 return m_argImpl.coeff(m_startRow.value() + row, m_startCol.value() + col);
777 return coeff(RowsAtCompileTime == 1 ? 0 : index, RowsAtCompileTime == 1 ? index : 0);
782 return m_argImpl.coeffRef(m_startRow.value() + row, m_startCol.value() + col);
787 return coeffRef(RowsAtCompileTime == 1 ? 0 : index, RowsAtCompileTime == 1 ? index : 0);
790 template<
int LoadMode,
typename PacketType>
791 PacketType packet(Index row, Index col)
const
796 template<
int LoadMode,
typename PacketType>
797 PacketType packet(Index index)
const
800 RowsAtCompileTime == 1 ? index : 0);
803 template<
int StoreMode,
typename PacketType>
804 void writePacket(Index row, Index col,
const PacketType& x)
809 template<
int StoreMode,
typename PacketType>
810 void writePacket(Index index,
const PacketType& x)
813 RowsAtCompileTime == 1 ? index : 0,
826template<
typename ArgType,
int BlockRows,
int BlockCols,
bool InnerPanel>
829 typename Block<ArgType, BlockRows, BlockCols, InnerPanel>::PlainObject>
832 typedef typename XprType::Scalar Scalar;
847template<
typename ConditionMatrixType,
typename ThenMatrixType,
typename ElseMatrixType>
849 :
evaluator_base<Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >
863 : m_conditionImpl(select.conditionMatrix()),
864 m_thenImpl(select.thenMatrix()),
865 m_elseImpl(select.elseMatrix())
867 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
870 typedef typename XprType::CoeffReturnType CoeffReturnType;
874 if (m_conditionImpl.coeff(row, col))
875 return m_thenImpl.coeff(row, col);
877 return m_elseImpl.coeff(row, col);
882 if (m_conditionImpl.coeff(index))
883 return m_thenImpl.coeff(index);
885 return m_elseImpl.coeff(index);
897template<
typename ArgType,
int RowFactor,
int ColFactor>
902 typedef typename XprType::CoeffReturnType CoeffReturnType;
907 typedef typename internal::remove_all<ArgTypeNested>::type ArgTypeNestedCleaned;
911 LinearAccessMask = XprType::IsVectorAtCompileTime ?
LinearAccessBit : 0,
918 : m_arg(replicate.nestedExpression()),
920 m_rows(replicate.nestedExpression().rows()),
921 m_cols(replicate.nestedExpression().cols())
929 : row % m_rows.value();
932 : col % m_cols.value();
941 ? (
ColFactor==1 ? index : index%m_cols.value())
942 : (
RowFactor==1 ? index : index%m_rows.value());
947 template<
int LoadMode,
typename PacketType>
948 PacketType packet(Index row, Index col)
const
952 : row % m_rows.value();
955 : col % m_cols.value();
960 template<
int LoadMode,
typename PacketType>
961 PacketType packet(Index index)
const
964 ? (
ColFactor==1 ? index : index%m_cols.value())
965 : (
RowFactor==1 ? index : index%m_rows.value());
980template<
typename ArgType,
typename MemberOp,
int Direction>
986 typedef typename internal::remove_all<ArgTypeNested>::type ArgTypeNestedCleaned;
987 typedef typename ArgType::Scalar InputScalar;
988 typedef typename XprType::Scalar Scalar;
990 TraversalSize = Direction==int(
Vertical) ? int(ArgType::RowsAtCompileTime) : int(ArgType::ColsAtCompileTime)
992 typedef typename MemberOp::template Cost<InputScalar,int(TraversalSize)> CostOpType;
994 CoeffReadCost = TraversalSize==Dynamic ? HugeCost
1003 : m_arg(
xpr.nestedExpression()), m_functor(
xpr.functor())
1005 EIGEN_INTERNAL_CHECK_COST_VALUE(TraversalSize==Dynamic ? HugeCost : int(CostOpType::value));
1006 EIGEN_INTERNAL_CHECK_COST_VALUE(CoeffReadCost);
1009 typedef typename XprType::CoeffReturnType CoeffReturnType;
1014 return m_functor(m_arg.col(
j));
1016 return m_functor(m_arg.row(i));
1022 return m_functor(m_arg.col(index));
1024 return m_functor(m_arg.row(index));
1038template<
typename XprType>
1042 typedef typename remove_all<typename XprType::NestedExpressionType>::type ArgType;
1051 typedef typename ArgType::Scalar Scalar;
1052 typedef typename ArgType::CoeffReturnType CoeffReturnType;
1056 return m_argImpl.coeff(row, col);
1061 return m_argImpl.coeff(index);
1066 return m_argImpl.coeffRef(row, col);
1071 return m_argImpl.coeffRef(index);
1074 template<
int LoadMode,
typename PacketType>
1075 PacketType packet(Index row, Index col)
const
1080 template<
int LoadMode,
typename PacketType>
1081 PacketType packet(Index index)
const
1086 template<
int StoreMode,
typename PacketType>
1087 void writePacket(Index row, Index col,
const PacketType& x)
1092 template<
int StoreMode,
typename PacketType>
1093 void writePacket(Index index,
const PacketType& x)
1102template<
typename TArgType>
1113template<
typename TArgType>
1130template<
typename ArgType,
int Direction>
1135 typedef typename XprType::Scalar Scalar;
1136 typedef typename XprType::CoeffReturnType CoeffReturnType;
1139 IsRowMajor = XprType::IsRowMajor,
1140 IsColMajor = !IsRowMajor,
1144 || ((Direction ==
Vertical) && IsColMajor)
1145 || ((Direction ==
Horizontal) && IsRowMajor),
1153 || ((ReverseRow && XprType::ColsAtCompileTime==1) || (ReverseCol && XprType::RowsAtCompileTime==1))
1156 Flags = int(Flags0) & (HereditaryBits |
PacketAccessBit | LinearAccess),
1162 : m_argImpl(reverse.nestedExpression()),
1163 m_rows(ReverseRow ? reverse.nestedExpression().rows() : 1),
1164 m_cols(ReverseCol ? reverse.nestedExpression().cols() : 1)
1169 return m_argImpl.coeff(ReverseRow ? m_rows.value() - row - 1 : row,
1170 ReverseCol ? m_cols.value() - col - 1 : col);
1175 return m_argImpl.coeff(m_rows.value() * m_cols.value() - index - 1);
1180 return m_argImpl.coeffRef(ReverseRow ? m_rows.value() - row - 1 : row,
1181 ReverseCol ? m_cols.value() - col - 1 : col);
1186 return m_argImpl.coeffRef(m_rows.value() * m_cols.value() - index - 1);
1189 template<
int LoadMode,
typename PacketType>
1190 PacketType packet(Index row, Index col)
const
1194 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
1195 OffsetCol = ReverseCol && IsRowMajor ? PacketSize : 1
1199 ReverseRow ? m_rows.value() - row - OffsetRow : row,
1200 ReverseCol ? m_cols.value() - col - OffsetCol : col));
1203 template<
int LoadMode,
typename PacketType>
1204 PacketType packet(Index index)
const
1210 template<
int LoadMode,
typename PacketType>
1211 void writePacket(Index row, Index col,
const PacketType& x)
1216 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
1217 OffsetCol = ReverseCol && IsRowMajor ? PacketSize : 1
1221 ReverseRow ? m_rows.value() - row - OffsetRow : row,
1222 ReverseCol ? m_cols.value() - col - OffsetCol : col,
1223 reverse_packet::run(x));
1226 template<
int LoadMode,
typename PacketType>
1227 void writePacket(Index index,
const PacketType& x)
1231 (m_rows.value() * m_cols.value() - index - PacketSize, preverse(x));
1246template<
typename ArgType,
int DiagIndex>
1261 : m_argImpl(diagonal.nestedExpression()),
1262 m_index(diagonal.index())
1265 typedef typename XprType::Scalar Scalar;
1272 return m_argImpl.coeff(row + rowOffset(), row + colOffset());
1277 return m_argImpl.coeff(index + rowOffset(), index + colOffset());
1282 return m_argImpl.coeffRef(row + rowOffset(), row + colOffset());
1287 return m_argImpl.coeffRef(index + rowOffset(), index + colOffset());
1295 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rowOffset()
const {
return m_index.value() > 0 ? 0 : -m_index.value(); }
1296 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index colOffset()
const {
return m_index.value() > 0 ? m_index.value() : 0; }
1310template<
typename ArgType>
1315template<
typename ArgType>
1328 const ArgType& arg()
const
1335 return m_arg.rows();
1340 return m_arg.cols();
1344 const ArgType& m_arg;
1347template<
typename ArgType>
1349 :
public evaluator<typename ArgType::PlainObject>
1352 typedef typename ArgType::PlainObject PlainObject;
1356 : m_result(
xpr.arg())
1358 ::new (
static_cast<Base*
>(
this))
Base(m_result);
1365 ::new (
static_cast<Base*
>(
this))
Base(m_result);
1369 PlainObject m_result;
Expression of a mathematical vector or matrix as an array object.
Definition ArrayWrapper.h:42
General-purpose arrays with easy API for coefficient-wise operations.
Definition Array.h:47
Expression of a fixed-size or dynamic-size block.
Definition Block.h:106
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Definition CwiseBinaryOp.h:85
Generic expression of a matrix where all coefficients are defined by a functor.
Definition CwiseNullaryOp.h:45
Generic expression where a coefficient-wise unary operator is applied to an expression.
Definition CwiseUnaryOp.h:57
Generic lvalue expression of a coefficient-wise unary operator of a matrix or a vector.
Definition CwiseUnaryView.h:60
Expression of a diagonal/subdiagonal/superdiagonal in a matrix.
Definition Diagonal.h:65
A matrix or vector expression mapping an existing array of data.
Definition Map.h:91
Expression of an array as a mathematical vector or matrix.
Definition ArrayWrapper.h:185
The matrix class, also used for vectors and row-vectors.
Definition Matrix.h:180
Generic expression of a partially reduxed matrix.
Definition VectorwiseOp.h:58
Dense storage base class for matrices and arrays.
Definition PlainObjectBase.h:93
A matrix or vector expression mapping an existing expression.
Definition Ref.h:188
Expression of the multiple replication of a matrix or vector.
Definition Replicate.h:62
Expression of the reverse of a vector or matrix.
Definition Reverse.h:65
Expression of a coefficient wise version of the C++ ternary operator ?:
Definition Select.h:54
Pseudo expression representing a solving operation.
Definition Solve.h:63
Expression of the transpose of a matrix.
Definition Transpose.h:55
Definition CoreEvaluators.h:1318
Definition XprHelper.h:67
Definition XprHelper.h:88
@ BothDirections
For Reverse, both rows and columns are reversed; not used for PartialReduxExpr and VectorwiseOp.
Definition Constants.h:271
@ Horizontal
For Reverse, all rows are reversed; for PartialReduxExpr and VectorwiseOp, act on rows.
Definition Constants.h:268
@ Vertical
For Reverse, all columns are reversed; for PartialReduxExpr and VectorwiseOp, act on columns.
Definition Constants.h:265
const unsigned int PacketAccessBit
Short version: means the expression might be vectorized.
Definition Constants.h:88
const unsigned int LinearAccessBit
Short version: means the expression can be seen as 1D vector.
Definition Constants.h:124
const unsigned int EvalBeforeNestingBit
means the expression should be evaluated by the calling expression
Definition Constants.h:65
const unsigned int DirectAccessBit
Means that the underlying array of coefficients can be directly accessed as a plain strided array.
Definition Constants.h:149
const unsigned int RowMajorBit
for a matrix, this means that the storage order is row-major.
Definition Constants.h:61
Definition Constants.h:511
The type used to identify a dense storage.
Definition Constants.h:490
Holds information about the various numeric (i.e.
Definition NumTraits.h:108
Definition Constants.h:518
The type used to identify a permutation storage.
Definition Constants.h:499
Definition Constants.h:512
The type used to identify a general solver (foctored) storage.
Definition Constants.h:496
Definition Constants.h:519
The type used to identify a permutation storage.
Definition Constants.h:502
Definition Constants.h:525
Definition CoreEvaluators.h:52
Definition CoreEvaluators.h:686
Definition XprHelper.h:428
Definition CoreEvaluators.h:101
Definition CoreEvaluators.h:62
Definition CoreEvaluators.h:75
Definition CoreEvaluators.h:1041
Definition CoreEvaluators.h:82
Definition NullaryFunctors.h:143
Definition XprHelper.h:107
Definition ForwardDeclarations.h:26
Definition DenseCoeffsBase.h:631
Definition CoreEvaluators.h:560
Definition DenseCoeffsBase.h:643
Definition GenericPacketMath.h:90
Definition CoreEvaluators.h:23
Definition CoreEvaluators.h:29
Definition ForwardDeclarations.h:17
Definition CoreEvaluators.h:56
Definition XprHelper.h:119