aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* PR 572: Add initializer list constructors to Matrix and Array (include unit ↵Gravatar David Tellenbach2019-01-21
| | | | | | | | tests and doc) - {1,2,3,4,5,...} for fixed-size vectors only - {{1,2,3},{4,5,6}} for the general cases - {{1,2,3,4,5,....}} is allowed for both row and column-vector
* Add more extensive tests of Array ctors, including {} variantsGravatar Gael Guennebaud2019-01-22
|
* Fix compilation of unit tests with gcc and c++17Gravatar Gael Guennebaud2019-01-18
|
* After fixing bug #1557, boostmultiprec_7 failed with NumericalIssue instead ↵Gravatar Christoph Hertzberg2019-01-17
| | | | of NoConvergence (all that matters here is no Success)
* Make nestByValue works again (broken since 3.3) and add unit tests.Gravatar Gael Guennebaud2019-01-17
|
* Extend reshaped unit tests and remove useless const_castGravatar Gael Guennebaud2019-01-17
|
* Cleanup useless const_cast and add missing broadcast assignment testsGravatar Gael Guennebaud2019-01-17
|
* Boosttest only available for Boost version >= 1.53.0Gravatar Patrick Peltzer2019-01-17
|
* PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD).Gravatar Patrick Peltzer2019-01-17
| | | | | | | | | | | | | This changeset also includes: * add HouseholderSequence::conjugateIf * define int as the StorageIndex type for all dense solvers * dedicated unit tests, including assertion checking * _check_solve_assertion(): this method can be implemented in derived solver classes to implement custom checks * CompleteOrthogonalDecompositions: add applyZOnTheLeftInPlace, fix scalar type in applyZAdjointOnTheLeftInPlace(), add missing assertions * Cholesky: add missing assertions * FullPivHouseholderQR: Corrected Scalar type in _solve_impl() * BDCSVD: Unambiguous return type for ternary operator * SVDBase: Corrected Scalar type in _solve_impl()
* Add conjugateIf<bool> members to DesneBase, TriangularView, SelfadjointView, ↵Gravatar Gael Guennebaud2019-01-17
| | | | and make PartialPivLU use it.
* Remove Eigen2ToEigen3 migration page (obsolete since 3.3)Gravatar Gael Guennebaud2019-01-16
|
* bug #1617: add unit tests for empty triangular solve.Gravatar Gael Guennebaud2019-01-16
|
* bug #1646: disable aliasing detection for empty and 1x1 expressionGravatar Gael Guennebaud2019-01-16
|
* Make Transform::rotation() an alias to Transform::linear() in the case of an ↵Gravatar Gael Guennebaud2019-01-15
| | | | Isometry
* Enable visitor on empty matrices (the visitor is left unchanged), and ↵Gravatar Gael Guennebaud2019-01-15
| | | | protect min/maxCoeff(Index*,Index*) on empty matrices by an assertion (+ doc & unit tests)
* bug #1592: makes partial min/max reductions trigger an assertion on inputs ↵Gravatar Gael Guennebaud2019-01-15
| | | | with a zero reduction length (+doc and tests)
* 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.
* fix always true warning with gcc 4.7Gravatar Gael Guennebaud2019-01-15
|
* cleanupGravatar Gael Guennebaud2019-01-15
|
* Merged eigen/eigen into defaultGravatar Rasmus Larsen2019-01-14
|\
| * AVX512 (r)sqrt(double) was mistakenly disabled with clang and othersGravatar Gael Guennebaud2019-01-14
| |
| * Initialize isometric transforms like affine transforms.Gravatar Greg Coombe2019-01-11
| | | | | | | | | | | | The isometric transform, like the affine transform, has an implicit last row of [0, 0, 0, 1]. This was not being properly initialized, as verified by a new test function.
| * Fix StorageIndex FIXME in dense LU solversGravatar Gael Guennebaud2019-01-13
| |
* | Add support for inverse hyperbolic functions.Gravatar Rasmus Munk Larsen2019-01-11
|/ | | | Fix cost of division.
* Rename pones -> ptrue. Use _CMP_TRUE_UQ where appropriate.Gravatar Rasmus Munk Larsen2019-01-09
|\
* | Collapsed revisionGravatar Rasmus Munk Larsen2019-01-09
| | | | | | | | | | | | | | | | | | * Collapsed revision * Add packet up "pones". Write pnot(a) as pxor(pones(a), a). * Collapsed revision * Simplify a bit. * Undo useless diffs. * Fix typo.
| * Add packet up "pones". Write pnot(a) as pxor(pones(a), a).Gravatar Rasmus Munk Larsen2019-01-09
|/
* Merged eigen/eigen into defaultGravatar Rasmus Larsen2019-01-09
|\
| * bug #1652: implements a much more accurate version of vectorized sin/cos. ↵Gravatar Gael Guennebaud2019-01-09
| | | | | | | | | | | | | | This new version achieve same speed for SSE/AVX, and is slightly faster with FMA. Guarantees are as follows: - no FMA: 1ULP up to 3pi, 2ULP up to sin(25966) and cos(18838), fallback to std::sin/cos for larger inputs - FMA: 1ULP up to sin(117435.992) and cos(71476.0625), fallback to std::sin/cos for larger inputs
* | Add support for pcmp_eq and pnot, including for complex types.Gravatar Rasmus Munk Larsen2019-01-07
|/
* Fix unit testGravatar Gael Guennebaud2018-12-27
|
* Implement a faster fix for sin/cos of large entries that also correctly ↵Gravatar Gael Guennebaud2018-12-23
| | | | handle INF input.
* Make sure that psin/pcos return number in [-1,1] for large inputs (though ↵Gravatar Gael Guennebaud2018-12-23
| | | | sin/cos on large entries is quite useless because it's inaccurate)
* Fix plog(+INF): it returned ~87 instead of +INFGravatar Gael Guennebaud2018-12-23
|
* Add regression test for bug #1174Gravatar Gael Guennebaud2018-12-12
|
* bug #1557: fix RealSchur and EigenSolver for matrices with only zeros on the ↵Gravatar Gael Guennebaud2018-12-12
| | | | diagonal.
* Simplify handling of tests that must fail to compile.Gravatar Gael Guennebaud2018-12-12
| | | | Each test is now a normal ctest target, and build properties (compiler+flags) are preserved (instead of starting a new build-dir from scratch).
* bug #1641: fix testing of pandnot and fix pandnot for complex on SSE/AVX/AVX512Gravatar Gael Guennebaud2018-12-08
|
* Fix noise in sparse_basic_3 (numerical cancellation)Gravatar Gael Guennebaud2018-12-08
|
* Fix noise in lu unit testGravatar Gael Guennebaud2018-12-08
|
* fix test regarding AVX512 vectorization of complexes.Gravatar Gael Guennebaud2018-12-06
|
* Implement AVX512 vectorization of std::complex<float/double>Gravatar Gael Guennebaud2018-12-06
|
* bug #785: Make Cholesky decomposition work for empty matricesGravatar Christoph Hertzberg2018-12-03
|
* Several improvements regarding packet-bitwise operations:Gravatar Gael Guennebaud2018-11-30
| | | | | | - add unit tests - optimize their AVX512f implementation - add missing implementations (half, Packet4f, ...)
* bug #1630: fix linspaced when requesting smaller packet size than default one.Gravatar Gael Guennebaud2018-11-28
|
* Extend unit test to recursively check half-packet types and non packet typesGravatar Gael Guennebaud2018-11-26
|
* mergeGravatar Gael Guennebaud2018-11-23
|\
* | check two ctorsGravatar Gael Guennebaud2018-11-23
| |
* | Fix double = bool !Gravatar Gael Guennebaud2018-11-23
| |
| * Add default constructor to Bar to make test compile again with clang-3.8Gravatar Christoph Hertzberg2018-11-23
|/