Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Automatic relicensing to MPL2 using Keirs script. Manual fixup follows. | Benoit Jacob | 2012-07-13 |
| | |||
* | fix a few warnings | Gael Guennebaud | 2012-06-15 |
| | |||
* | modify the unit tests of sparse linear solvers to enable tests on real ↵ | Desire NUENTSA | 2012-03-29 |
| | | | | matrices, from MatrixMarket for instance | ||
* | add more support for uncompressed mode | Gael Guennebaud | 2011-11-30 |
| | |||
* | move DynamicSparseMatrix to SparseExtra | Gael Guennebaud | 2011-10-24 |
| | |||
* | 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 ;) | ||
* | Sparse: fix long int as index type in simplicial cholesky and other ↵ | Gael Guennebaud | 2011-06-06 |
| | | | | decompositions | ||
* | extend sparse product unit tests | Gael Guennebaud | 2011-03-22 |
| | |||
* | fix compilation of unit tests with clang | Benoit Jacob | 2011-02-27 |
| | |||
* | EIGEN_YES_I_KNOW_SPARSE_MODULE_IS_NOT_STABLE_YET must be defined to use ↵ | Gael Guennebaud | 2011-01-27 |
| | | | | Eigen/Sparse | ||
* | bug #86 : use internal:: namespace instead of ei_ prefix | Benoit Jacob | 2010-10-25 |
| | |||
* | fix compilation of sparse tests | Gael Guennebaud | 2010-06-19 |
| | |||
* | Fixed spare unit test. | Hauke Heibel | 2010-06-19 |
| | |||
* | clean the ambiguity with insertBack and add a insertBackByOuterInner function | Gael Guennebaud | 2010-06-02 |
| | |||
* | remove sentence "Eigen itself is part of the KDE project." | Benoit Jacob | 2009-05-22 |
| | | | | it never made very precise sense. but now does it still make any? | ||
* | new simplified API to fill sparse matrices (the old functions are | Gael Guennebaud | 2009-05-04 |
| | | | | | | | | | | | | deprecated). Basically there are now only 2 functions to set a coefficient: 1) mat.coeffRef(row,col) = value; 2) mat.insert(row,col) = value; coeffRef has no limitation, insert assumes the coeff has not already been set, and raises an assert otherwise. In addition I added a much lower level, but more efficient filling mechanism for internal use only. | ||
* | disable unordered_map for ICC | Gael Guennebaud | 2009-01-26 |
| | |||
* | fix a few remaining warnings | Gael Guennebaud | 2009-01-23 |
| | | | | and fix commainitializer unit test with MSVC | ||
* | add a flexible sparse matrix class designed for fast matrix assembly | Gael Guennebaud | 2009-01-19 |
| | |||
* | Sparse module: add support for sparse selfadjoint * dense | Gael Guennebaud | 2009-01-15 |
| | |||
* | another warning fix | Gael Guennebaud | 2009-01-12 |
| | |||
* | fix a warning in test/sparse.h | Gael Guennebaud | 2009-01-12 |
| | |||
* | Sparse module: | Gael Guennebaud | 2009-01-07 |
| | | | | | | | | * extend unit tests * add support for generic sum reduction and dot product * optimize the cwise()* : this is a special case of CwiseBinaryOp where we only have to process the coeffs which are not null for *both* matrices. Perhaps there exist some other binary operations like that ? | ||
* | Several improvements in sparse module: | Gael Guennebaud | 2008-11-05 |
* add a LDL^T factorization with solver using code from T. Davis's LDL library (LPGL2.1+) * various bug fixes in trianfular solver, matrix product, etc. * improve cmake files for the supported libraries * split the sparse unit test * etc. |