* Block: row and column expressions in the inner direction

now have the Like1D flag.

* Big renaming:
  packetCoeff ---> packet
  VectorizableBit ---> PacketAccessBit
  Like1DArrayBit ---> LinearAccessBit
This commit is contained in:
Benoit Jacob
2008-06-16 14:54:31 +00:00
parent 9857764ae7
commit bb1f4e44f1
22 changed files with 192 additions and 188 deletions

View File

@@ -85,15 +85,15 @@ template<typename ExpressionType, unsigned int Added, unsigned int Removed> clas
}
template<int LoadMode>
inline const PacketScalar _packetCoeff(int row, int col) const
inline const PacketScalar _packet(int row, int col) const
{
return m_matrix.template packetCoeff<LoadMode>(row, col);
return m_matrix.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_matrix.const_cast_derived().template writePacketCoeff<LoadMode>(row, col, x);
m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x);
}
protected: