aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/stl_iterators.cpp
Commit message (Collapse)AuthorAge
* Make iterators default constructible and assignable, by making...Gravatar Christoph Hertzberg2021-04-09
|
* Added support for reverse iterators for Vectorwise operations.Gravatar Felipe Attanasio2020-05-14
|
* Replace norm() with squaredNorm() to address integer overflowsGravatar Antonio Sanchez2020-04-07
| | | | | | | | | | | For random matrices with integer coefficients, many of the tests here lead to integer overflows. When taking the norm() of a row/column, the squaredNorm() often overflows to a negative value, leading to domain errors when taking the sqrt(). This leads to a crash on some systems. By replacing the norm() call by a squaredNorm(), the values still overflow, but at least there is no domain error. Addresses https://gitlab.com/libeigen/eigen/-/issues/1856
* bug #1776: fix vector-wise STL iterator's operator-> using a proxy as ↵Gravatar Gael Guennebaud2019-12-03
| | | | | | pointer type. This changeset fixes also the value_type definition.
* bug #1774: fix VectorwiseOp::begin()/end() return types regarding constness.Gravatar Gael Guennebaud2019-11-14
|
* bug #1619: fix mixing of const and non-const generic iteratorsGravatar Gael Guennebaud2018-11-09
|
* bug #1619: make const and non-const iterators compatibleGravatar Gael Guennebaud2018-11-09
|
* add unit tests for bug #1619Gravatar Gael Guennebaud2018-11-01
|
* relax numerical tests from equal to approx (x87)Gravatar Gael Guennebaud2018-10-11
|
* Hide stl-container detection test under #ifGravatar Eugene Zhulenev2018-10-09
|
* Compile time detection for unimplemented stl-style iteratorsGravatar Eugene Zhulenev2018-10-09
|
* Simplify API by removing allCols/allRows and reusing rowwise/colwise to ↵Gravatar Gael Guennebaud2018-10-05
| | | | define iterators over rows/columns
* Move iterators to internal, improve doc, make unit test c++03 friendlyGravatar Gael Guennebaud2018-10-03
|
* add unit testsGravatar Gael Guennebaud2018-10-03
|
* Add pointer-based iterator for direct-access expressionsGravatar Gael Guennebaud2018-10-02
|
* Use Index instead of ptrdiff_t or int, fix random-accessors.Gravatar Gael Guennebaud2018-10-02
|
* bug #231: initial implementation of STL iterators for dense expressionsGravatar Gael Guennebaud2018-10-01