From 35722fa0222a7f99a8179d75244177a9801ea36b Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Mon, 30 Mar 2015 14:55:54 -0700 Subject: Made the index type a template parameter of the tensor class instead of encoding it in the options. --- Eigen/src/Core/util/Constants.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Eigen/src') 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 -- cgit v1.2.3