aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-08 16:51:41 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-08 16:51:41 +0100
commit8b016e717fdcbf4f9be34997bb857f52ca34a5b8 (patch)
tree3c8dcf532926830d5ee3f95c5ab03e0ddc45a2ce /Eigen/src/Core/products
parent871698d3aa3e125561226a08bee9aa2db5dec6aa (diff)
get rid of NestParentByRefBit
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralUnrolled.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Eigen/src/Core/products/GeneralUnrolled.h b/Eigen/src/Core/products/GeneralUnrolled.h
index a8fec1fac..32aa3afe6 100644
--- a/Eigen/src/Core/products/GeneralUnrolled.h
+++ b/Eigen/src/Core/products/GeneralUnrolled.h
@@ -81,10 +81,8 @@ struct ei_traits<GeneralProduct<LhsNested,RhsNested,UnrolledProduct> >
Flags = ((unsigned int)(LhsFlags | RhsFlags) & HereditaryBits & RemovedBits)
| EvalBeforeAssigningBit
| EvalBeforeNestingBit
- | NestParentByRefBit
| (CanVectorizeLhs || CanVectorizeRhs ? PacketAccessBit : 0)
- | (LhsFlags & RhsFlags & AlignedBit)
- | EIGEN_PROPAGATE_NESTING_BIT(LhsFlags|RhsFlags),
+ | (LhsFlags & RhsFlags & AlignedBit),
CoeffReadCost = InnerSize == Dynamic ? Dynamic
: InnerSize * (NumTraits<Scalar>::MulCost + LhsCoeffReadCost + RhsCoeffReadCost)