aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Typo in geometry tutorial.Gravatar Jitse Niesen2011-09-19
|
* Bug fix for matrix1 * matrix2 * scalar1 * scalar2.Gravatar Jitse Niesen2011-09-19
| | | | See report on http://forum.kde.org/viewtopic.php?f=74&t=96947 .
* mainly enhance MatrixLogarithm's performance for RealScalar != doubleGravatar Chen-Pang He2011-09-17
|
* add support for macosxGravatar Gael Guennebaud2011-09-17
|
* add a bi conjugate gradient stabilized solverGravatar Gael Guennebaud2011-09-17
|
* add tan, acos, asinGravatar Gael Guennebaud2011-09-14
|
* Fix LDLT::solve() if matrix singular but solution exists (bug #241).Gravatar Jitse Niesen2011-09-11
| | | | Clarify this in docs and add regression test.
* Write page on template and typename keywords in C++.Gravatar Jitse Niesen2011-09-10
| | | | | | | After yet another question on the forum, I decided to write something on this common issue. Now we just need to link to this and get people to read it. Thanks to mattb on the forum for some links. Caveat: IANALL (I am not a language lawyer).
* fix bench_gemmGravatar Gael Guennebaud2011-09-09
|
* reactivate the sorting in the experimental sparse-sparse productGravatar Gael Guennebaud2011-09-08
|
* add the possibility to reserve room for inner vector in SparseMatrixGravatar Gael Guennebaud2011-09-08
|
* Put docs for unsupported modules in right place.Gravatar Jitse Niesen2011-09-07
| | | | | | | Doxygen was confused by the unsupported modules being partly in the doc/ directly, instead of completely in unsupported/doc/ . Thus, the link to the unsupported modules on the server did not work (I think this manifested itself after doxygen was upgraded on the server).
* Define log2() on FreeBSD (fixes bug #343).Gravatar Jitse Niesen2011-09-06
|
* add atan2 support in AutoDiff and remove superfluous std:: specializationsGravatar Gael Guennebaud2011-09-05
|
* Merged in trevorw/eigen (pull request PR-7)Gravatar Gael Guennebaud2011-09-05
|\
* | Update docs of PlainObjectBase::Map(); fixes bug #335.Gravatar Jitse Niesen2011-09-03
| | | | | | | | Also fix some typos.
* | Add defensive assert to MatrixExponential,Gravatar Jitse Niesen2011-09-03
| |
* | enhance efficacy via avoiding exception handlingGravatar Chen-Pang He2011-09-02
| |
| * resolve pkgconfig destination - #338Gravatar Trevor Wennblom2011-08-30
|/
* Leverage triangular square root in matrix log.Gravatar Jitse Niesen2011-08-25
|
* Split code for (quasi)triangular matrices from MatrixSquareRoot.Gravatar Jitse Niesen2011-08-25
| | | | This way, (quasi)triangular matrices can avoid the costly Schur decomposition.
* fix: <ctime> is necessary for srand(time(NULL))Gravatar Chen-Pang He2011-08-24
|
* fix bug #330: Index to int conversion warningGravatar Gael Guennebaud2011-08-23
|
* oops EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION now perfroms full specialization,Gravatar Gael Guennebaud2011-08-22
| | | | no need for the typename keywords
* fix bug #262: Compilation error of stdvector_overload test with GCC 4.6Gravatar Gael Guennebaud2011-08-22
| | | | | Now our aligned allocator is automatically activatived only when the user did not specified an allocator (or specified the default std::allocator).
* Fix failures in redux test caused by underflow in .prod() test.Gravatar Jitse Niesen2011-08-21
|
* Add coverage for long double to matrix_exponential test.Gravatar Jitse Niesen2011-08-21
|
* add compatibility with long doubleGravatar Chen-Pang He2011-08-20
|
* mv the mpreal copy in its own folderGravatar Gael Guennebaud2011-08-19
|
* update to latest mpreal and fix a min/max issue in mprel.hGravatar Gael Guennebaud2011-08-19
|
* the min/max macros to detect unprotected min/max were undefined by some std ↵Gravatar Gael Guennebaud2011-08-19
| | | | | | header, so let's declare them after and do the respective fixes ;)
* add the possibility to specialize assign_impl and still call the default ↵Gravatar Gael Guennebaud2011-08-18
| | | | | | implementations. (yes I know this change will be deprecated as soon as the evaluators will be in shape but I need this now)
* fix linking issueGravatar Gael Guennebaud2011-08-12
|
* fix a numerical issue in the direct 3x3 eigenvector extractionGravatar Gael Guennebaud2011-08-08
|
* fix a bug where some rotations were not initializedGravatar Thomas Capricelli2011-08-04
| | | | | | | They actually were in the original minpack code, this is a bug introduced by our migration. Reported on #322 and http://forum.kde.org/viewtopic.php?f=74&t=96197#p201158
* wa2 was computed twice because of a confustion between changesetsGravatar Thomas Capricelli2011-08-04
| | | | | | | | 746c787a763ed8be1bbba1e42310d8b968feacd0 and ee0e39284c8ddd94ae82604e8bb51a846e3dc644 . Reported on forum: http://forum.kde.org/viewtopic.php?f=74&t=96197#p201158
* Remove unnecessary template keywords (breaks compilation under MSVC).Gravatar Jitse Niesen2011-07-28
| | | | Thanks to Hauke for finding this.
* Improved compilation errors for Transform initialization/assignment with ↵Gravatar Hauke Heibel2011-07-28
| | | | different numeric types.
* compilation fix with conjugate_gradient_solve_retval_with_guessGravatar Gael Guennebaud2011-07-26
|
* add the possibility to configure the preconditionerGravatar Gael Guennebaud2011-07-26
|
* add a naive IdentityPreconditionerGravatar Gael Guennebaud2011-07-26
|
* add a conjugate gradient solverGravatar Gael Guennebaud2011-07-26
|
* fix sparse selfadjoint time dense such that the other triangular part is not ↵Gravatar Gael Guennebaud2011-07-26
| | | | used at all
* fix eigen2 support min/max garbageGravatar Gael Guennebaud2011-07-22
|
* simplify a bit the 2x2 direct eigenvalue solverGravatar Gael Guennebaud2011-07-22
|
* integrate Hauke's 2x2 direct symmetric eigenvalues solverGravatar Gael Guennebaud2011-07-22
|
* add a computeDirect method to SelfAdjointEigenSolver for fast eigen ↵Gravatar Gael Guennebaud2011-07-21
| | | | decomposition
* 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 bug #320 (pretty gdb printer on mingw)Gravatar Gael Guennebaud2011-07-20
|
* Translation * RotationBase now returns an isometric transformation.Gravatar Hauke Heibel2011-07-19
|