Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Docs: correct declaration of aligned std::map in TopicStlContainers. | Jose Luis Blanco | 2010-11-12 | |
| | ||||
* | properly use nested types | Gael Guennebaud | 2010-11-10 | |
| | ||||
* | prevent warning | Gael Guennebaud | 2010-11-10 | |
| | ||||
* | generalize our internal rank K update routine to support more general A*B ↵ | Gael Guennebaud | 2010-11-10 | |
| | | | | | | product while evaluating only one triangular part and make it available via, e.g.: R.triangularView<Lower>() += s * A * B; | |||
* | add missing specialization | Gael Guennebaud | 2010-11-09 | |
| | ||||
* | extend unit test to cover previous bug | Gael Guennebaud | 2010-11-05 | |
| | ||||
* | fix Eigen's trsv for complexes | Gael Guennebaud | 2010-11-05 | |
| | ||||
* | blas level2: gemv and trsv are green | Gael Guennebaud | 2010-11-05 | |
| | ||||
* | trsv: simplifications/cleaning | Gael Guennebaud | 2010-11-05 | |
| | ||||
* | trsv: add support for inner-stride!=1, reduce code instanciation, move ↵ | Gael Guennebaud | 2010-11-05 | |
| | | | | implementation to a new products/XX.h file | |||
* | fix error handling of level 1 routines | Gael Guennebaud | 2010-11-04 | |
| | ||||
* | add a minimum degree ordering routine based on CSparse (LGPL) and a new ↵ | Gael Guennebaud | 2010-11-04 | |
| | | | | built-in sparse cholesky decomposition | |||
* | fix bug #107: SelfAdjointEigenSolver and RowMajor (and add unit test) | Gael Guennebaud | 2010-11-04 | |
| | ||||
* | fixes related to ei_ -> internal change | Gael Guennebaud | 2010-11-04 | |
| | ||||
* | merge | Gael Guennebaud | 2010-11-04 | |
|\ | ||||
* | | implement proper error handling in level 3 routines | Gael Guennebaud | 2010-11-03 | |
| | | ||||
* | | improve detection of erros | Gael Guennebaud | 2010-11-03 | |
| | | ||||
| * | fix matrix product bug with OpenMP | Gael Guennebaud | 2010-11-03 | |
| | | ||||
| * | rm auto normalization in favor of clamping | Gael Guennebaud | 2010-11-03 | |
| | | ||||
| * | Additional fix to enforce the compiler to use the correct prunning method. | Hauke Heibel | 2010-11-02 | |
| | | ||||
| * | Fix bug #65. | Hauke Heibel | 2010-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. | Hauke Heibel | 2010-11-02 | |
| | | ||||
| * | Fixed compilation due to lacking Transform definitions. | Hauke Heibel | 2010-11-01 | |
| | | ||||
| * | oops (rm commented code) | Gael Guennebaud | 2010-11-01 | |
| | | ||||
| * | Let's be safe: enable auto normalization is quaternion to angle-axis code ↵ | Gael Guennebaud | 2010-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. | Benoit Jacob | 2010-10-29 | |
| | | ||||
| * | on test failure, abort instead of exit, so we can get a stack trace | Benoit Jacob | 2010-10-29 | |
| | | ||||
| * | add eigen2support Transform typedefs, add Eigen2To3 section on Transform | Benoit Jacob | 2010-10-29 | |
| | | ||||
| * | fix bug #92 - we were doing stupid things when passing the list of libraries ↵ | Benoit Jacob | 2010-10-28 | |
| | | | | | | | | to link to. | |||
| * | document LvalueBit better | Benoit Jacob | 2010-10-28 | |
| | | ||||
| * | generalize the prune function | Gael Guennebaud | 2010-10-28 | |
| | | ||||
| * | fix sparse rankUpdate and triangularView iterator | Gael Guennebaud | 2010-10-27 | |
| | | ||||
| * | add the possibility to solve for sparse rhs with Cholmod | Gael Guennebaud | 2010-10-27 | |
| | | ||||
| * | Fixed bug #95 by changing _M_IX64 to _M_X64 as proposed by Jan Schlicht. | Hauke Heibel | 2010-10-27 | |
| | | ||||
| * | Merge | Hauke Heibel | 2010-10-26 | |
| |\ | ||||
| | * | rm the useless SparseSolverBase class and provide more compile time traits | Gael Guennebaud | 2010-10-26 | |
| | | | ||||
| * | | Renamed cleantype to remove_all since it is close to ↵ | Hauke Heibel | 2010-10-26 | |
| |/ | | | | | | | remove_{const|pointer|reference}. | |||
| * | fix compilation (bad internal:: stuff) | Gael Guennebaud | 2010-10-26 | |
| | | ||||
| * | fix compilation and unit test of adolc | Gael Guennebaud | 2010-10-26 | |
| | | ||||
| * | fix bug #94: add #include src/misc/Solve.h in SparseExtra | Gael Guennebaud | 2010-10-26 | |
| | | ||||
| * | add new API for Cholmod preserving the legacy one for now | Gael Guennebaud | 2010-10-26 | |
| | | ||||
| * | 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. | |||
| * | Allow unset ${CMAKE_BUILD_TYPE} which is required for some targets and ↵ | Hauke Heibel | 2010-10-25 | |
| | | | | | | | | corresponding to using default values. | |||
| * | make polynomialsolver test compile faster | Benoit Jacob | 2010-10-25 | |
| | | ||||
| * | error out on bad build type | Benoit Jacob | 2010-10-25 | |
| | | ||||
| * | adapt mpreal to eigen3 mathfunctions system | Benoit Jacob | 2010-10-25 | |
| | | ||||
| * | bug #86 : use internal:: namespace instead of ei_ prefix | Benoit Jacob | 2010-10-25 | |
| | | ||||
| * | remove build type tweaking | Benoit Jacob | 2010-10-23 | |
| | | ||||
| * | Use 'Release' as default when build type is not specified. | Jitse Niesen | 2010-10-22 | |
| | | | | | | | | | | Otherwise, "cmake /path/to/eigen/" in an empty build directory, as specified on the CMake page on the wiki, yields a fatal error. | |||
| * | don't change the build type, fatal error if bad build type | Benoit Jacob | 2010-10-21 | |
| | |