aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
Commit message (Collapse)AuthorAge
...
* fix missdetection of GLUTGravatar Gael Guennebaud2010-08-16
|
* add an OpenGL module simplifying the way you can pass Eigen's objects to GLGravatar Gael Guennebaud2010-07-22
|
* Require at least MPFR version 2.3.0, because we use mpfr_signbit.Gravatar Jitse Niesen2010-07-19
| | | | Code in FindMPFR.cmake is taken from FindEigen2.cmake .
* MPRealSupport was missingGravatar Gael Guennebaud2010-07-15
|
* add a support module for MPFR C++ with basic unit testingGravatar Gael Guennebaud2010-07-15
|
* Various documentation improvements.Gravatar Jitse Niesen2010-07-06
| | | | | | | * Add short documentation for Array class * Put all classes explicitly in Core module (where applicable) * Section on Modules in Quick Reference Guide * Put Page 7 after Page 6 in Contents :)
* Add all unsupported modules and fix header file pathsGravatar Jens Mueller2010-07-06
|
* fix unsupported module docGravatar Gael Guennebaud2010-06-30
|
* 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
|
* Fix compilation.Gravatar Hauke Heibel2010-06-21
|
* Finally fixed the matrix function/exponential warning.Gravatar Hauke Heibel2010-06-20
| | | | Index fixes.
* Next try - more Index fixes.Gravatar Hauke Heibel2010-06-20
|
* Utilize Index in all unit tests.Gravatar Hauke Heibel2010-06-20
|
* More Index realted warnings.Gravatar Hauke Heibel2010-06-20
|
* Silence index warnings in triangular unit test.Gravatar Hauke Heibel2010-06-20
| | | | Silence index warnings in FFT module.
* Attempt to fix MatrixExponential/Function related warnings.Gravatar Hauke Heibel2010-06-20
|
* fix compilation of sparse testsGravatar Gael Guennebaud2010-06-19
|
* add missing filesGravatar Gael Guennebaud2010-06-18
|
* split the Sparse module into multiple ones, and move non stable parts to ↵Gravatar Gael Guennebaud2010-06-18
| | | | | | unsupported/ (see the ML for details)
* Compilation fix for matrix_exponential test: add 'typename'.Gravatar Jitse Niesen2010-06-16
|
* Ups, fixed a little ugly bug.Gravatar Hauke Heibel2010-06-15
|
* Fixed 64bit/Index related warnings in the matrix functions module.Gravatar Hauke Heibel2010-06-15
|
* rename:Gravatar Benoit Jacob2010-06-14
| | | | | | EIGEN_SIZE_MIN ---> EIGEN_SIZE_MIN_PREFER_DYNAMIC EIGEN_MAXSIZE_MIN ---> EIGEN_SIZE_MIN_PREFER_FIXED and make sure to use the latter in products xprs to determine the inner size.
* merge my Dynamic -> -1 changeGravatar Benoit Jacob2010-06-11
|\
* | change the value of Dynamic to -1, since the index type is now configurable.Gravatar Benoit Jacob2010-06-11
| | | | | | | | remove EIGEN_ENUM_MIN/MAX, implement new macros instead
* | unsplit this test: was compiling 16 times the same thing! Need to find ↵Gravatar Benoit Jacob2010-06-11
| | | | | | | | another way. Suggestion: should compile the stuff once into a binary library, or properly split into different tests with different code.
| * Fixed warnings regarding missing assignment operator.Gravatar Hauke Heibel2010-06-11
| |
| * fix warning with gcc 4.3Gravatar Gael Guennebaud2010-06-10
| |
| * Fixed many MSVC warnings.Gravatar Hauke Heibel2010-06-09
|/
* the Index types change.Gravatar Benoit Jacob2010-05-30
| | | | As discussed on the list (too long to explain here).
* kill the LeastSquares module.Gravatar Benoit Jacob2010-04-29
| | | | I didn't even put it in Eigen2Support because it requires several other modules. But if you want we can always create a new module, Eigen2Support_LeastSquares...
* Complete rework of global math functions and NumTraits.Gravatar Benoit Jacob2010-04-28
| | | | | | | | * Now completely generic so all standard integer types (like char...) are supported. ** add unit test for that (integer_types). * NumTraits does no longer inherit numeric_limits * All math functions are now templated * Better guard (static asserts) against using certain math functions on integer types.
* compileGravatar Benoit Jacob2010-04-25
|
* * remove class DenseDirectAccessBaseGravatar Benoit Jacob2010-04-23
| | | | | * remove member XprBase typedefs, use ei_dense_xpr_base * remove member _HasDirectAccess typedefs, use ei_has_direct_access
* * implement the corner() API change: new methods topLeftCorner() etcGravatar Benoit Jacob2010-04-22
| | | | | | | | * get rid of BlockReturnType: it was not needed, and code was not always using it consistently anyway * add topRows(), leftCols(), bottomRows(), rightCols() * add corners unit-test covering all of that * adapt docs, expand "porting from eigen 2 to 3" * adapt Eigen2Support
* add platform check for how to link to the standard math library.Gravatar Benoit Jacob2010-04-19
| | | | This allows to support QNX.
* tests for nonlinear module : use different slots + misc cleaningGravatar Thomas Capricelli2010-04-18
|
* fix use of uninitialzed caluesGravatar Gael Guennebaud2010-04-17
|
* * merge with mainlineGravatar Benoit Jacob2010-04-16
|\ | | | | | | | | | | * adapt Eigenvalues module to the new rule that the RowMajorBit must have the proper value for vectors * Fix RowMajorBit in ei_traits<ProductBase> * Fix vectorizability logic in CoeffBasedProduct
* | * Refactoring of the class hierarchy: introduction of DenseDirectAccessBase, ↵Gravatar Benoit Jacob2010-04-16
| | | | | | | | | | | | | | | | | | removal of extra _Base/_Options template parameters. * Introduction of strides-at-compile-time so for example the optimized code really knows when it needs to evaluate to a temporary * StorageKind / XprKind * Quaternion::setFromTwoVectors: use JacobiSVD instead of SVD * ComplexSchur: support the 1x1 case
| * fix misc warnings, more importantly when NDEBUG is defined, assert() is aGravatar Thomas Capricelli2010-03-27
| | | | | | | | nop.
| * Fix some doc typos.Gravatar Manuel Yguel2010-03-25
| |
| * Fix wrong header and warnings in polynomialutils.cppGravatar Manuel Yguel2010-03-25
| |
| * Add missing test files for Polynomials module.Gravatar Manuel Yguel2010-03-25
| |
| * Creation of the Polynomials module with the following features:Gravatar Manuel Yguel2010-03-25
| | | | | | | | | | | | | | | | * convenient functions: - Horner and stabilized Horner evaluation - polynomial coefficients from a set of given roots - Cauchy bounds * a QR based polynomial solver
| * Move documentation of MatrixBase methods in MatrixFunctions to module page.Gravatar Jitse Niesen2010-03-22
|/ | | | | | | I think that because MatrixFunctions is in unsupported/ and MatrixBase is not, doxygen does not include the MatrixBase methods defined and documented in the MatrixFunctions module with the other MatrixBase methods. This is a kludge, but at least the documentation is not lost.
* API change: ei_matrix_exponential(A) --> A.exp(), etcGravatar Jitse Niesen2010-03-16
| | | | | As discussed on mailing list; see http://listengine.tuxfamily.org/lists.tuxfamily.org/eigen/2010/02/msg00190.html
* tests : fix compilation issues, adding <iostream> and removingGravatar Thomas Capricelli2010-03-08
| | | | <Eigen/Array>
* minor editGravatar Mark Borgerding2010-03-07
|