Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | Initial fork of unsupported module EulerAngles. | Tal Hadad | 2015-09-27 | |
|/ | ||||
* | Remove dense nested loops in IncompleteCholesky | Gael Guennebaud | 2015-08-04 | |
| | ||||
* | Numerous fixes for IncompleteCholesky. Still have to make it fully exploit ↵ | Gael Guennebaud | 2015-08-04 | |
| | | | | the sparse structure of the L factor, and improve robustness to illconditionned problems. | |||
* | Add const getters for LM parameters | Nicolas Mellado | 2015-07-17 | |
| | ||||
* | Get rid of class internal::nested<> (still have to updated Tensor module) | Gael Guennebaud | 2015-06-19 | |
| | ||||
* | code simplification | Gael Guennebaud | 2015-06-09 | |
| | ||||
* | formatting | Gael Guennebaud | 2015-06-09 | |
| | ||||
* | remove redundant dynamic allocations in GMRES | Gael Guennebaud | 2015-06-09 | |
| | ||||
* | fix some legitimate shadow warnings | Gael Guennebaud | 2015-06-09 | |
| | ||||
* | Do not abort if the folder cannot be openned! | Gael Guennebaud | 2015-06-05 | |
| | ||||
* | Improve loading of symmetric sparse matrices in MatrixMarketIterator | Gael Guennebaud | 2015-06-05 | |
| | ||||
* | Fix trivial warnings in LevenbergMarquardt module and test | Christoph Hertzberg | 2015-04-24 | |
| | ||||
* | Fix regression in DynamicSparseMatrix and SuperLUSupport wrt recent change ↵ | Gael Guennebaud | 2015-04-02 | |
| | | | | on nonZeros/nonZerosEstimate | |||
* | fix loadMarket wrt Index versus int | Gael Guennebaud | 2015-03-20 | |
| | ||||
* | Suppress some remaining Index conversion warnings | Christoph Hertzberg | 2015-02-17 | |
| | ||||
* | Fix many long to int conversion warnings: | Gael Guennebaud | 2015-02-16 | |
| | | | | | | - fix usage of Index (API) versus StorageIndex (when multiple indexes are stored) - use StorageIndex(val) when the input has already been check - use internal::convert_index<StorageIndex>(val) when val is potentially unsafe (directly comes from user input) | |||
* | Index refactoring: StorageIndex must be used for storage only (and locally ↵ | Gael Guennebaud | 2015-02-13 | |
| | | | | when it make sense). In all other cases use the global Index type. | |||
* | Merge Index-refactoring branch with default, fix PastixSupport, remove some ↵ | Gael Guennebaud | 2015-02-13 | |
|\ | | | | | | | useless typedefs | |||
| * | Fix bug #733: step by step solving is not a good example for solveWithGuess | Jan Blechta | 2015-02-10 | |
| | | ||||
| * | typo | Gael Guennebaud | 2015-02-10 | |
| | | ||||
| * | Allows Lower|Upper as a template argument of CG and MINRES: in this case the ↵ | Gael Guennebaud | 2015-02-10 | |
| | | | | | | | | full matrix will be considered. | |||
| * | bug #897: Update unsupported iterative solvers based on IterativeSolverBased. | Gael Guennebaud | 2015-02-10 | |
| | | ||||
| * | Using numext::pow instead of std::pow in poly_eval function. | Filippo Basso | 2015-02-04 | |
| | | ||||
* | | bug #877, bug #572: Introduce a global Index typedef. Rename Sparse*::Index ↵ | Christoph Hertzberg | 2014-12-04 | |
| | | | | | | | | to StorageIndex, make Dense*::StorageIndex an alias to DenseIndex. Overall this commit gets rid of all Index conversion warnings. | |||
| * | bug #876: remove usage of atanh2 in matrix power | Gael Guennebaud | 2014-12-08 | |
| | | ||||
| * | bug #876, matrix_log_compute_2x2: directly use logp1 instead of atanh2 | Gael Guennebaud | 2014-12-08 | |
|/ | ||||
* | Move D&C SVD to official SVD module. | Gael Guennebaud | 2014-10-29 | |
| | ||||
* | BDCSVD: fix CMake install (missing separator). | Benjamin Chrétien | 2014-10-24 | |
| | ||||
* | Removed weird self assignment. | Christoph Hertzberg | 2014-10-24 | |
| | ||||
* | bug #701: workaround (min) and (max) blocking ADL by introducing ↵ | Gael Guennebaud | 2014-10-20 | |
| | | | | numext::mini and numext::maxi internal functions and a EIGEN_NOT_A_MACRO macro. | |||
* | Fix D&C SVD wrt zero matrices | Gael Guennebaud | 2014-10-17 | |
| | ||||
* | D&C SVD: fix some numerical issues by truly skipping deflated singular ↵ | Gael Guennebaud | 2014-10-15 | |
| | | | | values when computing them | |||
* | D&C SVD: fix deflation of repeated singular values, fix sorting of singular ↵ | Gael Guennebaud | 2014-10-15 | |
| | | | | values, fix case of complete deflation | |||
* | Various numerical fixes in D&C SVD: I cannot make it fail with double, but ↵ | Gael Guennebaud | 2014-10-09 | |
| | | | | still need to tune for single precision, and carefully test with duplicated singular values | |||
* | Workaround MSVC issue. | Gael Guennebaud | 2014-10-07 | |
| | ||||
* | Fix missing outer() member in DynamicSparseMatrix | Gael Guennebaud | 2014-10-07 | |
| | ||||
* | D&C SVD: add scaling to avoid overflow, fix handling of fixed size matrices | Gael Guennebaud | 2014-10-06 | |
| | ||||
* | Let KroneckerProduct exploits the recently introduced generic InnerIterator ↵ | Gael Guennebaud | 2014-09-29 | |
| | | | | class. | |||
* | Correcting the ReturnType in traits<KroneckerProduct<>> to include the ↵ | Georg Drenkhahn | 2014-09-21 | |
| | | | | | | | correct Index type. Fixed mixup of types Rhs::Index and Lhs:Index in various loop variables. Added explicit type conversion for arithmetic expressions which may return a wider type. | |||
* | Fixed compiler warning on implicit integer conversion by separating index ↵ | Georg Drenkhahn | 2014-09-20 | |
| | | | | type for matrix and permutation matrix which may not be equal. | |||
* | Many improvements in Divide&Conquer SVD: | Gael Guennebaud | 2014-09-22 | |
| | | | | | | - Fix many numerical issues, in particular regarding deflation. - Add heavy debugging output to help track numerical issues (there are still fews) - Make use of Eiegn's apply-inplane-rotation feature. | |||
* | Update KroneckerProduct wrt evaluator changes | Gael Guennebaud | 2014-09-18 | |
| | ||||
* | Make MatrixFunction use nested_eval instead of nested | Gael Guennebaud | 2014-09-18 | |
| | ||||
* | Remove deprecated code not used by evaluators | Gael Guennebaud | 2014-09-18 | |
| | ||||
* | merge with default branch | Gael Guennebaud | 2014-09-14 | |
|\ | ||||
* | | Exploit sparse structure in naiveU and naiveV when updating them. | Gael Guennebaud | 2014-09-05 | |
| | | ||||
* | | Apply Householder U and V in-place. | Gael Guennebaud | 2014-09-04 | |
| | | ||||
* | | Cleaning in BDCSVD (formating, handling of transpose case, remove some for ↵ | Gael Guennebaud | 2014-09-03 | |
| | | | | | | | | loops) | |||
* | | Clean bdcsvd | Gael Guennebaud | 2014-09-02 | |
| | | ||||
* | | merge with default branch | Gael Guennebaud | 2014-09-01 | |
|\ \ |