aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/IndexedView.h
Commit message (Collapse)AuthorAge
* Indexed view should have RowMajorBit when there is staticly a single rowGravatar Christopher Moore2020-05-14
|
* Resolve "IndexedView of a vector should allow linear access"Gravatar Christopher Moore2020-05-13
|
* Remove some useless const_castGravatar Gael Guennebaud2019-01-17
|
* Fix max-size in indexed-viewGravatar Gael Guennebaud2018-11-08
|
* Workaround some gcc 4.7 warningsGravatar Gael Guennebaud2017-02-11
|
* Add support for symbolic expressions as arguments of operator()Gravatar Gael Guennebaud2017-01-16
|
* Large code refactoring:Gravatar Gael Guennebaud2017-01-11
| | | | | | - generalize some utilities and move them to Meta (size(), array_size()) - move handling of all and single indices to IndexedViewHelper.h - several cleanup changes
* Move fix and symbolic to their own file, and improve doxygen compatibilityGravatar Gael Guennebaud2017-01-11
|
* Add doc to seq, seqN, ArithmeticSequence, operator(), etc.Gravatar Gael Guennebaud2017-01-10
|
* Factorize const and non-const version of the generic operator() method.Gravatar Gael Guennebaud2017-01-10
|
* add writeable IndexedViewGravatar Gael Guennebaud2017-01-10
|
* Fix linking issueGravatar Gael Guennebaud2017-01-10
|
* Add doc for IndexedViewGravatar Gael Guennebaud2017-01-10
|
* Fallback to Block<> when possible (Index, all, seq with > increment).Gravatar Gael Guennebaud2017-01-10
| | | | | This is important to take advantage of the optimized implementations (evaluator, products, etc.), and to support sparse matrices.
* Add support for plain-array as indices, e.g., mat({1,2,3,4})Gravatar Gael Guennebaud2017-01-06
|
* Propagate compile-time increment and strides.Gravatar Gael Guennebaud2017-01-06
| | | | Had to introduce a UndefinedIncr constant for non structured list of indices.
* Propagate compile-time size with "all" and add c++11 array unit testGravatar Gael Guennebaud2017-01-06
|
* Use "fix" for compile-time values, propagate compile-time sizes for span, ↵Gravatar Gael Guennebaud2017-01-06
| | | | clean some cleanup.
* Initial commit to add a generic indexed-based view of matrices.Gravatar Gael Guennebaud2017-01-06
This version already works as a read-only expression. Numerous refactoring, renaming, extension, tuning passes are expected...