aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Re-enbale detection of min/max parentheses protection, and re-enable ↵Gravatar Gael Guennebaud2015-02-27
| | | | mpreal_support unit test.
* Fix two trivial warningsGravatar Christoph Hertzberg2015-02-22
|
* I can reproduce any problems that justified this hack. However it makes ↵Gravatar Christoph Hertzberg2015-02-21
| | | | builds fail in C++11 mode.
* With C++11 Matrix<float> + Matrix<complex<float>> does not even compileGravatar Gael Guennebaud2015-02-20
|
* In C++11 destructors do not throw by default (fix CommaInitializer unit test)Gravatar Gael Guennebaud2015-02-20
|
* Fix a C++11 compilation issue in unit testGravatar Gael Guennebaud2015-02-19
|
* Fix some calls to result_of on binary functors as unary ones.Gravatar Gael Guennebaud2015-02-19
|
* Fix a regression when using OpenMP, and fix bug #714: the number of threads ↵Gravatar Gael Guennebaud2015-02-18
| | | | might be lower than the number of requested ones
* Workaround dead store warnings in unit tests.Gravatar Gael Guennebaud2015-02-18
|
* Removed redundant typedef which confused old gcc versions.Gravatar Christoph Hertzberg2015-02-18
|
* Extend sparse-determinant unitestsGravatar Gael Guennebaud2015-02-16
|
* Fix SparseLU::signDeterminant() method, and add a SparseLU::determinant() ↵Gravatar Gael Guennebaud2015-02-16
| | | | method.
* bug #897: fix regression in BiCGSTAB(mat) ctor (an all other iterative solvers).Gravatar Gael Guennebaud2015-02-16
| | | | Add respective regression unit test.
* Fix many long to int conversion warnings:Gravatar Gael Guennebaud2015-02-16
| | | | | | - fix usage of Index (API) versus StorageIndex (when multiple indexes are stored) - use StorageIndex(val) when the input has already been check - use internal::convert_index<StorageIndex>(val) when val is potentially unsafe (directly comes from user input)
* Index refactoring: StorageIndex must be used for storage only (and locally ↵Gravatar Gael Guennebaud2015-02-13
| | | | when it make sense). In all other cases use the global Index type.
* Merge Index-refactoring branch with default, fix PastixSupport, remove some ↵Gravatar Gael Guennebaud2015-02-13
|\ | | | | | | useless typedefs
| * merge Tensor module within Eigen/unsupported and update gemv BLAS wrapperGravatar Gael Guennebaud2015-02-12
| |\
| * | Allows Lower|Upper as a template argument of CG and MINRES: in this case the ↵Gravatar Gael Guennebaud2015-02-10
| | | | | | | | | | | | full matrix will be considered.
| * | bug #897: makes iterative sparse solvers use a Ref<SparseMatrix> instead of ↵Gravatar Gael Guennebaud2015-02-09
| | | | | | | | | | | | a SparseMatrix pointer. This fixes usage of iterative solvers with a Map<SparseMatrix>.
| * | Make Block<SparseMatrix> inherit SparseCompressedBase in the case of an ↵Gravatar Gael Guennebaud2015-02-09
| | | | | | | | | | | | inner-panels and fix valuePtr() innerIndexPtr()
| * | Cleaning and add more unit tests for Ref<SparseMatrix> and Map<SparseMatrix>Gravatar Gael Guennebaud2015-02-09
| | |
| * | Add a Ref<SparseMatrix> specialization.Gravatar Gael Guennebaud2015-02-07
| | |
| | * Pulled the latest changes from the trunkGravatar Benoit Steiner2015-02-06
| | |\ | | |/ | |/|
| * | Enable vectorization of transposeInPlace for PacketSize x PacketSize matricesGravatar Gael Guennebaud2015-01-26
| | |
| * | Add support for dense ?= diagonalGravatar Gael Guennebaud2015-01-24
| | |
| * | Fix missing evaluator in outer-productGravatar Gael Guennebaud2015-01-13
| | |
| * | Fix false negatives in geo_transformations unit testsGravatar Gael Guennebaud2014-12-16
| | |
| * | Fix wrong negative in nullary unit test when extended precision is used (FPU).Gravatar Gael Guennebaud2014-12-16
| | |
* | | bug #877, bug #572: Introduce a global Index typedef. Rename Sparse*::Index ↵Gravatar Christoph Hertzberg2014-12-04
|/ / | | | | | | to StorageIndex, make Dense*::StorageIndex an alias to DenseIndex. Overall this commit gets rid of all Index conversion warnings.
* | 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
| |
| * Made the blocking computation aware of the l3 cacheGravatar Benoit Steiner2014-10-15
| | | | | | | | Also optimized the blocking parameters to take into account the number of threads used for a computation
* | 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
| | |