aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Make SparseMatrix::coeff() returns a const reference and add a non const ↵Gravatar Gael Guennebaud2014-12-01
| | | | version of SparseMatrix::diagonal()
* Fix Hyperplane::Through(a,b,c) when points are aligned or identical. We use ↵Gravatar Gael Guennebaud2014-11-26
| | | | the stratgey as in Quaternion::setFromTwoVectors.
* bug #903: clean swap API regarding extra enable_if parameters, and add ↵Gravatar Gael Guennebaud2014-11-06
| | | | failtests for swap
* Big 853: replace enable_if in Ref<> ctor by static assertions and add ↵Gravatar Gael Guennebaud2014-11-05
| | | | failtests for Ref<>
* Regression test for (invalid) bug #900. We should make it possible somehow ↵Gravatar Christoph Hertzberg2014-10-31
| | | | to increase the problem size depending on the available RAM.
* Run sparse_basic unit tests also for rectangular matrices.Gravatar Christoph Hertzberg2014-10-31
| | | | TriangularView with UnitDiag does not work properly yet (bug #901)
* Split up some test casesGravatar Christoph Hertzberg2014-10-29
|
* Fixed include in bdcsvd.cppGravatar Christoph Hertzberg2014-10-29
|
* Move D&C SVD to official SVD module.Gravatar Gael Guennebaud2014-10-29
|
* Replace TEST_SET_BUT_UNUSED_VARIABLE by already defined EIGEN_UNUSED_VARIABLEGravatar Christoph Hertzberg2014-10-24
|
* bug #670: add unit test for mapped input in sparse solver.Gravatar Gael Guennebaud2014-10-20
|
* bug #766: Check minimum CUDA versionGravatar Christoph Hertzberg2014-10-20
|
* Addendum to bug #859: pexp(NaN) for double did not return NaN, also, ↵Gravatar Christoph Hertzberg2014-10-20
| | | | | | plog(NaN) did not return NaN. psqrt(NaN) and psqrt(-1) shall return NaN if EIGEN_FAST_MATH==0
* Fix bug #859: pexp(NaN) returned Inf instead of NaNGravatar Gael Guennebaud2014-10-20
|
* Add unit tests for Rotation2D's inverse(), operator*, slerp, and fix ↵Gravatar Gael Guennebaud2014-10-20
| | | | regression wrt explicit ctor change
* Fix bug #894: the sign of LDLT was not re-initialized at each call of compute()Gravatar Gael Guennebaud2014-10-20
|
* Fix SparseLU::absDeterminant and add respective unit testGravatar Gael Guennebaud2014-10-17
|
* Make SVD unit test even more toughGravatar Gael Guennebaud2014-10-15
|
* mergeGravatar Gael Guennebaud2014-10-15
|\
* | Extend svd unit tests to stress problems with duplicated singular values.Gravatar Gael Guennebaud2014-10-15
| |
| * Make cuda_basic test compile again by adding lots of EIGEN_DEVICE_FUNC.Gravatar Christoph Hertzberg2014-10-13
|/ | | | Although the test passes now, there might still be some missing.
* bug #367: fix double copies in atWithInsertion, and add respective unit-testGravatar Gael Guennebaud2014-10-09
|
* Various numerical fixes in D&C SVD: I cannot make it fail with double, but ↵Gravatar Gael Guennebaud2014-10-09
| | | | still need to tune for single precision, and carefully test with duplicated singular values
* D&C SVD: add scaling to avoid overflow, fix handling of fixed size matricesGravatar Gael Guennebaud2014-10-06
|
* Re-enable products with triangular views of sparse matrices: we simply have ↵Gravatar Gael Guennebaud2014-10-06
| | | | to treat them as a sparse matrix.
* Extend unit tests to check uncompressed sparse inputs in sparse solversGravatar Gael Guennebaud2014-10-06
|
* template keyword not allowed before non-template function callGravatar Christoph Hertzberg2014-10-01
|
* Add missing default ctor in Rotation2DGravatar Gael Guennebaud2014-09-30
|
* Avoid `unneeded-internal-declaration' warningGravatar Christoph Hertzberg2014-09-30
|
* bug #884: Copy constructor of Ref shall never malloc, constructing from ↵Gravatar Christoph Hertzberg2014-09-30
| | | | other RefBase shall only malloc if the memory layout is incompatible.
* Fix bug #884: No malloc for zero-sized matrices or for Ref without temporariesGravatar Christoph Hertzberg2014-09-25
|
* Tridiagonalization::diagonal() and ::subDiagonal() did not work. Added unit-testGravatar Christoph Hertzberg2014-09-24
|
* Fix nested_eval<Product<> > which wrongly returned a Product<> expressionGravatar Gael Guennebaud2014-09-24
|
* Add a true ctest unit test for failtestsGravatar Gael Guennebaud2014-09-23
|
* bug #881: make SparseMatrixBase::isApprox(SparseMatrixBase) exploits sparse ↵Gravatar Gael Guennebaud2014-09-22
| | | | computations instead of converting the operands to dense matrices.
* Merged eigen/eigen into defaultGravatar Konstantinos Margaritis2014-09-21
|\
| * Unify unit test for BDC and Jacobi SVD. This reveals some numerical issues ↵Gravatar Gael Guennebaud2014-09-19
| | | | | | | | in BDCSVD.
| * bug #100: add support for explicit scalar to Array conversion (as enable ↵Gravatar Gael Guennebaud2014-09-19
| | | | | | | | implicit conversion is much more tricky)
| * Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
| |
| * workaround ambiguous callGravatar Gael Guennebaud2014-09-16
| |
| * avoid division by 0Gravatar Gael Guennebaud2014-09-16
| |
| * Fix inverse unit test making sure we try to invert an invertible matrixGravatar Gael Guennebaud2014-09-14
| |
| * Favor column major storage for inner productsGravatar Gael Guennebaud2014-09-14
| |
| * Fix /= when using evaluator as in changeset ↵Gravatar Gael Guennebaud2014-09-14
| | | | | | | | 2d90484450f3934db3f5db39ef37967fb9444263
| * merge with default branchGravatar Gael Guennebaud2014-09-14
| |\
| | * Make UpperBidiagonalization accept row-major matrices (bug #769)Gravatar Jitse Niesen2014-09-12
| | | | | | | | | | | | | | | | | | | | | * Give temporary workspace the same storage order as original matrix * Take storage order into account when determining inner stride of rows and columns * Change one test to use a row-major matrix.
| * | Fix compilation of coeff(Index) on sub-inner-panelsGravatar Gael Guennebaud2014-09-08
| | |
| * | Disable a test which had never worked without evalautorsGravatar Gael Guennebaud2014-09-03
| | |
| * | merge with default branchGravatar Gael Guennebaud2014-09-01
| |\ \
| * | | Fix sparse matrix times sparse vector.Gravatar Gael Guennebaud2014-09-01
| | | |