aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* fix unit test in c++03: c++03 does not allow passing local or anonymous enum ↵Gravatar Gael Guennebaud2019-03-18
| | | | as template param
* bug #1692: enable enum as sizes of Matrix and ArrayGravatar Gael Guennebaud2019-03-17
|
* Remove undefined std::complex<int>Gravatar David Tellenbach2019-03-14
|
* PR 593: Add variadtic ctor for DiagonalMatrix with unit testsGravatar David Tellenbach2019-03-14
|
* revert debug stuffGravatar Gael Guennebaud2019-03-14
|
* bug #1684: partially workaround clang's 6/7 bug #40815Gravatar Gael Guennebaud2019-03-13
|
* Enable construction of Ref<VectorType> from a runtime vector.Gravatar Gael Guennebaud2019-03-03
|
* bug #1684: add simplified regression test for respective clang's bug (this ↵Gravatar Gael Guennebaud2019-02-22
| | | | also reveal the same bug in Apples's clang)
* Add fully generic Vector<Type,Size> and RowVector<Type,Size> type aliases.Gravatar Gael Guennebaud2019-02-20
|
* Protect c++11 type alias with Eigen's macro, and add respective unit test.Gravatar Gael Guennebaud2019-02-20
|
* Fix compilation with gcc and remove TR1 stuff.Gravatar Gael Guennebaud2019-02-20
|
* bug #1409: make EIGEN_MAKE_ALIGNED_OPERATOR_NEW* macros empty in c++17 mode:Gravatar Gael Guennebaud2019-02-20
| | | | | - this helps clang 5 and 6 to support alignas in STL's containers. - this makes the public API of our (and users) classes cleaner
* bug #899: make sparseqr unit test more stable by 1) trying with larger ↵Gravatar Gael Guennebaud2019-02-19
| | | | threshold and 2) relax rank computation for rank-deficient problems.
* Fix C++17 compilationGravatar Gael Guennebaud2019-02-19
|
* fix unit compilation in c++17: std::ptr_fun has been removed.Gravatar Gael Guennebaud2019-02-19
|
* bug #1046: add unit tests for correct propagation of alignment through ↵Gravatar Gael Guennebaud2019-02-19
| | | | std::alignment_of
* Add unit test for LinSpaced and complex numbers.Gravatar Gael Guennebaud2019-02-18
|
* Fix regression: .conjugate() was popped out but not re-introduced.Gravatar Gael Guennebaud2019-02-18
|
* Set cost of conjugate to 0 (in practice it boils down to a no-op).Gravatar Gael Guennebaud2019-02-18
| | | | | This is also important to make sure that A.conjugate() * B.conjugate() does not evaluate its arguments into temporaries (e.g., if A and B are fixed and small, or * fall back to lazyProduct)
* GEMM: catch all scalar-multiple variants when falling-back to a coeff-based ↵Gravatar Gael Guennebaud2019-02-18
| | | | | | | product. Before only s*A*B was caught which was both inconsistent with GEMM, sub-optimal, and could even lead to compilation-errors (https://stackoverflow.com/questions/54738495).
* Enable unit tests of PartialPivLU on fixed size matrices, and increase ↵Gravatar Gael Guennebaud2019-02-11
| | | | tested matrix size (blocking was not tested!)
* bug #1669: fix PartialPivLU/inverse with zero-sized matrices.Gravatar Gael Guennebaud2019-01-29
|
* bug #1574: implement "sparse_matrix =,+=,-= diagonal_matrix" with smart ↵Gravatar Gael Guennebaud2019-01-28
| | | | insertion strategies of missing diagonal coeffs.
* bug #1672: fix unit test compilation with MSVC by adding overloads of ↵Gravatar Gael Guennebaud2019-01-28
| | | | test_is* for long long (and factorize copy/paste code through a macro)
* Avoid `I` as an identifier, since it may clash with the C-header complex.hGravatar Christoph Hertzberg2019-01-25
|
* More thoroughly check variadic template ctor of fixed-size vectorsGravatar Gael Guennebaud2019-01-24
|
* 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.