aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-12-04 18:14:16 -0800
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-12-04 18:14:16 -0800
commitf4ca8ad9178b5fa1b83697e1a645e55d65df5639 (patch)
treeca4ea868a5ac80a8b8ed3677519b0c7225fc0521 /unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
parent490d26e4c14554716298c3bc4123571bbf92a1b2 (diff)
Use signed integers instead of unsigned ones more consistently in the codebase.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
index fa62b25c2..9e208934b 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
@@ -495,7 +495,7 @@ struct TensorContractionEvaluatorBase
internal::array_size<typename TensorEvaluator<EvalLeftArgType, Device>::Dimensions>::value;
static const int RDims =
internal::array_size<typename TensorEvaluator<EvalRightArgType, Device>::Dimensions>::value;
- static const unsigned int ContractDims = internal::array_size<Indices>::value;
+ static const int ContractDims = internal::array_size<Indices>::value;
static const int NumDims = max_n_1<LDims + RDims - 2 * ContractDims>::size;
typedef array<Index, LDims> left_dim_mapper_t;