Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Improve numerical accuracy in LLT and triangular solve by using true scalar ↵ | Gael Guennebaud | 2015-10-18 |
| | | | | divisions (instead of x * (1/y)) | ||
* | Generalize matrix ctor and compute() method of dense decomposition to 1) ↵ | Gael Guennebaud | 2015-09-07 |
| | | | | limit temporaries, 2) forward expressions to nested decompositions, 3) fix ambiguous ctor instanciation for square decomposition | ||
* | bug #1057: fix a declaration missmatch with MSVC | Gael Guennebaud | 2015-09-02 |
| | |||
* | typo | Gael Guennebaud | 2015-06-15 |
| | |||
* | bug #705: fix handling of Lapack potrf return code | Gael Guennebaud | 2015-06-05 |
| | |||
* | minor documentation fixes | Gael Guennebaud | 2015-06-05 |
| | |||
* | bug #949: add static assertion for incompatible scalar types in dense ↵ | Gael Guennebaud | 2015-03-13 |
| | | | | end-user decompositions. | ||
* | Remove deprecated usage of expr::Index. | Gael Guennebaud | 2015-02-16 |
| | |||
* | bug #877, bug #572: Introduce a global Index typedef. Rename Sparse*::Index ↵ | Christoph Hertzberg | 2014-12-04 |
| | | | | to StorageIndex, make Dense*::StorageIndex an alias to DenseIndex. Overall this commit gets rid of all Index conversion warnings. | ||
* | bug #701: workaround (min) and (max) blocking ADL by introducing ↵ | Gael Guennebaud | 2014-10-20 |
| | | | | numext::mini and numext::maxi internal functions and a EIGEN_NOT_A_MACRO macro. | ||
* | Fix bug #894: the sign of LDLT was not re-initialized at each call of compute() | Gael Guennebaud | 2014-10-20 |
| | |||
* | Make constructors explicit if they could lead to unintended implicit conversion | Christoph Hertzberg | 2014-09-23 |
| | |||
* | Remove deprecated code not used by evaluators | Gael Guennebaud | 2014-09-18 |
| | |||
* | merge with default branch | Gael Guennebaud | 2014-07-18 |
|\ | |||
| * | bug #397: add a warning for 64 to 32 bit integer conversion and fix many of ↵ | Gael Guennebaud | 2014-07-17 |
| | | | | | | | | these warning by splitting the index type used for storage and as size/coefficient indexes in PermutationMatrix and Transpositions. | ||
* | | merge with default branch | Gael Guennebaud | 2014-07-10 |
|\| | |||
| * | Fix LDLT with semi-definite complex matrices: owing to round-off errors, the ↵ | Gael Guennebaud | 2014-07-08 |
| | | | | | | | | diagonal was not real. Also exploit the fact that the diagonal is real in the rest of LDLT | ||
| * | Fix unused typedef warning | Christoph Hertzberg | 2014-07-04 |
| | | |||
| * | LDLT is not rank-revealing, so we should not attempt to use the biggest ↵ | Gael Guennebaud | 2014-07-02 |
| | | | | | | | | diagonal elements as thresholds. | ||
* | | merge with default branch | Gael Guennebaud | 2014-07-02 |
|\| | |||
| * | Removed the deprecated EIGEN2_SUPPORT, as previously announced. A ↵ | Christoph Hertzberg | 2014-07-01 |
| | | | | | | | | compilation error is raised, if this compile-switch is defined. The documentation references to the corresponding pages from Eigen3.2 now. Also, the Eigen2 testsuite has been removed. | ||
* | | merge with default branch | Gael Guennebaud | 2014-06-20 |
|\| | |||
| * | doc: Add references to Cholesky methods in SelfAdjointView. | Jitse Niesen | 2014-04-07 |
| | | |||
* | | merge default and evaluator branches | Gael Guennebaud | 2014-03-12 |
|\| | |||
* | | Port Cholesky module to evaluators | Gael Guennebaud | 2014-03-11 |
| | | |||
| * | Remove early termination in LDLT: the zero on the diagonal of the input ↵ | Gael Guennebaud | 2014-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 #736: LDLT isPositive returns false for a positive semidefinite matrix | Jitse Niesen | 2014-02-06 |
| | | | | Add unit test covering this case. | ||
* | Disable some shortcuts with nvcc | Gael Guennebaud | 2013-07-31 |
| | |||
* | merge with main branch | Gael Guennebaud | 2013-07-17 |
|\ | |||
| * | Fix bug #314: move remaining math functions from internal to numext namespace | Gael Guennebaud | 2013-06-10 |
| | | |||
| * | Fix bug #608: the sign computation in LDLT was broken | Gael Guennebaud | 2013-06-09 |
| | | |||
* | | merge with default branch | Gael Guennebaud | 2013-04-19 |
|\| | |||
| * | Fix a couple of int versus Index issues. | Gael Guennebaud | 2013-04-09 |
| | | |||
* | | Port SelfCwiseBinaryOp and Dot.h to nvcc, fix portability issue with ↵ | Gael Guennebaud | 2013-04-05 |
| | | | | | | | | std::min/max | ||
| * | bug #482: pass scalar arguments by const references. Still remains a few ↵ | Gael Guennebaud | 2013-02-25 |
|/ | | | | cases that might affect the ABI (see the bug entry) | ||
* | Fix bug #535: unused variable warnings | Gael Guennebaud | 2012-12-16 |
| | |||
* | Fix bug #314: | Gael Guennebaud | 2012-11-06 |
| | | | | | - remove most of the metaprogramming kung fu in MathFunctions.h (only keep functions that differs from the std) - remove the overloads for array expression that were in the std namespace | ||
* | LDLT: Report sign consistent with D for indefinite matrices. | Jitse Niesen | 2012-07-22 |
| | | | | See http://forum.kde.org/viewtopic.php?f=74&t=106942 | ||
* | Automatic relicensing to MPL2 using Keirs script. Manual fixup follows. | Benoit Jacob | 2012-07-13 |
| | |||
* | Fix bug #480: workaround the Android NDK defining isfinite as a macro | Gael Guennebaud | 2012-07-05 |
| | |||
* | fix a warning and formatting | Gael Guennebaud | 2012-06-15 |
| | |||
* | Get rid of include directives inside namespace blocks (bug #339). | Jitse Niesen | 2012-04-15 |
| | |||
* | fix compilation of "somedensematrix.llt().matrixL().transpose()" (missing ↵ | Gael Guennebaud | 2012-04-10 |
| | | | | constness on the return types) | ||
* | fix compilation with ICC | Gael Guennebaud | 2012-03-30 |
| | |||
* | fix MKL interface with LLT::rankUpdate | Gael Guennebaud | 2012-02-28 |
| | |||
* | fix several const qualifier issues: double ones, meaningless ones, some ↵ | Gael Guennebaud | 2012-02-03 |
| | | | | | | missing ones, etc. (note that const qualifiers are set by internall::nested) | ||
* | fix static inline versus inline static issues (the former is the correct order) | Gael Guennebaud | 2012-01-31 |
| | |||
* | std::isfinite is non standard | Gael Guennebaud | 2012-01-23 |
| | |||
* | LLT: improve rankUpdate to support downdates, | Gael Guennebaud | 2012-01-23 |
| | | | | | LDLT: add the missing info() function, improve unit testing of rankUpdate() | ||
* | remove redundant declaration (fix compilation with clang 3.0) | Gael Guennebaud | 2011-12-11 |
| |