| Commit message (Expand) | Author | Age |
... | |
| * | Document on the return type of MatrixPower::operator() | Chen-Pang He | 2013-07-13 |
* | | Add no_assignment_operator to a few classes that must not be assigned, and fi... | Gael Guennebaud | 2013-07-10 |
| * | Make non-conversion unary constructors explicit. | Chen-Pang He | 2013-07-11 |
| * | Add assertion against undefined matrix power. | Chen-Pang He | 2013-07-10 |
| * | We need not prohibit assignment here. Thanks to changeset 3edd4681f2f04c1164... | Chen-Pang He | 2013-07-07 |
| * | Prevent copying with internal::noncopyable. | Chen-Pang He | 2013-07-07 |
| * | Const-correct the scaling functor. | Chen-Pang He | 2013-07-05 |
| * | Avoid pow(Scalar, int) for C++11 conformance. | Chen-Pang He | 2013-07-05 |
| * | Let complex power fall back to "log, scale, exp". | Chen-Pang He | 2013-07-05 |
| * | Enable singular matrix power using unitary similarities. | Chen-Pang He | 2013-07-04 |
|/ |
|
* | Simplify class hierarchy. | Chen-Pang He | 2013-07-04 |
* | Remove unreachable MatrixPowerTriangular, paving the way to future cleanups. | Chen-Pang He | 2013-07-04 |
* | Clean namespace pollution. | Chen-Pang He | 2013-06-25 |
* | Matrix square root can process 0 eigenvalue. | Chen-Pang He | 2013-06-24 |
* | Remove mat.pow * vec specialization, which causes segfault for mat.pow * mat.pow | Chen-Pang He | 2013-06-24 |
* | Fix segfault and bug with equal eivals in matrix power (bug #614). | Chen-Pang He | 2013-06-24 |
* | Fix warning typedef XXX locally defined but not used | Gael Guennebaud | 2013-06-21 |
* | new unsupported and not finished SVD, using a divide and conquert algorithm, ... | Gauthier Brun | 2013-06-19 |
* | bug #230, fix compilation issues and wrong static assertions | Kolja Brix | 2013-06-18 |
* | compilation fixes in unsupported | Gael Guennebaud | 2013-06-12 |
* | Fix bug #314: move remaining math functions from internal to numext namespace | Gael Guennebaud | 2013-06-10 |
* | Fix bug #596 : Recover plain SparseMatrix from SparseQR matrixQ() | Desire NUENTSA | 2013-05-21 |
* | Fix bug #482: pass scalar value by const reference (it remained a few cases) | Gael Guennebaud | 2013-04-12 |
* | Clean source code and unit tests with respect to -Wunused-local-typedefs | Gael Guennebaud | 2013-04-10 |
* | adapt AutoDiff to scalar_product_traits | Gael Guennebaud | 2013-03-20 |
* | Add complex support to dgmres and the unit test | Desire NUENTSA | 2013-03-20 |
* | Bug567 : Fix iterative solvers to immediately return when the initial guess i... | Desire NUENTSA | 2013-03-20 |
* | Handle zero right hand side in CG and GMRES | Desire NUENTSA | 2013-03-20 |
* | Patch by Kolja Brix <brix@igpm.rwth-aachen.de> that fixes bug #565 and adds a... | Christoph Hertzberg | 2013-03-17 |
* | Fix bug #561: remove useless sign macro | Gael Guennebaud | 2013-03-07 |
* | Fix a couple of remaining warnings (missing newlines, inline-noinline, meanin... | Gael Guennebaud | 2013-03-01 |
* | Fix "missing return statement at end of non-void function" | Gael Guennebaud | 2013-03-01 |
* | MSVC fix; the compiler failed to detect the correct overload. | Hauke Heibel | 2013-02-28 |
* | Protect min with parenthesis in IncompleteLLT | Gael Guennebaud | 2013-02-22 |
* | Set built-in sparse QR as the default sparse solver and add ComputationInfo ... | Desire NUENTSA | 2013-02-20 |
* | Fix some MPL2/LGPL lisencing confusions | Gael Guennebaud | 2013-02-06 |
* | Replace assert() by eigen_assert() (fixes bug #548). | Jitse Niesen | 2013-02-02 |
* | I think it's OK to let XprHelper.h determine the nested type. | Chen-Pang He | 2012-10-15 |
* | Remove unused typedef (traits<MatrixPowerProduct>::PlainObject) for brevity. | Chen-Pang He | 2012-10-14 |
* | Simplify traits<MatrixPowerProduct>: StorageKind must be Dense because Matrix... | Chen-Pang He | 2012-10-14 |
* | Use the nested type instead of const reference | Chen-Pang He | 2012-10-14 |
* | Just tidy up: no need to specify template parameters inside class body. | Chen-Pang He | 2012-10-14 |
* | Make MatrixPowerTriangularAtomic::computePade static because it should be. | Chen-Pang He | 2012-10-07 |
* | Use simplified return type, trying to work around MSVC. | Chen-Pang He | 2012-10-03 |
* | Make use of TRMM (speed up), and remove useless condition (the triangular don... | Chen-Pang He | 2012-10-02 |
* | Make better decision on PartialPivLU vs inverse(): We have specialized invers... | Chen-Pang He | 2012-10-02 |
* | Add test for real MatrixPowerTriangular. | Chen-Pang He | 2012-09-30 |
* | Avoid Schur decomposition on (quasi-)triangular matrices. (Huge speed up!) | Chen-Pang He | 2012-09-30 |
* | Implement complex MatrixPowerTriangular. There are still problems with real one. | Chen-Pang He | 2012-09-30 |
* | Make KroneckerProductSparse inherit EigenBase instead of SparseMatrixBase, fo... | Chen-Pang He | 2012-10-25 |