aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/main.h
Commit message (Collapse)AuthorAge
* Added missing STL include of <list> in main.hGravatar Georg Drenkhahn2014-08-29
| | | | | Removed duplicated include of <sstream> Added comments on the background of min/max macro definitions and STL header includes
* EIGEN_EXCEPTIONS was not defined in test/main.h, therefore all ↵Gravatar Christoph Hertzberg2014-08-20
| | | | VERIFY_RAISES_ASSERT tests were not enabled
* Define EIGEN_TRY, EIGEN_CATCH, EIGEN_THROW as suggested by Moritz Klammer.Gravatar Christoph Hertzberg2014-07-22
| | | | | Make it possible to run unit-tests with exceptions disabled via EIGEN_TEST_NO_EXCEPTIONS flag. Enhanced ctorleak unit-test
* Avoid blocking-size mismatch in unit tests calling Eigen's blas interface.Gravatar Gael Guennebaud2014-04-25
|
* Reduce block sizes in unit tests.Gravatar Gael Guennebaud2014-04-17
|
* Add an option to test evaluators globallyGravatar Gael Guennebaud2013-11-07
|
* Add minimalistic unit tests for NVCC supportGravatar Gael Guennebaud2013-11-05
|
* Fix adjoint unit test: test_isApproxWithRef works for positive quantities only.Gravatar Gael Guennebaud2013-07-15
|
* On windows CE, assert.h defines NDEBUG if DEBUG is not definedGravatar Gael Guennebaud2013-07-01
|
* Fix bug #623: inlining test_is_equal leads to failures with x87Gravatar Gael Guennebaud2013-06-27
|
* Introduce a TEST_SET_BUT_UNUSED_VARIABLE macro for initialized but unused ↵Gravatar Gael Guennebaud2013-06-25
| | | | variables in the unit tests and also fix a few other warnings.
* Workaround a bunch of stupid warnings in unit testsGravatar Gael Guennebaud2013-06-23
|
* that's getting harder and harder to make ICC, GCC and clang all happy: one ↵Gravatar Gael Guennebaud2013-06-22
| | | | wants type_name to be static and if it is so then the other one triggers 'unused function' warnings -> a forward declaration seems to do the trick
* explicit template specialization cannot have a storage classGravatar Gael Guennebaud2013-06-22
|
* Fix an shut down a few ICC's remarksGravatar Gael Guennebaud2013-06-22
|
* Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Fix a couple of int versus Index issues.Gravatar Gael Guennebaud2013-04-09
|
* Fixed compiler warning.Gravatar Hauke Heibel2013-02-28
|
* Output random generator seed in case of failure so that we have it in CDash.Gravatar Gael Guennebaud2013-02-25
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* workaround ICC compilation error with -strict-ansiGravatar Gael Guennebaud2012-01-25
|
* fix min/max clash with clang's header by including fstream beforehandGravatar Gael Guennebaud2011-12-08
|
* bug #383 - another c++11-user-defined-literal fixGravatar Marc Glisse2011-11-27
|
* bug #365 - Add test for non-usage of B0Gravatar Benoit Jacob2011-10-31
|
* add a unit test for permutation applied to sparse objectsGravatar Gael Guennebaud2011-10-11
|
* the min/max macros to detect unprotected min/max were undefined by some std ↵Gravatar Gael Guennebaud2011-08-19
| | | | | | header, so let's declare them after and do the respective fixes ;)
* protect calls to min and max with parentheses to make Eigen compatible with ↵Gravatar Gael Guennebaud2011-07-21
| | | | | | | default windows.h (transplanted from 49b6e9143e1d74441924c0c313536e263e12a55c )
* automatically generate the CALL_SUBTEST_* macrosGravatar Gael Guennebaud2011-03-28
|
* bounds the range of random integers for AltiVecGravatar Gael Guennebaud2011-02-24
|
* mergeGravatar Gael Guennebaud2011-02-18
|\
* | remove largeEps in adjoint unit test and use a more accurate ↵Gravatar Gael Guennebaud2011-02-18
| | | | | | | | test_isApproxWithRef test.
| * fix bug #187: stable norm test was quite brokenGravatar Benoit Jacob2011-02-18
|/
* undo debugging changeGravatar Benoit Jacob2011-02-16
|
* Fix bug #89: on GCC <= 4.3, use a custom assert implementation to work ↵Gravatar Benoit Jacob2011-02-16
| | | | around a compiler bug
* Improved the array unit test - internal::isApprox needs to use the same ↵Gravatar Hauke Heibel2010-12-16
| | | | | | precision as VERIFY_IS_NOT_APPROX. Removed debug code from test_isApprox.
* Compilation fix in case EIGEN_DEBUG_ASSERTS is defined.Gravatar Jitse Niesen2010-11-26
|
* implement VERIFY in a function so it doesn't get compiled thousands of times.Gravatar Benoit Jacob2010-10-29
|
* on test failure, abort instead of exit, so we can get a stack traceGravatar Benoit Jacob2010-10-29
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Matrix product refactoring (rhs products only).Gravatar Hauke Heibel2010-08-19
| | | | | | | | | Added strong inlines required for MSVC for proper inlining. Added specializations for DiagonalMatrix products to RotationBase. Added left- and righ-hand-side products with DiagonalMatrix to Transform. RHS Transform products now return Matrix objects only. Split the geo_transformations unit test. Some tests were not made for projectivities. Removed unused variables from main.h that caused warnings.
* Fixed Geometry module failures.Gravatar Hauke Heibel2010-08-17
| | | | | | | | | Removed default parameter from Transform. Removed the TransformXX typedefs. Removed references to TransformXX from unit tests and docs. Assigning Transforms to a sub-group is now forbidden at compile time. Products should now properly support the Isometry flag. Fixed alignment checks in MapBase.
* sync with default branchGravatar Gael Guennebaud2010-07-22
|\
* | report a true assert when not checking for an assertionGravatar Gael Guennebaud2010-07-20
| |
| * use dummy_precision by default instead of 0Gravatar Gael Guennebaud2010-07-14
|/
* email changeGravatar Gael Guennebaud2010-06-24
|
* Still fixing warnings.Gravatar Hauke Heibel2010-06-20
|
* Utilize Index in all unit tests.Gravatar Hauke Heibel2010-06-20
|
* Eigen types must always be passed by reference in order to retain memory ↵Gravatar Hauke Heibel2010-06-08
| | | | alignment.
* 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
* display actual/expected warning if ei_isApprox() failsGravatar Thomas Capricelli2010-05-21
|