aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
| | * Improve further the accuracy of JacobiSVD wrt under/overflow while improving ↵Gravatar Gael Guennebaud2014-09-10
| | | | | | | | | | | | speed for small matrices (hypot is very slow).
| | * mat/=scalar was transformed into mat*=(1/scalar) thus laking accuracy. This ↵Gravatar Gael Guennebaud2014-09-10
| | | | | | | | | | | | was also inconsistent with mat = mat/scalar.
| | * Add one more regression test for bug #791.Gravatar Gael Guennebaud2014-09-10
| | |
| | * Fix bug #791: infinite loop in JacobiSVD in the presence of NaN.Gravatar Gael Guennebaud2014-09-10
| | |
| | * ArrayWrapper and MatrixWrapper classes should not be nested by reference.Gravatar Gael Guennebaud2014-09-10
| | |
| | * fix for MKL_BLAS not defined in MKL 11.2Gravatar Yan Zhou2014-09-08
| | |
| | * Fix bug #822: outer products needed linear access, and add respective unit testsGravatar Gael Guennebaud2014-09-08
| | |
| | * Runtime alignement is not possible if AlignedOnScalar is not true (e.g., for ↵Gravatar Gael Guennebaud2014-09-08
| | | | | | | | | | | | complex<double>)
| | * bug #619: workaround MSVC 2008 implementing std::abs for int only on WINCEGravatar Gael Guennebaud2014-09-07
| | |
| | * bug #804: copy group__TopicUnalignedArrayAssert.html to ↵Gravatar Gael Guennebaud2014-09-07
| | | | | | | | | | | | TopicUnalignedArrayAssert.html as the second is linked to by old Eigen versions.
| | * Doc: difference between array and matrix cosine etc (bug #830)Gravatar Jitse Niesen2014-09-06
| | |
| | * Replace asm by __asm__ (bug #873)Gravatar Jitse Niesen2014-09-06
| | |
| | * Update reference value for testNistLanczos1 testGravatar Gael Guennebaud2014-09-02
| | |
| | * Remove LM::sqrt_() member function in favor of a shortcut for sqrt(epsilon())Gravatar Gael Guennebaud2014-09-02
| | |
| | * relax some LM unit testsGravatar Gael Guennebaud2014-09-02
| | |
| | * Fix hypot() and hypotNorm() wrt NaN and INF values.Gravatar Gael Guennebaud2014-09-02
| | |
| | * Fix blueNorm wrt NaN/INF.Gravatar Gael Guennebaud2014-09-02
| | |
| | * Fix stableNorm() with respect to NaN and inf, and add respective unit tests. ↵Gravatar Gael Guennebaud2014-09-02
| | | | | | | | | | | | blueNorm() and hypotNorm() are broken wrt to NaN/inf
| | * Optimization: "matrix<complex> * real" did not call the special path and the ↵Gravatar Gael Guennebaud2014-09-02
| | | | | | | | | | | | real was converted to a complex. Add respective unit test to avoid future regression.
| | * Add examples for hnormalized and homogenous (fix bug #846)Gravatar Gael Guennebaud2014-09-02
| | |
| | * Reafctoring in D&C SVD unsupported module: clean and merge the SVDBase class ↵Gravatar Gael Guennebaud2014-09-01
| | | | | | | | | | | | to Eigen/SVD, rm copy/pasted JacobiSVD.h file
| | * Fix regression is sparse-sparse productGravatar Gael Guennebaud2014-09-01
| | |
| | * bug #871: fix compilation on ARM/Neon regarding __has_builtin usageGravatar Gael Guennebaud2014-09-01
| | |
| | * Merged in georg_drenkhahn/eigen/georg_d/fix_warn_minmax (pull request PR-81)Gravatar Gael Guennebaud2014-08-29
| | |\ | | | | | | | | | | | | Fix for warning on macro definitions of max() and min() in test.h
| | * | Optimization in sparse-sparse matrix products for small onesGravatar Gael Guennebaud2014-08-29
| | | |
| | * | Fix SparseVector::coeffRef(i,j) and add missing SparseVector::insert*UnorderedGravatar Gael Guennebaud2014-08-29
| | | |
| | * | In sparse matrix product, enable sorted insertion when doing two ↵Gravatar Gael Guennebaud2014-08-29
| | | | | | | | | | | | | | | | transposition is defenitely not optimal.
| | | * Added missing STL include of <list> in main.hGravatar Georg Drenkhahn2014-08-29
| | |/ | | | | | | | | | | | | Removed duplicated include of <sstream> Added comments on the background of min/max macro definitions and STL header includes
| | * Allow LevenbergMarquardt to work with non-standard types.Gravatar Freddie Witherden2014-08-27
| | |
| | * Fixed CMakeLists.txt files to prevent CMake 3.0.0 warnings about deprecated ↵Gravatar Georg Drenkhahn2014-08-22
| | | | | | | | | | | | | | | | | | LOCATION target property. Small whitespace cleanup in CMakelLists.txt.
| | * In SparseQR, calling factorize() without analyzePattern() was broken.Gravatar Gael Guennebaud2014-08-26
| | |
| | * bug #857: workaround MSVC compilation issue.Gravatar Gael Guennebaud2014-08-26
| | |
| | * bug #861: enable posix_memalign with PGIGravatar Gael Guennebaud2014-08-26
| | |
| | * Do not apply the preconditioner before starting the iterations as this might ↵Gravatar Gael Guennebaud2014-08-21
| | | | | | | | | | | | destroy a very good initial guess.
| | * bug #854: fix numerical issue in SelfAdjointEigenSolver::computeDirect for ↵Gravatar Gael Guennebaud2014-08-21
| | | | | | | | | | | | | | | | | | 3x3 matrices. The tolerance to detect stable cross products was too optimistic. Add respective unit tests.
| | * EIGEN_EXCEPTIONS was not defined in test/main.h, therefore all ↵Gravatar Christoph Hertzberg2014-08-20
| | | | | | | | | | | | VERIFY_RAISES_ASSERT tests were not enabled
| | * Merged in ↵Gravatar Christoph Hertzberg2014-08-20
| | |\ | | | | | | | | | | | | | | | | | | | | vladimir_ch/eigen-1/vladimir_ch/fix-uninitialized-variable-warning-in-sp-1408513228472 (pull request PR-77) Fix uninitialized variable warning in SparseQR
| | * \ Merged in ↵Gravatar Christoph Hertzberg2014-08-20
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | traversaro/eigen/traversaro/findeigen3cmake-add-reading-hints-of-eig-1407426517521 (pull request PR-76) FindEigen3.cmake: Add reading hints of Eigen directory location from environment variables EIGEN3_ROOT and EIGEN3_ROOT_DIR .
| | | | * Fix uninitialized variable warning in SparseQRGravatar Vladimir Chalupecky2014-08-20
| | | |/ | | |/|
| | | * FindEigen3.cmake: Add reading hints of Eigen directory location from ↵Gravatar Silvio Traversaro2014-08-07
| | |/ | |/| | | | | | | environment variables EIGEN3_ROOT and EIGEN3_ROOT_DIR .
| | * Correct GMRES:Gravatar Kolja Brix2014-08-02
| |/ | | | | | | | | | | * Fix error in calculation of residual at restart. * Use relative residual as stopping criterion. * Improve documentation.
| * Memory allocated on the stack is freed at the function exit, so reduce ↵Gravatar Gael Guennebaud2014-08-04
| | | | | | | | iteration count to avoid stack overflow
| * Fix bug #850: workaround MSVC 2008 weird compilation bugGravatar Gael Guennebaud2014-08-02
| |
| * Fix more typos in Ref.h (doc).Gravatar Benjamin Chrétien2014-08-01
| |
| * Fix typos in Ref.h (doc).Gravatar Benjamin Chrétien2014-08-01
| |
| * Fix typo in PermutationMatrix (doc).Gravatar Benjamin Chrétien2014-08-01
| |
* | The tensor assignment code now resizes the destination tensor as needed.Gravatar Benoit Steiner2014-07-31
| |
| * Make loadMarket use the sparse-matrix index type, thus enabling loading huge ↵Gravatar Gael Guennebaud2014-07-31
| | | | | | | | matrices.
| * add missing delete operator overloadsGravatar Gael Guennebaud2014-07-30
| |
* | Made sure that the data stored in fixed sized tensor is aligned.Gravatar Benoit Steiner2014-07-25
| |