aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Constants.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-03-30 14:55:54 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-03-30 14:55:54 -0700
commit35722fa0222a7f99a8179d75244177a9801ea36b (patch)
tree151d3b1e7dac4b322afd00f719d5e0934dd542e1 /Eigen/src/Core/util/Constants.h
parent71950f02e573bcffa589e83f188bc64b717af1c7 (diff)
Made the index type a template parameter of the tensor class instead of encoding it in the options.
Diffstat (limited to 'Eigen/src/Core/util/Constants.h')
-rw-r--r--Eigen/src/Core/util/Constants.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Eigen/src/Core/util/Constants.h b/Eigen/src/Core/util/Constants.h
index fea75a004..d1855b50b 100644
--- a/Eigen/src/Core/util/Constants.h
+++ b/Eigen/src/Core/util/Constants.h
@@ -296,11 +296,7 @@ enum {
/** Align the matrix itself if it is vectorizable fixed-size */
AutoAlign = 0,
/** 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,
- /** Use the DenseIndex type to index the matrix/array/tensor. Unless otherwise specified by defining EIGEN_DEFAULT_DENSE_INDEX_TYPE, DenseIndex is a ptrdiff_t. */
- IndexDefault = 0,
- /** Use 32bit signed integers to index the matrix/array/tensor. */
- Index32Bit = 0x4
+ DontAlign = 0x2
};
/** \ingroup enums