aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Eigen2Support
Commit message (Collapse)AuthorAge
* Fixed dummy_precision evaluation.Gravatar Hauke Heibel2013-07-28
|
* Merged simple geometry asserts.Gravatar Hauke Heibel2013-07-25
|\
* | Fix a couple of warningsGravatar Gael Guennebaud2013-06-21
| |
* | Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
| |
| * Added asserts to AngleAxis class which verify that the initial axis isGravatar Hauke Heibel2013-05-15
|/ | | | normalized.
* 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
* clean Eigen2Support wrt KDE mentionsGravatar Gael Guennebaud2012-07-14
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* the default ctor had no sense because of the const reference memberGravatar Gael Guennebaud2012-01-31
|
* fix static inline versus inline static issues (the former is the correct order)Gravatar Gael Guennebaud2012-01-31
|
* fix some compilation errors with ICC and -strict-ansiGravatar Gael Guennebaud2012-01-31
|
* bug #352:properly cast constantsGravatar Igor Krivenko2011-12-09
|
* Eigen2sSupport: import some fixes from the 3.0 branch (MSVC fix)Gravatar Gael Guennebaud2011-12-03
|
* fix a couple of warnings in the unit testsGravatar Gael Guennebaud2011-11-05
|
* fix eigen2 support min/max garbageGravatar Gael Guennebaud2011-07-22
|
* 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 #212 (installation of Eigen2Support/Geometry)Gravatar Gael Guennebaud2011-03-04
|
* Improve documentation of plugins.Gravatar Jitse Niesen2011-02-13
|
* kill stage 15, it's uselessGravatar Benoit Jacob2011-01-31
|
* add test for geometry with eigen2_ prefixes. fix that stuff.Gravatar Benoit Jacob2011-01-27
|
* import back LeastSquares into eigen2support. Pass most of eigen2's ↵Gravatar Benoit Jacob2011-01-26
| | | | 'regression' test, except for regression_4 which is about complex numbers.
* eigen2 support: import SVD back, pass SVD testsGravatar Benoit Jacob2011-01-26
|
* fix bug #160 - forgot hg addGravatar Benoit Jacob2011-01-25
|
* eigen2: pass QR decomposition and hyperplane testsGravatar Benoit Jacob2011-01-25
|
* eigen2: pass lu testGravatar Benoit Jacob2011-01-25
|
* import eigen2 Geometry module into Eigen2Support.Gravatar Benoit Jacob2011-01-24
| | | | fix build of geometry tests
* pass eigen2's triangular testGravatar Benoit Jacob2011-01-23
|
* rename build stages to multiples of 10; old stage 2 becomes stage 15, while ↵Gravatar Benoit Jacob2011-01-23
| | | | stage 20 generates errors (instead of warnings) on conflicting API.
* make eigen2 dynalloc test pass (add to eigen2 support some internal stuff ↵Gravatar Benoit Jacob2011-01-21
| | | | that some users may have been relying on)
* make eigen2 submatrices test passGravatar Benoit Jacob2011-01-21
|
* lots more EIGEN2_SUPPORT fixes. Now several of the most important core tests ↵Gravatar Benoit Jacob2011-01-20
| | | | build and succeed.
* big eigen2support fix, aimed at users who relied on internal eigen2 stuff: ↵Gravatar Benoit Jacob2011-01-19
| | | | | | | | | | now we dont need customizations in test/eigen2/main.h anymore. These tests already build: eigen2_basicstuff eigen2_adjoint eigen2_linearstructure eigen2_prec_inverse_4x4
* add main ei_* functions into Eigen2SupportGravatar Gael Guennebaud2010-12-03
|
* add eigen2support Transform typedefs, add Eigen2To3 section on TransformGravatar Benoit Jacob2010-10-29
|
* Initial fixes for bug #85.Gravatar Hauke Heibel2010-10-25
| | | | | | | Renamed meta_{true|false} to {true|false}_type, meta_if to conditional, is_same_type to is_same, un{ref|pointer|const} to remove_{reference|pointer|const} and makeconst to add_const. Changed boolean type 'ret' member to 'value'. Changed 'ret' members refering to types to 'type'. Adapted all code occurences.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* add cmakelists for 2 subdirs and make sure all subdirs are installed (GLOB)Gravatar Benoit Jacob2010-09-14
|
* Remove \nonstable yet. The stability rules for Eigen3 are much simpler:Gravatar Benoit Jacob2010-06-29
| | | | | - all what's not in unsupported/ is considered stable API (except internal stuff e.g. expression templates).
* email changeGravatar Gael Guennebaud2010-06-24
|
* remove reference to the dead Array moduleGravatar Gael Guennebaud2010-06-19
|
* the Index types change.Gravatar Benoit Jacob2010-05-30
| | | | As discussed on the list (too long to explain here).
* add minor to Eigen2SupportGravatar Benoit Jacob2010-04-22
|
* forgot to hg add...Gravatar Benoit Jacob2010-04-22
|
* Renamed PlainMatrixType to PlainObject (Array != Matrix).Gravatar Hauke Heibel2010-02-20
| | | | Renamed ReturnByValue::ReturnMatrixType ReturnByValue::ReturnType (again, Array != Matrix).
* * resurected Flagged from Eigen2SupportGravatar Gael Guennebaud2010-02-04
| | | | * reimplement .diagonal() for ProductBase to make (A*B).diagonal() more efficient!
* lot of cleaning:Gravatar Gael Guennebaud2010-01-22
| | | | | | - clean the *_PUBLIC_INTERFACE_* - update Diagonal, ReturnByValue, ForceAlignedAccess, UnaryView, etc. to support array - many other small stuff
* remove the Triangular suffix to Upper, Lower, UnitLower, etc,Gravatar Gael Guennebaud2010-01-07
| | | | and remove the respective bit flags
* Various documentation updates:Gravatar Gael Guennebaud2010-01-06
| | | | | | - update the tutorial - update doc of deprecated cwise function - update cwise doc snippets
* fix commentsGravatar Benoit Jacob2010-01-06
|