mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Made the index type a template parameter of the tensor class instead of encoding it in the options.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user