aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 17:26:24 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 17:26:24 -0500
commitd5f3b2dc943a712a92834cebaea8bb9caae2f6e9 (patch)
treed89d36473ee33144e3b6e1da64775e779c2ab7e6 /Eigen/src/Core
parent832045d363a6edf59d4dc4ad0cfbe02272dcce3c (diff)
change the Arch constants: const int ---> enum, more explicit names, and use
of a namespace instead of Prefix_Name.
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/util/Constants.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/Eigen/src/Core/util/Constants.h b/Eigen/src/Core/util/Constants.h
index 5489d063a..1128876f8 100644
--- a/Eigen/src/Core/util/Constants.h
+++ b/Eigen/src/Core/util/Constants.h
@@ -228,8 +228,7 @@ enum {
RowMajor = 0x1, // it is only a coincidence that this is equal to RowMajorBit -- don't rely on that
/** \internal Align the matrix itself if it is vectorizable fixed-size */
AutoAlign = 0,
- /** \internal Don't require alignment for the matrix itself (the array of coefficients, if dynamically allocated, may still be
- requested to be aligned) */
+ /** \internal Don't require alignment for the matrix itself (the array of coefficients, if dynamically allocated, may still be requested to be aligned) */ // FIXME --- clarify the situation
DontAlign = 0x2
};
@@ -277,16 +276,20 @@ enum TransformTraits {
Projective = 0x20
};
-const int EiArch_Generic = 0x0;
-const int EiArch_SSE = 0x1;
-const int EiArch_AltiVec = 0x2;
-
+namespace Architecture
+{
+ enum Type {
+ Generic = 0x0,
+ SSE = 0x1,
+ AltiVec = 0x2,
#if defined EIGEN_VECTORIZE_SSE
- const int EiArch = EiArch_SSE;
+ Target = SSE
#elif defined EIGEN_VECTORIZE_ALTIVEC
- const int EiArch = EiArch_AltiVec;
+ Target = AltiVec
#else
- const int EiArch = EiArch_Generic;
+ Target = Generic
#endif
+ };
+}
#endif // EIGEN_CONSTANTS_H