aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
...
* import eigen2 test suite. enable by defining EIGEN_TEST_EIGEN2Gravatar Benoit Jacob2011-01-19
| | | | only test_prec_inverse4x4 is fixed at the moment. now need to go over all those tests.
* fix bug #155, const-related compilation errorGravatar Benoit Jacob2011-01-18
|
* Added remaining const coeffRef accessors to Array- and MatrixWrapper.Gravatar Hauke Heibel2011-01-18
|
* __cpuidex is not (always) present in VS 2008 + SP1, it seemsGravatar Benoit Jacob2011-01-17
|
* do not stop the factorization if one pivot is exactly 0, and return theGravatar Gael Guennebaud2011-01-17
| | | | index of the first zero pivot if any
* return the index of the first non positive diagonal entry (more useful than ↵Gravatar Gael Guennebaud2011-01-17
| | | | simply true or false)
* fix compilation of rowmajor sparse time diagonalGravatar Gael Guennebaud2011-01-14
|
* Update of CPUID macros to fix segfaults in amd64 code.Gravatar Jose Luis Blanco2011-01-05
|
* third pass of const-correctness fixes (bug #54), hopefully the last one...Gravatar Benoit Jacob2011-01-07
|
* add plugin mechanism to sparse objectsGravatar Gael Guennebaud2011-01-07
|
* Fix compilation error in HouseholderSequence introduced in my previous commit.Gravatar Jitse Niesen2011-01-07
|
* Make HouseholderSequence::setTrans() protected (cf. bug #50).Gravatar Jitse Niesen2011-01-06
| | | | Users can call .transpose() instead.
* Fixed #148 where a const-accessor for coefficients was missing in the ↵Gravatar Hauke Heibel2011-01-04
| | | | MatrixWrapper.
* Fix bug in symmetric rank-2 update for row-major matrices (bug #144).Gravatar Jitse Niesen2011-01-04
|
* Const-correctness fix for gemv_selector<OnTheRight,ColMajor,true> (bug #144).Gravatar Jitse Niesen2011-01-04
|
* fix severe perf bug: coeff-based matrix products were not considered ↵Gravatar Benoit Jacob2011-01-02
| | | | | | aligned, typically preventing vectorization. added unit test.
* Document HouseholderSequence.Gravatar Jitse Niesen2011-01-02
| | | | | Incomplete: I did not explain the difference between OnTheLeft and OnTheRight, and there is only one example.
* mergeGravatar Gael Guennebaud2010-12-31
|\
| * fix sparse time dense product with a rowmajor lhsGravatar Gael Guennebaud2010-12-31
| |
* | [Sparse] Added regression tests for the two bugfixes, the code passes all ↵Gravatar David J. Luitz2010-12-30
|/ | | | sparse_product tests
* fix compilation of code using e.g. Transpose<const Foo>::data() ↵Gravatar Benoit Jacob2010-12-30
| | | | non-const-qualified. Same problem existed for coeffRef() and also in MapBase.h.
* fix compile errors in Tridiagonalization and in doc examplesGravatar Benoit Jacob2010-12-30
|
* fix HouseholderSequence API, bug #50:Gravatar Benoit Jacob2010-12-30
| | | | | | * remove ctors taking more than 2 ints * rename actualVectors to length * add length/shift/trans accessors/mutators
* Rename EIGEN_DENSESTORAGEBASE_PLUGIN to EIGEN_PLAINOBJECTBASE_PLUGIN.Gravatar Jitse Niesen2010-12-29
|
* fixed msvc9 build errors.Gravatar Jose Luis Blanco2010-12-29
|
* fix MSVC warnings, bug #143Gravatar Jose Luis Blanco2010-12-29
|
* fix preprocessor checks for availability of cpuidGravatar Thomas Capricelli2010-12-28
|
* Mention ptr_fun in docs for .unaryExpr()Gravatar Jitse Niesen2010-12-27
|
* Move doxygen comments for EIGEN_NO_DEBUG from source to I14.Gravatar Jitse Niesen2010-12-27
| | | | | | This reverts changeset 76fbe94279bda314e717cb3f98b46b253d081993 . Benoit and I agree that my approach there (to use doxygen comments) pollutes the code too much.
* move BandMatrix and TridiagonalMatrix to the internal:: namespaceGravatar Benoit Jacob2010-12-25
|
* more renaming to make this file matrix-or-array-agnosticGravatar Benoit Jacob2010-12-25
|
* rename macroGravatar Benoit Jacob2010-12-25
|
* remove EIGEN_REF_TO_TEMPORARY, clarify docsGravatar Benoit Jacob2010-12-25
|
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
|
* Added automatic SSE3/4.1/4.2 support for MSVC.Gravatar Hauke Heibel2010-12-16
|
* Fixed compound subtraction in ArrayBase where the assignment needs to be ↵Gravatar Hauke Heibel2010-12-16
| | | | | | carried out on the derived type. Added unit tests for map based component wise arithmetic.
* Fixed ctor from const raw data for Matrices and added the missing ↵Gravatar Hauke Heibel2010-12-15
| | | | | | implementation for Arrays. Fixed a warning regarding the conversion from int to bool in MapBase.
* Fix bug #133: remove the EIGEN_RESTRICT which was useless here anywayGravatar Gael Guennebaud2010-12-13
|
* Fixed NEON compilation errors, changed float-abi back to softfp (which is ↵Gravatar Konstantinos Margaritis2010-12-10
| | | | | | the most used right now). Some complex tests appear to segfault, needs a more careful look.
* bug #54 - The big Map const-correctness changesGravatar Benoit Jacob2010-12-10
|
* suppress stupid warningGravatar Gael Guennebaud2010-12-10
|
* fix compilationGravatar Gael Guennebaud2010-12-10
|
* fix compilation with ICC (template keyword on a non template method)Gravatar Gael Guennebaud2010-12-10
|
* fix ICE with gcc 3.4 and 4.0.1Gravatar Gael Guennebaud2010-12-10
|
* fix bug #128 : tridiagonalization failed for 1x1 matricesGravatar Gael Guennebaud2010-12-09
|
* simplificationGravatar Gael Guennebaud2010-12-09
|
* fix compilation of sparse_basic for DynamicSparseMatrixGravatar Gael Guennebaud2010-12-09
|
* fix the build of eigensolver_complex test.Gravatar Benoit Jacob2010-12-09
| | | | | | it was calling the .value() method on an inner product, and that was blocked in bad zero-sized case. fixed by adding the .value() method to DenseBase for all 1x1 expressions, and allowing coeff accessors in ProductBase for 1x1 expressions.
* fix bug #127. our product selection logic was flawed in that it used the ↵Gravatar Benoit Jacob2010-12-09
| | | | | | Max-sized to determine whether the size is 1. + test.
* fix commentGravatar Benoit Jacob2010-12-07
|