aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NestByValue.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-16 14:54:31 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-06-16 14:54:31 +0000
commitbb1f4e44f10de50b5b52a3973324c1a0952e3f29 (patch)
treeadf665eb4257e09edf640e23cc621e7d178d0cbd /Eigen/src/Core/NestByValue.h
parent9857764ae7f907e5cf441ebf6348f581f874dd00 (diff)
* Block: row and column expressions in the inner direction
now have the Like1D flag. * Big renaming: packetCoeff ---> packet VectorizableBit ---> PacketAccessBit Like1DArrayBit ---> LinearAccessBit
Diffstat (limited to 'Eigen/src/Core/NestByValue.h')
-rw-r--r--Eigen/src/Core/NestByValue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/NestByValue.h b/Eigen/src/Core/NestByValue.h
index 51f38e8d8..0c6cdb114 100644
--- a/Eigen/src/Core/NestByValue.h
+++ b/Eigen/src/Core/NestByValue.h
@@ -77,15 +77,15 @@ template<typename ExpressionType> class NestByValue
}
template<int LoadMode>
- inline const PacketScalar _packetCoeff(int row, int col) const
+ inline const PacketScalar _packet(int row, int col) const
{
- return m_expression.template packetCoeff<LoadMode>(row, col);
+ return m_expression.template packet<LoadMode>(row, col);
}
template<int LoadMode>
- inline void _writePacketCoeff(int row, int col, const PacketScalar& x)
+ inline void _writePacket(int row, int col, const PacketScalar& x)
{
- m_expression.const_cast_derived().template writePacketCoeff<LoadMode>(row, col, x);
+ m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
}
protected: