aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/block.cpp
Commit message (Collapse)AuthorAge
* Fix detection of vector-at-time: use Rows/Cols instead of MaxRow/MaxCols.Gravatar Gael Guennebaud2019-01-15
| | | | This fix VectorXd(n).middleCol(0,0).outerSize() which was equal to 1.
* Add templated subVector<Vertical/Horizonal>(Index) aliases to col/row(Index) ↵Gravatar Gael Guennebaud2018-10-02
| | | | methods (plus subVectors<>() to retrieve the number of rows/columns)
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
|
* Fix regression in 9357838f94d2907996adadc7e5200376f3561ed4Gravatar Gael Guennebaud2018-07-11
|
* bug #1543: improve linear indexing for general block expressionsGravatar Gael Guennebaud2018-07-10
|
* Fix linear indexing in generic block evaluation.Gravatar Gael Guennebaud2018-02-09
|
* Fix unamed type as template parametre issue.Gravatar Gael Guennebaud2017-01-27
|
* Merged in ggael/eigen-flexidexing (pull request PR-294)Gravatar Gael Guennebaud2017-01-26
|\ | | | | | | generalized operator() for indexed access and slicing
* | bug #1376: add missing assertion on size mismatch with compound assignment ↵Gravatar Gael Guennebaud2017-01-23
| | | | | | | | operators (e.g., mat += mat.col(j))
| * Add a generic block() method compatible with Eigen::fixGravatar Gael Guennebaud2017-01-17
|/
* Fix shortcoming in fixed-value deduction of startRow/startColGravatar Gael Guennebaud2016-02-29
|
* Fix compilation of coeff(Index) on sub-inner-panelsGravatar Gael Guennebaud2014-09-08
|
* Fix unit test when using 80bits FPUGravatar Gael Guennebaud2014-07-09
|
* Regression test for bug #752Gravatar Christoph Hertzberg2014-02-27
|
* Implement mixed static/dynamic-size .block() (bug #579)Gravatar Jitse Niesen2013-06-18
|
* Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* fix more variable-set-but-not-used warnings on gcc 4.6Gravatar Benoit Jacob2011-10-31
|
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Compilation fix.Gravatar Hauke Heibel2010-06-21
|
* Fix compilation of some tests as well as more warnings.Gravatar Hauke Heibel2010-06-20
|
* Utilize Index in all unit tests.Gravatar Hauke Heibel2010-06-20
|
* change the value of Dynamic to -1, since the index type is now configurable.Gravatar Benoit Jacob2010-06-11
| | | | remove EIGEN_ENUM_MIN/MAX, implement new macros instead
* tests:Gravatar Benoit Jacob2010-05-30
| | | | | | * change test_is_equal so it just checks for equality, doesn't try anymore to allow to ignoring the difference between col and row vectors. (needed for the upcoming Index types change) * in ei_assert, don't report on cerr if we're inside of VERIFY_RAISES_ASSERT
* remove MinorGravatar Benoit Jacob2010-04-22
| | | | adapt 3x3 and 4x4 (non-SSE) inverse paths
* * add VERIFY_IS_EQUAL, should compile faster and it's natural when no ↵Gravatar Benoit Jacob2010-02-26
arithmetic is involved. * rename 'submatrices' test to 'block' * add block-inside-of-block tests * remove old cruft * split diagonal() tests into separate file