aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/CMakeLists.txt
Commit message (Collapse)AuthorAge
* Fix bug #760: complete Eigen's lapack interface with default Lapack for SPQR ↵Gravatar Gael Guennebaud2014-03-12
| | | | if there is no fortran compiler.
* NVCC: no need to enforce host compilerGravatar Gael Guennebaud2014-01-24
|
* Fix stupid mistake in CMakeLists.txtGravatar Gael Guennebaud2013-11-07
|
* Add an option to test evaluators globallyGravatar Gael Guennebaud2013-11-07
|
* Add minimalistic unit tests for NVCC supportGravatar Gael Guennebaud2013-11-05
|
* 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.
* 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.
* Enable support for minimal rebuilds.Gravatar Hauke Heibel2013-07-31
|
* 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!
* Big 564: add hasNaN and isFinite membersGravatar Gael Guennebaud2013-04-16
|
* Add Official/Unsupported labels to unit tests and add a ctest driver to ↵Gravatar Gael Guennebaud2013-03-20
| | | | submit subprojects to cdash
* Add a unit test for Ref.h and fix an extra copy.Gravatar Gael Guennebaud2013-02-26
|
* Unit test for the Metis Ordering packageGravatar Desire NUENTSA2013-01-21
|
* Add a sparse QR factorization and update the elimination tree in SparseLUGravatar Desire NUENTSA2013-01-11
|
* Move work in progress Levenberg Marquardt module in unsupportedGravatar Gael Guennebaud2012-12-08
|
* Add tests for dense and sparse levenberg-MarquardtGravatar Desire NUENTSA2012-12-07
|
* Add support for Sparse QR factorizationGravatar Desire NUENTSA2012-11-12
|
* merge Sparse LU branchGravatar Desire NUENTSA2012-09-07
|\
| * Add unit testsGravatar Desire NUENTSA2012-08-03
| |
* | Add a preliminary GeneralizedEigenSolver computing the eigenvalues of Av=lBv ↵Gravatar Gael Guennebaud2012-07-26
| | | | | | | | | | | | with A and B general real matrices. Currently only the eigenvalues are reported.
* | Add a RealQZ class: a generalized Schur decomposition for real matricesGravatar Alexey Korepanov2012-07-11
| |
* | resurrect expression evaluatorsGravatar Gael Guennebaud2012-06-22
| |
* | clean the support for testing existing sparse problemsGravatar Gael Guennebaud2012-06-07
|/
* Correct a small bug in sparse_solverGravatar Desire NUENTSA2012-03-29
|
* modify the unit tests of sparse linear solvers to enable tests on real ↵Gravatar Desire NUENTSA2012-03-29
| | | | matrices, from MatrixMarket for instance
* Adding an interface to PaStiX, the multithreaded and distributed linear solverGravatar Desire NUENTSA2012-03-08
|
* Remove evaluators for 2.1 release.Gravatar Jitse Niesen2011-12-14
| | | | We plan to re-instate them when we branch 2.2 (see bug #388).
* add cholmod_support unit testsGravatar Gael Guennebaud2011-12-10
|
* Intel(R) MKL support added.Gravatar karturov2011-12-05
| | | | | | | | | | * * * License disclaimer changed to BSD license for MKL_support.h * * * Pardiso support fixed, test added. blas/lapack tests fixed: Scalar parameter was added in Cholesky, product_matrix_vector_triangular remaned to triangular_matrix_vector_product. * * * PARDISO test was added physically.
* remove GSL dependency in the unit testsGravatar Gael Guennebaud2011-12-01
|
* Bugs 157 and 377 - General tightening/testing of vectorwise ops:Gravatar Benoit Jacob2011-11-18
| | | | | | | | | | | | | | | | | | * add lots of static assertions making it very explicit when all these ops are supposed to work: ** all ops require the rhs vector to go in the right direction ** all ops already require that the lhs and rhs are of the same kind (matrix vs vector) otherwise we'd have to do complex work ** multiplicative ops (introduced Kibeom's patch) are restricted to arrays, if only because for matrices they could be ambiguous. * add a new test, vectorwiseop.cpp. * these compound-assign operators used to be implemented with for loops: for(Index j=0; j<subVectors(); ++j) subVector(j).array() += other.derived().array(); This didn't seem to be needed; replaced by using expressions like operator+ and operator- did.
* move sparse solvers from unsupported/ to main Eigen/ and remove the "not ↵Gravatar Gael Guennebaud2011-11-12
| | | | stable yet" warning
* bug #363 - add test for integer overflow in size computationsGravatar Benoit Jacob2011-10-16
|
* add a unit test for permutation applied to sparse objectsGravatar Gael Guennebaud2011-10-11
|
* bug #225: add a unit test for memory leakGravatar Gael Guennebaud2011-05-23
|
* automatically generate the CALL_SUBTEST_* macrosGravatar Gael Guennebaud2011-03-28
|
* import evaluator worksGravatar Gael Guennebaud2011-03-23
|
* add test for EIGEN_DONT_ALIGN and EIGEN_DONT_ALIGN_STATICALLY, cf recent ↵Gravatar Benoit Jacob2011-03-10
| | | | bugs (214 etc) and changeset 56818d907ed08bcc831da1e990dbc105fb681866
* make check no test everything - also rm the EigenTesting cmake sub-projectGravatar Gael Guennebaud2011-02-17
|
* add Map static methods taking Strides, add test checking for compilation errorsGravatar Benoit Jacob2011-02-03
|
* relax Matrix/Array(Index) ctors to allow size 0, add test.Gravatar Benoit Jacob2011-02-01
|
* import eigen2 test suite. enable by defining EIGEN_TEST_EIGEN2Gravatar Benoit Jacob2011-01-19
| | | | only test_prec_inverse4x4 is fixed at the moment. now need to go over all those tests.
* fix EIGEN_TEST_NOQT (reported by Philippe Hamelin)Gravatar Thomas Capricelli2011-01-14
|
* generalize our internal rank K update routine to support more general A*B ↵Gravatar Gael Guennebaud2010-11-10
| | | | | | product while evaluating only one triangular part and make it available via, e.g.: R.triangularView<Lower>() += s * A * B;
* fix bug #92 - we were doing stupid things when passing the list of libraries ↵Gravatar Benoit Jacob2010-10-28
| | | | to link to.
* Added stddeque unit test dervied from the stdlist test.Gravatar Hauke Heibel2010-10-16
|
* remove SVD class (was bad code taked from elsewhere)Gravatar Benoit Jacob2010-10-12
| | | | | Use JacobiSVD for now. We do plan to reintroduce a bidiagonalizing SVD asap.
* add Jacobi unit test. jacobi_5 fails, exposing bug #39.Gravatar Benoit Jacob2010-10-12
|
* Removed debug outputs.Gravatar Hauke Heibel2010-07-28
|
* Fixed annoying CMake - Qt warning.Gravatar Hauke Heibel2010-07-03
|