allow vectorization of mat44.col() by adding a InnerPanel boolean

template parameter to Block
This commit is contained in:
Gael Guennebaud
2010-07-23 16:29:29 +02:00
parent 853c0e15df
commit aa2b46aa91
6 changed files with 30 additions and 17 deletions

View File

@@ -60,7 +60,7 @@ template<typename ExpressionType> class NestByValue;
template<typename ExpressionType> class ForceAlignedAccess;
template<typename ExpressionType> class SwapWrapper;
template<typename XprType, int BlockRows=Dynamic, int BlockCols=Dynamic,
template<typename XprType, int BlockRows=Dynamic, int BlockCols=Dynamic, bool InnerPanel = false,
bool HasDirectAccess = ei_has_direct_access<XprType>::ret> class Block;
template<typename MatrixType, int Size=Dynamic> class VectorBlock;