aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Cholesky
Commit message (Collapse)AuthorAge
...
* Make constructors explicit if they could lead to unintended implicit conversionGravatar Christoph Hertzberg2014-09-23
|
* Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
|
* merge with default branchGravatar Gael Guennebaud2014-07-18
|\
| * bug #397: add a warning for 64 to 32 bit integer conversion and fix many of ↵Gravatar Gael Guennebaud2014-07-17
| | | | | | | | these warning by splitting the index type used for storage and as size/coefficient indexes in PermutationMatrix and Transpositions.
* | merge with default branchGravatar Gael Guennebaud2014-07-10
|\|
| * Fix LDLT with semi-definite complex matrices: owing to round-off errors, the ↵Gravatar Gael Guennebaud2014-07-08
| | | | | | | | diagonal was not real. Also exploit the fact that the diagonal is real in the rest of LDLT
| * Fix unused typedef warningGravatar Christoph Hertzberg2014-07-04
| |
| * LDLT is not rank-revealing, so we should not attempt to use the biggest ↵Gravatar Gael Guennebaud2014-07-02
| | | | | | | | diagonal elements as thresholds.
* | merge with default branchGravatar Gael Guennebaud2014-07-02
|\|
| * Removed the deprecated EIGEN2_SUPPORT, as previously announced. A ↵Gravatar Christoph Hertzberg2014-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 branchGravatar Gael Guennebaud2014-06-20
|\|
| * doc: Add references to Cholesky methods in SelfAdjointView.Gravatar Jitse Niesen2014-04-07
| |
* | merge default and evaluator branchesGravatar Gael Guennebaud2014-03-12
|\|
* | Port Cholesky module to evaluatorsGravatar Gael Guennebaud2014-03-11
| |
| * Remove early termination in LDLT: the zero on the diagonal of the input ↵Gravatar Gael Guennebaud2014-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 matrixGravatar Jitse Niesen2014-02-06
| | | | Add unit test covering this case.
* Disable some shortcuts with nvccGravatar Gael Guennebaud2013-07-31
|
* merge with main branchGravatar Gael Guennebaud2013-07-17
|\
| * Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
| |
| * Fix bug #608: the sign computation in LDLT was brokenGravatar Gael Guennebaud2013-06-09
| |
* | merge with default branchGravatar Gael Guennebaud2013-04-19
|\|
| * Fix a couple of int versus Index issues.Gravatar Gael Guennebaud2013-04-09
| |
* | Port SelfCwiseBinaryOp and Dot.h to nvcc, fix portability issue with ↵Gravatar Gael Guennebaud2013-04-05
| | | | | | | | std::min/max
| * bug #482: pass scalar arguments by const references. Still remains a few ↵Gravatar Gael Guennebaud2013-02-25
|/ | | | cases that might affect the ABI (see the bug entry)
* Fix bug #535: unused variable warningsGravatar Gael Guennebaud2012-12-16
|
* Fix bug #314:Gravatar Gael Guennebaud2012-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.Gravatar Jitse Niesen2012-07-22
| | | | See http://forum.kde.org/viewtopic.php?f=74&t=106942
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Fix bug #480: workaround the Android NDK defining isfinite as a macroGravatar Gael Guennebaud2012-07-05
|
* fix a warning and formattingGravatar Gael Guennebaud2012-06-15
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* fix compilation of "somedensematrix.llt().matrixL().transpose()" (missing ↵Gravatar Gael Guennebaud2012-04-10
| | | | constness on the return types)
* fix compilation with ICCGravatar Gael Guennebaud2012-03-30
|
* fix MKL interface with LLT::rankUpdateGravatar Gael Guennebaud2012-02-28
|
* fix several const qualifier issues: double ones, meaningless ones, some ↵Gravatar Gael Guennebaud2012-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)Gravatar Gael Guennebaud2012-01-31
|
* std::isfinite is non standardGravatar Gael Guennebaud2012-01-23
|
* LLT: improve rankUpdate to support downdates,Gravatar Gael Guennebaud2012-01-23
| | | | | LDLT: add the missing info() function, improve unit testing of rankUpdate()
* remove redundant declaration (fix compilation with clang 3.0)Gravatar Gael Guennebaud2011-12-11
|
* bug #352:properly cast constantsGravatar Igor Krivenko2011-12-09
|
* fix compilation with EIGEN_NO_DEBUGGravatar Gael Guennebaud2011-12-09
|
* feature 319: fix LDLT::rankUpdate for complex/upper, simply the algortihm, ↵Gravatar Gael Guennebaud2011-12-09
| | | | update copyrights
* feature 319: Add update and downdate functionality to LDLTGravatar Tim Holy2011-12-09
|
* 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.
* Add simple example on how to compute Cholesky decomposition.Gravatar Jitse Niesen2011-11-07
|
* Fix LDLT::solve() if matrix singular but solution exists (bug #241).Gravatar Jitse Niesen2011-09-11
| | | | Clarify this in docs and add regression test.
* protect calls to min and max with parentheses to make Eigen compatible with ↵Gravatar Gael Guennebaud2011-07-21
| | | | | | | default windows.h (transplanted from 49b6e9143e1d74441924c0c313536e263e12a55c )
* fix LLT rank one update for "upper" hermitian matricesGravatar Gael Guennebaud2011-07-19
|
* Fix compilation of cholesky rank update test.Gravatar Jitse Niesen2011-06-24
|
* New feature: add rank one update in Cholesky decompositionGravatar Gael Guennebaud2011-06-20
|