Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | remove the 'Unsupported Modules' meta module | Gael Guennebaud | 2013-01-11 |
| | |||
* | Automatic relicensing to MPL2 using Keirs script. Manual fixup follows. | Benoit Jacob | 2012-07-13 |
| | |||
* | Get rid of include directives inside namespace blocks (bug #339). | Jitse Niesen | 2012-04-15 |
| | |||
* | the min/max macros to detect unprotected min/max were undefined by some std ↵ | Gael Guennebaud | 2011-08-19 |
| | | | | | | header, so let's declare them after and do the respective fixes ;) | ||
* | better fix for gcc 4.6.0 / ptrdiff_t, as suggested by Benoit | Thomas Capricelli | 2011-05-05 |
| | |||
* | Fix compilation with gcc-4.6.0, patch provided by Anton Gladky ↵ | Thomas Capricelli | 2011-05-05 |
| | | | | | | <gladky.anton@gmail.com>, working on debian packaging. | ||
* | Initial fixes for bug #85. | Hauke Heibel | 2010-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_ prefix | Benoit Jacob | 2010-10-25 |
| | |||
* | Silence index warnings in triangular unit test. | Hauke Heibel | 2010-06-20 |
| | | | | Silence index warnings in FFT module. | ||
* | Fixed many MSVC warnings. | Hauke Heibel | 2010-06-09 |
| | |||
* | * remove class DenseDirectAccessBase | Benoit Jacob | 2010-04-23 |
| | | | | | * remove member XprBase typedefs, use ei_dense_xpr_base * remove member _HasDirectAccess typedefs, use ei_has_direct_access | ||
* | * merge with mainline | Benoit Jacob | 2010-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, ↵ | Benoit Jacob | 2010-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 a | Thomas Capricelli | 2010-03-27 |
|/ | | | | nop. | ||
* | needed different proxy return types for fwd,inv to work around static asserts | Mark Borgerding | 2010-03-07 |
| | |||
* | created FFT::fwd and FFT::inv with ReturnByValue | Mark Borgerding | 2010-03-07 |
| | |||
* | enable caller to supply FFT length for Eigen Matrix interface functions to ↵ | Mark Borgerding | 2010-02-22 |
| | | | | effect zero pad or source shrink at Nyquist bin | ||
* | typo in merge | Mark Borgerding | 2010-02-16 |
| | |||
* | merge | Mark Borgerding | 2010-02-16 |
|\ | |||
* | | found out about little-documented FFTW_PRESERVE_INPUT which has effect on ↵ | Mark Borgerding | 2010-02-16 |
| | | | | | | | | c2r transforms | ||
* | | changed destination argument to reference | Mark Borgerding | 2010-01-22 |
| | | |||
* | | if the src.stride() != 1, then the layout is not continuous -- need to copy ↵ | Mark Borgerding | 2010-01-22 |
| | | | | | | | | to temporary | ||
* | | changed FFT function vector and Matrix args to pointer as Benoit suggested | Mark Borgerding | 2010-01-22 |
| | | | | | | | | implemented 2D Complex FFT for FFTW impl | ||
* | | updated comments and played around with Map | Mark Borgerding | 2010-01-21 |
| | | |||
| * | Silenced type conversion warnings. | Hauke Heibel | 2010-02-03 |
|/ | |||
* | unimportant small fix | Thomas Capricelli | 2010-01-04 |
| | |||
* | Added to possibility to compile unit tests at maximum warning level. | Hauke Heibel | 2009-12-12 |
| | | | | Silenced (amongst others) many conversion related warnings. | ||
* | Adapted a mail from Mark about some design and add it as documentation for | Thomas Capricelli | 2009-11-30 |
| | | | | the FFT module. | ||
* | make the complex module appear in doxygen + small documentation | Thomas Capricelli | 2009-11-10 |
| | |||
* | make FFT appear in doxygen doc, and provide a mininum of documentation | Thomas Capricelli | 2009-11-10 |
| | |||
* | added inlines to a bunch of functions | Mark Borgerding | 2009-10-31 |
| | |||
* | moved real-half-spectrum reflection into Eigen::FFT | Mark Borgerding | 2009-10-30 |
| | |||
* | moved scaling to Eigen::FFT | Mark Borgerding | 2009-10-30 |
| | |||
* | inlining,all namespace declaration moved to FFT, removed preprocessor ↵ | Mark Borgerding | 2009-10-21 |
| | | | | definitions, | ||
* | merge branches | Mark Borgerding | 2009-10-21 |
|\ | |||
* | | renamed 'Traits' to 'Impl', added vim modelines for syntax highlighting | Mark Borgerding | 2009-10-21 |
| | | |||
| * | MatrixBase: | Benoit Jacob | 2009-10-20 |
|/ | | | | | | | | | * support resize() to same size (nop). The case of FFT was another case where that make one's life far easier. hope that's ok with you Gael. but indeed, i don't use it in the ReturnByValue stuff. FFT: * Support MatrixBase (well, in the case with direct memory access such as Map) * adapt unit test | ||
* | more work on ei_fftw_impl | Mark Borgerding | 2009-05-31 |
| | |||
* | added ei_fftw_impl | Mark Borgerding | 2009-05-30 |
| | |||
* | various comment changes | Mark Borgerding | 2009-05-27 |
| | |||
* | changed name from simple_fft_traits to ei_kissfft_impl | Mark Borgerding | 2009-05-25 |