aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/reshape.cpp
Commit message (Collapse)AuthorAge
* Extend reshaped unit tests and remove useless const_castGravatar Gael Guennebaud2019-01-17
|
* Change the logic of A.reshaped<Order>() to be a simple alias to ↵Gravatar Gael Guennebaud2018-10-03
| | | | | | A.reshaped<Order>(AutoSize,fix<1>). This means that now AutoOrder is allowed, and it always return a column-vector.
* Add reshaped<>() shortcuts when returning vectors and remove the reshaping ↵Gravatar Gael Guennebaud2018-09-21
| | | | version of operator()(all)
* merge with default EigenGravatar Gael Guennebaud2018-09-21
|
* Update reshaped API to use RowMajor/ColMajor directly as integral values ↵Gravatar Gael Guennebaud2018-09-19
| | | | | | instead of introducing RowOrder/ColOrder types. The API changed from A.respahed(rows,cols,RowOrder) to A.template reshaped<RowOrder>(rows,cols).
* Add support for automatic-size deduction in reshaped, e.g.:Gravatar Gael Guennebaud2017-02-21
| | | | mat.reshaped(4,AutoSize); <-> mat.reshaped(4,mat.size()/4);
* Add missing const version of mat(all).Gravatar Gael Guennebaud2017-02-21
|
* Add support for mat(all) as an alias to mat.reshaped(mat.size(),fix<1>);Gravatar Gael Guennebaud2017-02-21
|
* Add support for RowOrder reshapedGravatar Gael Guennebaud2017-02-20
|
* Fallback Reshaped to MapBase when possible (same storage order and linear ↵Gravatar Gael Guennebaud2017-02-11
| | | | access to the nested expression)
* Use fix<> API to specify compile-time reshaped sizes.Gravatar Gael Guennebaud2017-01-29
|
* Cleanup intitial reshape implementation:Gravatar Gael Guennebaud2017-01-29
| | | | | - reshape -> reshaped - make it compatible with evaluators.
* fix reshape flag and test caseGravatar yoco2014-02-10
|
* Improve reshape test caseGravatar yoco2014-02-04
| | | | | - simplify test code - add reshape chain
* Remove reshape InnerPanel, add test, fix bugGravatar yoco2014-01-20
|
* add reshape test for const and static-size matrixGravatar yoco2014-01-18
|
* Add unit-test for reshapeGravatar yoco2014-01-18
- add unittest for dynamic & fixed-size reshape - fix fixed-size reshape bugs bugs found while testing