From a901bed33a33354b1e6b287907d4bf28d5c31b96 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Sun, 21 Feb 2010 18:26:14 +0100 Subject: [PATCH] Added IsRowMajor enum to DenseBase. --- Eigen/src/Core/DenseBase.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Eigen/src/Core/DenseBase.h b/Eigen/src/Core/DenseBase.h index 2850c60cb..eb018738f 100644 --- a/Eigen/src/Core/DenseBase.h +++ b/Eigen/src/Core/DenseBase.h @@ -124,6 +124,8 @@ template class DenseBase * constructed from this one. See the \ref flags "list of flags". */ + IsRowMajor = int(Flags) & RowMajorBit, /**< True if this expression is row major. */ + CoeffReadCost = ei_traits::CoeffReadCost, /**< This is a rough measure of how expensive it is to read one coefficient from * this expression.