aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
| * | Define sparseLU functions as staticGravatar Desire NUENTSA2012-09-25
| | |
| | * some clean-up and new comments.Gravatar giacomo po2012-09-24
| | |
* | | Remove unnecessary code. lazyAssign seems to fix all (noalias, ↵Gravatar Chen-Pang He2012-09-24
| | | | | | | | | | | | initialization, etc.)
| | * Some minor optimization.Gravatar giacomo po2012-09-24
| | |
| | * moved MINRES to unsupported. Made unit test.Gravatar giacomo po2012-09-24
| | |
* | | Remove class MatrixPowerEvaluator with enhanced existing ↵Gravatar Chen-Pang He2012-09-23
| | | | | | | | | | | | MatrixPowerReturnValue to simplicity, but docs are not completed yet.
* | | Fix bug in MatrixPower(expression) due to destruction of temporary objects. ↵Gravatar Chen-Pang He2012-09-23
| | | | | | | | | | | | Sorry for ugly pointer manipulation but it prevents copying a PlainObject.
| | * working preconditioned MINRES solverGravatar giacomo po2012-09-22
| | |
* | | Eliminate unnecessary evaluationsGravatar Chen-Pang He2012-09-23
| | |
* | | Avoid inefficient 2x2 LUGravatar Chen-Pang He2012-09-22
| | |
* | | Fix my typo in MatrixPowerBase.h, no effect on the flow.Gravatar Chen-Pang He2012-09-22
| | |
* | | Fix cost evaluation. (chain product for integral power)Gravatar Chen-Pang He2012-09-22
| | |
| * | Make Ref<> suitable for both Matrix and Array kinds. Note that Matrix kind ↵Gravatar Gael Guennebaud2012-09-22
| | | | | | | | | | | | objects can be implicitely converted to an Array kind Ref<> and vice versa
* | | Implement matrix power-matrix product againGravatar Chen-Pang He2012-09-22
| | |
* | | Enable saving intermidiate (Schur decomposition) but disable unstable ↵Gravatar Chen-Pang He2012-09-21
| | | | | | | | | | | | specialization for matrix power-matrix product.
| * | Improve BiCGSTAB : With exact preconditioner, the solution should be found ↵Gravatar Desire NUENTSA2012-09-19
| | | | | | | | | | | | in one iteration
* | | Optimize matrix functions: m_fT is triangular and trmm is faster than gemmGravatar Chen-Pang He2012-09-16
| | |
| * | workaround weird compilation error with MSVCGravatar Gael Guennebaud2012-09-14
| | |
| * | fix compilation with m.array().min/max(scalar)Gravatar Gael Guennebaud2012-09-12
| | |
| * | Merged in jdh8/eigen (pull request PR-17)Gravatar Gael Guennebaud2012-09-11
| |\ \ | |/ / |/| |
| * | fix compilation on freebsdGravatar Gael Guennebaud2012-09-11
| | |
| * | Incomplete Cholesky preconditioner... not yet stableGravatar Desire NUENTSA2012-09-11
| | |
| * | Replace COPYING.LGPL by a copy of the LGPL 2.1 (instead of LGPL 3).Gravatar Benoit Jacob2012-09-10
| | | | | | | | | | | | Indeed, all the LGPL code we use, is licensed under LGPL 2.1 (with some files being "2.1 or later").
| * | Clean the Colamd routine and add test for sparselu codeGravatar Desire NUENTSA2012-09-10
| |\ \
| | * | Clean the Colamd routineGravatar Desire NUENTSA2012-09-10
| | | |
| | * | add SparseLU in sparse benchGravatar Desire NUENTSA2012-09-10
| | | |
* | | | Fix rank-1 update for self-adjoint packed matrices.Gravatar Chen-Pang He2012-09-10
| | | |
* | | | Implement packed triangular solver.Gravatar Chen-Pang He2012-09-10
| | | |
* | | | Implement packed triangular matrix-vector product.Gravatar Chen-Pang He2012-09-09
| | | |
* | | | Use conj_expr_if to clarify what it's doing.Gravatar Chen-Pang He2012-09-09
| | | |
* | | | Extend rank-1 updates for different storage orders.Gravatar Chen-Pang He2012-09-09
| | | |
* | | | Implement rank-1 update for self-adjoint packed matrices.Gravatar Chen-Pang He2012-09-08
| | | |
* | | | Simplify Rank2Update.hGravatar Chen-Pang He2012-09-08
| | | |
* | | | Comment FIXMEs on Rank2Update.h and remove unused files.Gravatar Chen-Pang He2012-09-08
| | | |
| * | | Merged in jdh8/eigen (pull request PR-16)Gravatar Gael Guennebaud2012-09-08
| |\ \ \
| * | | | fix bug #501: remove aggressive mat/scalar optimization (was replaced by ↵Gravatar Gael Guennebaud2012-09-08
| | | | | | | | | | | | | | | | | | | | mat*(1/scalar) for non integer types)
* | | | | Implement rank-2 update for packed matrices.Gravatar Chen-Pang He2012-09-08
| | | | |
* | | | | Perform direct calls in xHEMV and xSYMV.Gravatar Chen-Pang He2012-09-08
| |/ / / |/| | |
| * | | remove stupid assert in blue norm.Gravatar Gael Guennebaud2012-09-07
| |/ /
* | | Implement SDSDOT with DSDOT and avoid allocating buffers in DSDOT.Gravatar Chen-Pang He2012-09-08
| | |
* | | Implement functors for rank-1 and rank-2 update.Gravatar Chen-Pang He2012-09-08
| | |
| * | multiple warnings for unused variableGravatar Desire NUENTSA2012-09-07
| | |
| * | merge Sparse LU branchGravatar Desire NUENTSA2012-09-07
| |\ \
| | * | Add tutorial for sparse solversGravatar Desire NUENTSA2012-09-07
| | | |
* | | | Fix memory leak in DSDOT.Gravatar Chen-Pang He2012-09-07
| | | |
* | | | BLAS: implement DSDOT and SDSDOT; update test for them.Gravatar Chen-Pang He2012-09-05
| | | |
| | * | Init perf valuesGravatar Desire NUENTSA2012-09-04
| | | |
| | * | correct bug in Blas 3 2D block updateGravatar Desire NUENTSA2012-09-04
| | | |
| | * | Bug in blas 3 2D block updateGravatar Desire NUENTSA2012-09-03
| | | |
| * | | Insert XSL styles into output XML filesGravatar Desire NUENTSA2012-09-03
| | | |