aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Extend sizeof unit testGravatar Gael Guennebaud2014-03-07
|
* Regression test for bug #752Gravatar Christoph Hertzberg2014-02-27
|
* Remove early termination in LDLT: the zero on the diagonal of the input ↵Gravatar Gael Guennebaud2014-02-26
| | | | matrix does not mean the matrix is not full rank. Typical examples are matrices coming from LS with linear equality constraints.
* Fix bug #748 - array_5 test fails for seed 1392781168.Gravatar Jitse Niesen2014-02-24
|
* Relaxed umeyama test. Problem was ill-posed if linear part was scaled with ↵Gravatar Christoph Hertzberg2014-02-17
| | | | very small number. This should fix bug #744.
* Fix support for row (resp. column) of a column-major (resp. row-major) ↵Gravatar Gael Guennebaud2014-02-17
| | | | sparse matrix
* Fix sparse_product/sparse_extra unit testsGravatar Gael Guennebaud2014-02-17
|
* Fix a few Index to int buggy conversionsGravatar Gael Guennebaud2014-02-15
|
* reduce false negative in the qr unit testGravatar Gael Guennebaud2014-02-14
|
* Fix stable_norm unit test for complexesGravatar Gael Guennebaud2014-02-13
|
* Fix bug #740: overflow issue in stableNormGravatar Gael Guennebaud2014-02-13
|
* fix compilation of Transform * UniformScalingGravatar Gael Guennebaud2014-02-12
|
* Fix bug #736: LDLT isPositive returns false for a positive semidefinite matrixGravatar Jitse Niesen2014-02-06
| | | | Add unit test covering this case.
* NVCC: add more debug infoGravatar Gael Guennebaud2014-01-24
|
* NVCC: no need to enforce host compilerGravatar Gael Guennebaud2014-01-24
|
* NVCC: fix closed-form eigenvalue decomposition, workaround gcc4.7/nvcc5.5 issueGravatar Gael Guennebaud2014-01-24
|
* Make geo_hyperplane unit test more stable (bug #539)Gravatar Gael Guennebaud2014-01-11
|
* Fix bug #609: Euler angles are in Range [0:pi]x[-pi:pi]x[-pi:pi].Gravatar Christoph Hertzberg2013-11-29
| | | | Now the unit test verifies this (also that it is bijective in this range).
* extend Map unit test to check buffers allocated on the stackGravatar Gael Guennebaud2013-11-21
|
* Fix FullPivHouseholderQR ctors for non squared fixed size matrix typesGravatar Gael Guennebaud2013-11-19
|
* Add scaling in JacobiSVD to avoid overflowsGravatar Gael Guennebaud2013-11-19
|
* Implement boolean reductions for zero-sized objectsGravatar Christoph Hertzberg2013-11-13
|
* Add missing nonZeros() overload in Block<SparseMatrixBase<>>Gravatar Gael Guennebaud2013-11-10
|
* Fix stupid mistake in CMakeLists.txtGravatar Gael Guennebaud2013-11-07
|
* Add an option to test evaluators globallyGravatar Gael Guennebaud2013-11-07
|
* bug #99: refactor assignment and compound assignment mechanism through ↵Gravatar Gael Guennebaud2013-11-06
| | | | | | | | | | "assignment functors" and "assignement kernels". The former is very low level and generic. The later abstarct the former for dense expressions. This refactoring permits to get rid of the very ugly SwapWrapper and SelfCwiseBinaryOp classes. In the future, this will also permit to simplify all these evaluation loops and perhaps to reuse them for reduxions. That will also permit to specialize for operations like expr1 += expr2 outside Eigen, and so for any kind of expressions (dense, sparse, tensor, etc.)
* Add minimalistic unit tests for NVCC supportGravatar Gael Guennebaud2013-11-05
|
* Check for minimal norm solutionsGravatar Gael Guennebaud2013-11-03
|
* JacobiSVD: move from Lapack to Matlab strategy for the default thresholdGravatar Gael Guennebaud2013-11-03
|
* Added comparisons scalar to array (previously only the array to scalar was ↵Gravatar Christoph Hertzberg2013-10-17
| | | | | | possible) (Fixes bug #147) Extended the unit test for that
* Allow .conservativeResize(rows,cols) on vectorsGravatar Gael Guennebaud2013-10-16
|
* bug #679: add respective unit testGravatar Gael Guennebaud2013-10-15
|
* Fix bug #654: allow implicit transposition in Array to Matrix and Matrix to ↵Gravatar Gael Guennebaud2013-09-07
| | | | Array constructors
* Switched to MPL2 license.Gravatar Hauke Heibel2013-08-12
|
* Fix cost evaluation of partial reduxions -> improve performance of ↵Gravatar Gael Guennebaud2013-08-11
| | | | vectorwise/replicate expressions involving partial reduxions
* Ref<> objects must be nested by reference because they potentially store a ↵Gravatar Gael Guennebaud2013-08-11
| | | | temporary object
* Added copy constructor and assignment to DenseStorage.Gravatar Hauke Heibel2013-08-10
| | | | | Required by the standard even when its not used but elided. Added a test for DenseStorage copying and assignment.
* Removed a warning when rvalue references are not unsed.Gravatar Hauke Heibel2013-08-02
|
* Added move support for Matrix and Array.Gravatar Hauke Heibel2013-08-02
| | | | | | Added EIGEN_HAVE_RVALUE_REFERENCES define. Added move unit tests. Removed superfluous 'inline' declarations in DenseStorage.
* reduce cancellation probablityGravatar Gael Guennebaud2013-08-02
|
* Removed unused testing files.Gravatar Hauke Heibel2013-08-01
|
* Backed out changeset: e41bc6cbbf9863c686e464d4479b4f562e5649c3Gravatar Hauke Heibel2013-07-31
|
* Removed unused test files.Gravatar Hauke Heibel2013-07-31
|
* Enable support for minimal rebuilds.Gravatar Hauke Heibel2013-07-31
|
* bug #502: add bool intersects() methods to AlignedBoxGravatar Sven Strothoff2013-07-28
|
* Previous isFinite->hasNonFinite change was broken. After discussion let's ↵Gravatar Gael Guennebaud2013-07-18
| | | | rename it to allFinite
* Fix bug #326 : expose tridiagonal eigensolver to end-users through ↵Gravatar Desire NUENTSA2013-07-18
| | | | ComputeFromTridiagonal()
* Rename isFinite to hasNonFinite to avoid future naming collisions.Gravatar Gael Guennebaud2013-07-17
|
* SparseLU: make COLAMDOrdering the default ordering method.Gravatar Gael Guennebaud2013-07-17
|
* Fix testing issues with x87 extra precision.Gravatar Gael Guennebaud2013-07-16
|