aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-06-29 21:29:12 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-06-29 21:29:12 +0000
commit37a50fa5268d6d408c74ab2d380785ce07ec302c (patch)
treecfb51b6dd0a9f89a67cbc5af4f16cbcc7eba7f58 /Eigen/src/Core/util
parentfbdecf09e174c0b9bc45695cab8fb9c49656ebfa (diff)
* added an in-place version of inverseProduct which
might be twice faster fot small fixed size matrix * added a sparse triangular solver (sparse version of inverseProduct) * various other improvements in the Sparse module
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/Constants.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/src/Core/util/Constants.h b/Eigen/src/Core/util/Constants.h
index 7e0c5650d..613cb053c 100644
--- a/Eigen/src/Core/util/Constants.h
+++ b/Eigen/src/Core/util/Constants.h
@@ -191,6 +191,11 @@ enum {
Sparse = SparseBit
};
+enum {
+ ColMajor = 0,
+ RowMajor = RowMajorBit
+};
+
const int FullyCoherentAccessPattern = 0x1;
const int InnerCoherentAccessPattern = 0x2 | FullyCoherentAccessPattern;
const int OuterCoherentAccessPattern = 0x4 | InnerCoherentAccessPattern;