aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* 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
|
* Fix adjoint unit test: test_isApproxWithRef works for positive quantities only.Gravatar Gael Guennebaud2013-07-15
|
* Stabilize eulerangle unit test.Gravatar Gael Guennebaud2013-07-13
|
* Fix various scalar type conversion warnings.Gravatar Gael Guennebaud2013-07-12
|
* Relax slerp unit testGravatar Gael Guennebaud2013-07-12
|
* Add no_assignment_operator to a few classes that must not be assigned, and ↵Gravatar Gael Guennebaud2013-07-10
| | | | fix a couple of warnings.
* Rename map unit test to mapped_matrix: without splitting unit tests, this ↵Gravatar Gael Guennebaud2013-07-10
| | | | created a "map" binary file in the include path, not a good idea!
* Use numeric_limits to get NaN and infGravatar Gael Guennebaud2013-07-06
|
* Fix bug #611: diag * sparse * diagGravatar Gael Guennebaud2013-07-05
|
* Fix a couple of warnings in unit tests.Gravatar Gael Guennebaud2013-07-05
|
* It's better to check that eigen_assert does raise an assert rather than ↵Gravatar Gael Guennebaud2013-07-01
| | | | testing the definition of NDEBUG
* On windows CE, assert.h defines NDEBUG if DEBUG is not definedGravatar Gael Guennebaud2013-07-01
|
* Fiw bug #553: add support for sparse matrix time sparse self-adjoint view ↵Gravatar Desire NUENTSA2013-06-28
| | | | products
* Fix bug #611: fix const qualifier in cwiseProduct(sparse,dense) and ↵Gravatar Gael Guennebaud2013-06-28
| | | | SparseDiagonalProduct::InnerIterator
* Fix bug #626: add assertion on input ranges for coeff* and insert members ↵Gravatar Gael Guennebaud2013-06-28
| | | | for sparse objects
* 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.
* fix compilation of ArrayBase::transposeInPlaceGravatar Gael Guennebaud2013-06-24
|
* 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 warning typedef XXX locally defined but not usedGravatar Gael Guennebaud2013-06-21
|
* Implement mixed static/dynamic-size .block() (bug #579)Gravatar Jitse Niesen2013-06-18
|
* Fix HouseholderSequence::conjugate() and ::adjoint() and add respective unit ↵Gravatar Gael Guennebaud2013-06-17
| | | | tests.
* Extend sparse-block unit test to explicitly cover bug #584Gravatar Gael Guennebaud2013-06-14
|
* Extend the magnitude range of tested numbers in packet math unit testsGravatar Gael Guennebaud2013-06-13
|
* Fix sparse_basic unit test conflictGravatar Gael Guennebaud2013-06-12
|
* Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Add support with unit test for off-diagonal sparse matrix viewsGravatar Desire NUENTSA2013-06-11
|