aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
Commit message (Collapse)AuthorAge
* IBM XL C compiler supports __attribute__((aligned(n))) syntaxGravatar Gael Guennebaud2010-11-19
|
* fix typoGravatar Thomas Capricelli2010-11-19
|
* update rank 2 update docGravatar Gael Guennebaud2010-11-19
|
* makes rank 2 update function conformant to BLAS HER2Gravatar Gael Guennebaud2010-11-19
|
* fix compilation of transform * scalingGravatar Gael Guennebaud2010-11-19
|
* Add support for sparse symmetric permutationsGravatar Gael Guennebaud2010-11-18
|
* fix some remainign issue with ei_ -> internal changeGravatar Gael Guennebaud2010-11-16
|
* new feature: copy from a sparse selfadjoint view to a full sparse matrixGravatar Gael Guennebaud2010-11-15
|
* fix return type of rightHouseholderSequence()Gravatar Gael Guennebaud2010-11-15
|
* Correct std::map fix (two commits ago); copy fix to aligned_allocator doc.Gravatar Jitse Niesen2010-11-12
|
* properly use nested typesGravatar Gael Guennebaud2010-11-10
|
* prevent warningGravatar Gael Guennebaud2010-11-10
|
* generalize our internal rank K update routine to support more general A*B ↵Gravatar Gael Guennebaud2010-11-10
| | | | | | product while evaluating only one triangular part and make it available via, e.g.: R.triangularView<Lower>() += s * A * B;
* add missing specializationGravatar Gael Guennebaud2010-11-09
|
* fix Eigen's trsv for complexesGravatar Gael Guennebaud2010-11-05
|
* blas level2: gemv and trsv are greenGravatar Gael Guennebaud2010-11-05
|
* trsv: simplifications/cleaningGravatar Gael Guennebaud2010-11-05
|
* trsv: add support for inner-stride!=1, reduce code instanciation, move ↵Gravatar Gael Guennebaud2010-11-05
| | | | implementation to a new products/XX.h file
* fix bug #107: SelfAdjointEigenSolver and RowMajor (and add unit test)Gravatar Gael Guennebaud2010-11-04
|
* fix matrix product bug with OpenMPGravatar Gael Guennebaud2010-11-03
|
* rm auto normalization in favor of clampingGravatar Gael Guennebaud2010-11-03
|
* Fix bug #65.Gravatar Hauke Heibel2010-11-02
| | | | In order to prevent compilation errors, the default functor "struct func" must not be defined inside the function scope. I just moved it into a private section of SparseMatrix.
* Added a comment on why is_arithmetic is used in DenseCoeffsBase.Gravatar Hauke Heibel2010-11-02
|
* Fixed compilation due to lacking Transform definitions.Gravatar Hauke Heibel2010-11-01
|
* oops (rm commented code)Gravatar Gael Guennebaud2010-11-01
|
* Let's be safe: enable auto normalization is quaternion to angle-axis code ↵Gravatar Gael Guennebaud2010-10-31
| | | | since a slight numerical issue may trigger NaN. The overhead is small and I doubt the perf of this function could be critival for any application !
* add eigen2support Transform typedefs, add Eigen2To3 section on TransformGravatar Benoit Jacob2010-10-29
|
* document LvalueBit betterGravatar Benoit Jacob2010-10-28
|
* generalize the prune functionGravatar Gael Guennebaud2010-10-28
|
* fix sparse rankUpdate and triangularView iteratorGravatar Gael Guennebaud2010-10-27
|
* add the possibility to solve for sparse rhs with CholmodGravatar Gael Guennebaud2010-10-27
|
* Renamed cleantype to remove_all since it is close to ↵Gravatar Hauke Heibel2010-10-26
| | | | remove_{const|pointer|reference}.
* 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
|
* Fixed bug #84.Gravatar Hauke Heibel2010-10-21
|
* renaming: ei_matrix_storage -> DenseStorageGravatar Benoit Jacob2010-10-20
| | | | DenseStorageBase -> PlainObjectBase
* rename PlanarRotation -> JacobiRotationGravatar Benoit Jacob2010-10-19
|
* work around stupid msvc error when constructing at compile time an expressionGravatar Benoit Jacob2010-10-19
| | | | that involves a division by zero, even if the numeric type has floating point
* Fixed bug #79.Gravatar Hauke Heibel2010-10-19
|
* re-fix the broken msvc warning in JacobiSVDGravatar Benoit Jacob2010-10-18
|
* improvements in pages 5 and 7 of the tutorial.Gravatar Benoit Jacob2010-10-18
|
* fix stupid msvc warning in jacobisvdGravatar Benoit Jacob2010-10-18
|
* add jacobiSvd() method, update test & docsGravatar Benoit Jacob2010-10-17
|
* bump to 2.92.0Gravatar Benoit Jacob2010-10-15
|
* doc typoGravatar Benoit Jacob2010-10-14
|
* JacobiSVD doc fixGravatar Benoit Jacob2010-10-14
|
* JacobiSVD:Gravatar Benoit Jacob2010-10-14
| | | | | | * fix preallocating constructors, allocate U and V of the right size for computation options * complete documentation and internal comments * improve unit test, test inf/nan values
* compilation fixGravatar Gael Guennebaud2010-10-14
|
* fix compilation and warnings with fcc 4.0.1Gravatar Gael Guennebaud2010-10-13
|
* remove SVD class (was bad code taked from elsewhere)Gravatar Benoit Jacob2010-10-12
| | | | | Use JacobiSVD for now. We do plan to reintroduce a bidiagonalizing SVD asap.