aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-02-21 15:57:25 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-02-21 15:57:25 +0100
commit3d200257d73d99a1f37b1cb23ce52b80264ba0d9 (patch)
tree2161f453e18959f765834626766220ca5b096a41 /Eigen/Core
parentf8179385bd299966bded1b99328ef1bd67faacc6 (diff)
Add support for automatic-size deduction in reshaped, e.g.:
mat.reshaped(4,AutoSize); <-> mat.reshaped(4,mat.size()/4);
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/Core b/Eigen/Core
index 1174d7d16..1af688637 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -431,6 +431,7 @@ using std::ptrdiff_t;
#include "src/Core/arch/CUDA/Complex.h"
#include "src/Core/util/IndexedViewHelper.h"
+#include "src/Core/util/ReshapedHelper.h"
#include "src/Core/ArithmeticSequence.h"
#include "src/Core/DenseCoeffsBase.h"
#include "src/Core/DenseBase.h"