aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nesting_ops.cpp
Commit message (Collapse)AuthorAge
* 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
* Introduce a NumTraits<T>::Literal type to be used for literals, andGravatar Gael Guennebaud2016-06-23
| | | | | | | improve mixing type support in operations between arrays and scalars: - 2 * ArrayXcf is now optimized in the sense that the integer 2 is properly promoted to a float instead of a complex<float> (fix a regression) - 2.1 * ArrayXi is now forbiden (previously, 2.1 was converted to 2) - This mechanism should be applicable to any custom scalar type, assuming NumTraits<T>::Literal is properly defined (it defaults to T)
* Fix unit tests wrt EIGEN_DEFAULT_TO_ROW_MAJORGravatar Gael Guennebaud2015-12-11
|
* Implement temporary-free path for "D.nolias() ?= C + A*B". (I thought it was ↵Gravatar Gael Guennebaud2015-10-09
| | | | already implemented)
* The evalautor of Solve was missing the EvalBeforeNestingBit flag.Gravatar Gael Guennebaud2015-10-09
|
* Add unit test for nested_evalGravatar Gael Guennebaud2015-10-09
|
* Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
|
* ExprType::Nested has a new meaning now...Gravatar Gael Guennebaud2014-02-19
|
* It's better to check that eigen_assert does raise an assert rather than ↵Gravatar Gael Guennebaud2013-07-01
| | | | testing the definition of NDEBUG
* Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* fix bad testsGravatar Gael Guennebaud2010-06-28
|
* fix nesting in Arraywrapper and nesting_opsGravatar Gael Guennebaud2010-02-09
|
* Added a non-diagonal product nesting test.Gravatar Hauke Heibel2010-02-09
|
* Fixed paste&copy error.Gravatar Hauke Heibel2010-02-09
|
* Added debug only unit test for nesting ops - just run ./check nesting.Gravatar Hauke Heibel2010-02-09