aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* Add nvcc support for small eigenvalues decompositions and workaround lack of ↵Gravatar Gael Guennebaud2013-08-01
| | | | support for std::swap and std::numeric_limits
* Disable some shortcuts with nvccGravatar Gael Guennebaud2013-07-31
|
* Extend support for nvcc to Array objects and wrappersGravatar Gael Guennebaud2013-07-31
|
* merge with main branchGravatar Gael Guennebaud2013-07-17
|\
| * Bump default branch to 3.2.90Gravatar Gael Guennebaud2013-07-17
| |
| * SparseLU: make COLAMDOrdering the default ordering method.Gravatar Gael Guennebaud2013-07-17
| |
| * IncompleteLUT should not raise an assert in compute if factorize failed.Gravatar Gael Guennebaud2013-07-17
| |
| * avoid unneeded const_castGravatar Desire NUENTSA2013-07-16
| |
| * Fix Sparse LU for matrices in non compressed modeGravatar Desire NUENTSA2013-07-16
| |
| * Expose InnerSizeAtCompileTime in SparseMatrixBase (it was already present in ↵Gravatar Gael Guennebaud2013-07-16
| | | | | | | | DenseBase) and simplify sparse_vector_assign_selector (this also fix a stupid warning in old gcc versions)
| * SparseVector::assign: it is not always possible to reserve according to ↵Gravatar Gael Guennebaud2013-07-14
| | | | | | | | given non-zeros.
| * Rationalize assignment to sparse vectorsGravatar Gael Guennebaud2013-07-13
| |
| * Fix various scalar type conversion warnings.Gravatar Gael Guennebaud2013-07-12
| |
| * Fix SparseMatrix::conservativeResize() when one dimension is nullGravatar Gael Guennebaud2013-07-12
| |
| * Fix constness of diagonal() and transpose() for MSVC.Gravatar Desire Nuentsa2013-07-11
| |
| * Remove double const qualifierGravatar Gael Guennebaud2013-07-10
| |
| * Add no_assignment_operator to a few classes that must not be assigned, and ↵Gravatar Gael Guennebaud2013-07-10
| | | | | | | | fix a couple of warnings.
| * Revisit the implementation of random_default_impl for integer to make sure ↵Gravatar Gael Guennebaud2013-07-10
| | | | | | | | avoid overflows and compiler warnings.
| * Rationalize the use of Index type in iteratorsGravatar Gael Guennebaud2013-07-06
| |
| * ReturnByValue should not be assignable!Gravatar Gael Guennebaud2013-07-06
| |
| * Fix ambiguity from the origin of Index type in BlockImpl<Sparse>::InnerIteratorGravatar Gael Guennebaud2013-07-06
| |
| * bug #556: workaround mingw bug with -O3 or -fipa-cp-cloneGravatar Gael Guennebaud2013-07-05
| |
| * Fix bug #611: diag * sparse * diagGravatar Gael Guennebaud2013-07-05
| |
| * Use true compile-time branching in SparseVector::assign to handle automatic ↵Gravatar Gael Guennebaud2013-07-05
| | | | | | | | transposition.
| * Fix unresolved typename bug for MSVCGravatar Desire NUENTSA2013-07-04
| |
| * Add missing namespace prefix in pconjGravatar Gael Guennebaud2013-07-03
| |
| * Fix some doxygen errors and warnings.Gravatar Jitse Niesen2013-07-02
| |
| * doc: Mention vec=vec.head(n) in aliasing page.Gravatar Jitse Niesen2013-07-02
| |
| * Fix bicgstab for complexes, and avoid a duplicate computationGravatar Gael Guennebaud2013-07-02
| |
| * Improve BiCGSTAB robustness: fix a divide by zero and allow to restart with ↵Gravatar Gael Guennebaud2013-07-01
| | | | | | | | a new initial residual reference.
| * Add missing sparse matrix constructor from sparse self-adjoint views, and ↵Gravatar Gael Guennebaud2013-06-28
| | | | | | | | add documentation for sparse time selfadjoint matrix
| * Fiw bug #553: add support for sparse matrix time sparse self-adjoint view ↵Gravatar Desire NUENTSA2013-06-28
| | | | | | | | products
| * Fix bug #611: fix const qualifier in cwiseProduct(sparse,dense) and ↵Gravatar Gael Guennebaud2013-06-28
| | | | | | | | SparseDiagonalProduct::InnerIterator
| * Fix bug #626: add assertion on input ranges for coeff* and insert members ↵Gravatar Gael Guennebaud2013-06-28
| | | | | | | | for sparse objects
| * bug #626: add compiletime check of the Options template parameter of ↵Gravatar Gael Guennebaud2013-06-28
| | | | | | | | SparseMatrix and SparseVector. Fix eval and plain_object for sparse objects.
| * Fix bug #554: include unistd.h before checking the presence of posix_memalign.Gravatar Gael Guennebaud2013-06-26
| |
| * Introduce a TEST_SET_BUT_UNUSED_VARIABLE macro for initialized but unused ↵Gravatar Gael Guennebaud2013-06-25
| | | | | | | | variables in the unit tests and also fix a few other warnings.
* | Workarounf nvcc not being able to find RowMajor when declaring a Matrix<...> ↵Gravatar Gael Guennebaud2013-06-25
| | | | | | | | inside another namespace.
| * fix casting from double* to void* in SuperLU and Cholmod supportGravatar Gael Guennebaud2013-06-24
| |
| * CwiseUnaryView should not inherit no_assignment_operator!Gravatar Gael Guennebaud2013-06-24
| |
| * fix compilation of ArrayBase::transposeInPlaceGravatar Gael Guennebaud2013-06-24
| |
| * bug #620: fix robustness issue in JacobiSVD::solve (also fix a perf. issue)Gravatar Gael Guennebaud2013-06-24
| |
| * Fix bug #590: NEON Duplicate lane loadGravatar Simon Pilgrim2013-06-23
| |
| * Fix a couple of warningsGravatar Gael Guennebaud2013-06-21
| |
| * Disable ASM comments on non x86 architecture and do not redfine if ↵Gravatar Gael Guennebaud2013-06-21
| | | | | | | | EIGEN_ASM_COMMENT is already defined
| * Add missing using std::pow in lpNorm.Gravatar Gael Guennebaud2013-06-21
| |
| * bug #71: enable vectorization of diagonal products in more cases.Gravatar Gael Guennebaud2013-06-18
| |
| * Implement mixed static/dynamic-size .block() (bug #579)Gravatar Jitse Niesen2013-06-18
| |
| * Fix compilation issue with some compilers (when doing using Base::foo;, foo ↵Gravatar Gael Guennebaud2013-06-18
| | | | | | | | must be visible in the direct base class)
| * Fix documentation typoGravatar Rhys Ulerich2013-06-17
| |