From bb1f4e44f10de50b5b52a3973324c1a0952e3f29 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 16 Jun 2008 14:54:31 +0000 Subject: * Block: row and column expressions in the inner direction now have the Like1D flag. * Big renaming: packetCoeff ---> packet VectorizableBit ---> PacketAccessBit Like1DArrayBit ---> LinearAccessBit --- Eigen/src/Core/NestByValue.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Eigen/src/Core/NestByValue.h') 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 class NestByValue } template - inline const PacketScalar _packetCoeff(int row, int col) const + inline const PacketScalar _packet(int row, int col) const { - return m_expression.template packetCoeff(row, col); + return m_expression.template packet(row, col); } template - 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(row, col, x); + m_expression.const_cast_derived().template writePacket(row, col, x); } protected: -- cgit v1.2.3