aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/autodiff.cpp
Commit message (Collapse)AuthorAge
* bug #1281: fix AutoDiffScalar's make_coherent for nested expression of ↵Gravatar Gael Guennebaud2019-11-14
| | | | constant ADs.
* Fix numerous shadow-warnings for GCC<=4.8Gravatar Christoph Hertzberg2018-08-28
|
* 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
* Fix "used uninitialized" warningsGravatar Gael Guennebaud2018-04-24
|
* Made AutoDiffJacobian more intuitive to use and updated for C++11Gravatar Emil Fresk2016-09-16
| | | | | | | | | | | | Changes: * Removed unnecessary types from the Functor by inferring from its types * Removed inputs() function reference, replaced with .rows() * Updated the forward constructor to use variadic templates * Added optional parameters to the Fuctor for passing parameters, control signals, etc * Has been tested with fixed size and dynamic matricies Ammendment by chtz: overload operator() for compatibility with not fully conforming compilers
* bug #1264: fix compilationGravatar Gael Guennebaud2016-07-27
|
* Big 1261: add missing max(ADS,ADS) overload (same for min)Gravatar Gael Guennebaud2016-07-27
|
* bug #1260: add regression testGravatar Gael Guennebaud2016-07-27
|
* bug #1260: remove doubtful specializations of ScalarBinaryOpTraitsGravatar Gael Guennebaud2016-07-27
|
* bug #1223: fix compilation of AutoDiffScalar's min/max operators, and add ↵Gravatar Gael Guennebaud2016-05-18
| | | | regression unit test.
* bug #1222: fix compilation in AutoDiffScalar and add respective unit testGravatar Gael Guennebaud2016-05-18
|
* Enable and fix -Wdouble-conversion warningsGravatar Christoph Hertzberg2016-05-05
|
* bug #1189: fix pow/atan2 compilation for AutoDiffScalarGravatar Gael Guennebaud2016-04-05
|
* Add unit test for Hessian via AutoDiffScalarGravatar Gael Guennebaud2015-11-05
|
* Make some actual verifications inside the autodiff unit testGravatar Christoph Hertzberg2014-04-01
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* fix some compilation issuesGravatar Gael Guennebaud2011-09-23
|
* add atan2 support in AutoDiff and remove superfluous std:: specializationsGravatar Gael Guennebaud2011-09-05
|
* a couple of improvements in the Autodiff moduleGravatar Gael Guennebaud2010-01-05
|
* mergeGravatar Gael Guennebaud2009-12-04
|
* autodiff:Gravatar Gael Guennebaud2009-10-15
| | | | | | * fix namespace issue * simplify Jacobian code * fix issue with "Dynamic derivatives"
* remove references to adolc and split tests functions for clarityGravatar Thomas Capricelli2009-09-27
|
* remove sentence "Eigen itself is part of the KDE project."Gravatar Benoit Jacob2009-05-22
| | | | it never made very precise sense. but now does it still make any?
* CREDIT Hauke Heibel, fix MSVC warningsGravatar Benoit Jacob2009-05-09
|
* clean asm commentsGravatar Gael Guennebaud2009-04-09
|
* add an auto-diff module in unsupported. it is similar to adolc's forwardGravatar Gael Guennebaud2009-04-01
mode but the advantage of using Eigen's expression template to compute the derivatives (unless you nest an AutoDiffScalar into an Eigen's matrix).