aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* fix issue 114: workaround cmake enable_language bugGravatar Gael Guennebaud2010-11-20
|
* IBM XL C compiler supports __attribute__((aligned(n))) syntaxGravatar Gael Guennebaud2010-11-19
|
* some cleaning in blas level 2Gravatar Gael Guennebaud2010-11-19
|
* fix typoGravatar Thomas Capricelli2010-11-19
|
* implement GERC and GERU blas routinesGravatar Gael Guennebaud2010-11-19
|
* implement GER blas routineGravatar Gael Guennebaud2010-11-19
|
* implement HER and HER2 blas routinesGravatar Gael Guennebaud2010-11-19
|
* update rank 2 update docGravatar Gael Guennebaud2010-11-19
|
* makes rank 2 update function conformant to BLAS HER2Gravatar Gael Guennebaud2010-11-19
|
* implement SYR and SYR2Gravatar Gael Guennebaud2010-11-19
|
* add regression unit testGravatar Gael Guennebaud2010-11-19
|
* fix compilation of transform * scalingGravatar Gael Guennebaud2010-11-19
|
* clean a bit AMD and SimplicialCholesky and add support for partly stored ↵Gravatar Gael Guennebaud2010-11-18
| | | | selfadjoint matrices
* Add support for sparse symmetric permutationsGravatar Gael Guennebaud2010-11-18
|
* update blas lib wrt recent change of general_matrix_matrix_triangular_productGravatar Gael Guennebaud2010-11-16
|
* Docs: aliasing and component-wise operations.Gravatar Jitse Niesen2010-11-16
|
* 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
|
* fix doc compilationGravatar Thomas Capricelli2010-11-12
|
* Docs: correct declaration of aligned std::map in TopicStlContainers.Gravatar Jose Luis Blanco2010-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
|
* extend unit test to cover previous bugGravatar Gael Guennebaud2010-11-05
|
* 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 error handling of level 1 routinesGravatar Gael Guennebaud2010-11-04
|
* add a minimum degree ordering routine based on CSparse (LGPL) and a new ↵Gravatar Gael Guennebaud2010-11-04
| | | | built-in sparse cholesky decomposition
* fix bug #107: SelfAdjointEigenSolver and RowMajor (and add unit test)Gravatar Gael Guennebaud2010-11-04
|
* fixes related to ei_ -> internal changeGravatar Gael Guennebaud2010-11-04
|
* mergeGravatar Gael Guennebaud2010-11-04
|\
* | implement proper error handling in level 3 routinesGravatar Gael Guennebaud2010-11-03
| |
* | improve detection of errosGravatar Gael Guennebaud2010-11-03
| |
| * fix matrix product bug with OpenMPGravatar Gael Guennebaud2010-11-03
| |
| * rm auto normalization in favor of clampingGravatar Gael Guennebaud2010-11-03
| |
| * Additional fix to enforce the compiler to use the correct prunning method.Gravatar Hauke Heibel2010-11-02
| |
| * 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 !
| * implement VERIFY in a function so it doesn't get compiled thousands of times.Gravatar Benoit Jacob2010-10-29
| |
| * on test failure, abort instead of exit, so we can get a stack traceGravatar Benoit Jacob2010-10-29
| |
| * add eigen2support Transform typedefs, add Eigen2To3 section on TransformGravatar Benoit Jacob2010-10-29
| |
| * fix bug #92 - we were doing stupid things when passing the list of libraries ↵Gravatar Benoit Jacob2010-10-28
| | | | | | | | to link to.