Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Workaround dead store warnings in unit tests. | Gael Guennebaud | 2015-02-18 |
| | |||
* | Introduce a TEST_SET_BUT_UNUSED_VARIABLE macro for initialized but unused ↵ | Gael Guennebaud | 2013-06-25 |
| | | | | variables in the unit tests and also fix a few other warnings. | ||
* | Workaround a bunch of stupid warnings in unit tests | Gael Guennebaud | 2013-06-23 |
| | |||
* | Fix bug #314: move remaining math functions from internal to numext namespace | Gael Guennebaud | 2013-06-10 |
| | |||
* | Clean source code and unit tests with respect to -Wunused-local-typedefs | Gael Guennebaud | 2013-04-10 |
| | |||
* | Automatic relicensing to MPL2 using Keirs script. Manual fixup follows. | Benoit Jacob | 2012-07-13 |
| | |||
* | bug #365 - Add test for non-usage of B0 | Benoit Jacob | 2011-10-31 |
| | |||
* | add the possibility to configure the maximal matrix size in the unit tests | Gael Guennebaud | 2011-07-12 |
| | |||
* | fix bug #122 : rank 2 update test and scalar multiple extraction were both wrong | Gael Guennebaud | 2010-11-23 |
| | |||
* | bug #86 : use internal:: namespace instead of ei_ prefix | Benoit Jacob | 2010-10-25 |
| | |||
* | extend product unit tests | Gael Guennebaud | 2010-07-07 |
| | |||
* | email change | Gael Guennebaud | 2010-06-24 |
| | |||
* | Utilize Index in all unit tests. | Hauke Heibel | 2010-06-20 |
| | |||
* | remove the Triangular suffix to Upper, Lower, UnitLower, etc, | Gael Guennebaud | 2010-01-07 |
| | | | | and remove the respective bit flags | ||
* | Big renaming: | Benoit Jacob | 2010-01-04 |
| | | | | | | start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day. | ||
* | Replace toDense() by toDenseMatrix() in tests. | Jitse Niesen | 2009-11-20 |
| | |||
* | big huge changes, so i dont remember everything. | Benoit Jacob | 2009-10-28 |
| | | | | | | | | | | * renaming, e.g. LU ---> FullPivLU * split tests framework: more robust, e.g. dont generate empty tests if a number is skipped * make all remaining tests use that splitting, as needed. * Fix 4x4 inversion (see stable branch) * Transform::inverse() and geo_transform test : adapt to new inverse() API, it was also trying to instantiate inverse() for 3x4 matrices. * CMakeLists: more robust regexp to parse the version number * misc fixes in unit tests | ||
* | kill ei_add_test_multi. Now the macro ei_add_test does all that ↵ | Benoit Jacob | 2009-10-19 |
| | | | | automatically, by parsing the source file. No risk anymore to specify the wrong number of tests! Also, introduce CALL_SUBTESTX for X=1..10 that allows to port existing code much quicker. And port already the product* and eigensolver* files. | ||
* | various compilation and bug fixes in selfadjoint stuff | Gael Guennebaud | 2009-07-27 |
| | |||
* | split and add unit tests for symm and syrk, | Gael Guennebaud | 2009-07-23 |
| | | | | the .rank*update() functions now returns a reference to *this | ||
* | improve SYMV it is now faster and ready for use | Gael Guennebaud | 2009-07-23 |
| | |||
* | addd matrix * self adjoint high level API | Gael Guennebaud | 2009-07-23 |
| | |||
* | bugfix in SYMM | Gael Guennebaud | 2009-07-22 |
| | |||
* | implement high level API for SYMM and fix a couple of bugs related to complex | Gael Guennebaud | 2009-07-22 |
| | |||
* | * refactoring of the matrix product into multiple small kernels | Gael Guennebaud | 2009-07-21 |
| | | | | | * started an efficient selfadjoint matrix * general matrix product based on the generic kernels ( => need a very little LOC) | ||
* | * bugfixes in Product, and test/product_selfadjoint | Gael Guennebaud | 2009-07-16 |
| | | | | * speed up in the extraction of the matrix Q in Tridiagonalization | ||
* | Add an efficient rank2 update function (like the level2 blas xSYR2 routine). | Gael Guennebaud | 2009-07-11 |
| | | | | Note that it is already used in Tridiagonalization. | ||
* | * bybye Part, welcome TriangularView and SelfAdjointView. | Gael Guennebaud | 2009-07-06 |
| | | | | | | | | * move solveTriangular*() to TriangularView::solve*() * move .llt() to SelfAdjointView * add a high level wrapper to the efficient selfadjoint * vector product * improve LLT so that we can specify which triangular part is meaningless => there are still many things to do (doc, cleaning, improve the matrix products, etc.) | ||
* | remove sentence "Eigen itself is part of the KDE project." | Benoit Jacob | 2009-05-22 |
| | | | | it never made very precise sense. but now does it still make any? | ||
* | * split CacheFriendlyProduct into multiple smaller files | Gael Guennebaud | 2009-02-21 |
* add an efficient selfadjoint * vector implementation (= blas symv) perf are inbetween MKL and GOTO => the interface is still missing (have to be rethougth) |