aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore
Commit message (Collapse)AuthorAge
* Fix bug #635: add isCompressed to MappedSparseMatrix for compatibilityGravatar Gael Guennebaud2013-08-02
|
* Quick fix in order to be custom-scalar friendly.Gravatar Pavel Holoborodko2013-07-29
|
* Fix ICE with ICC 11Gravatar Gael Guennebaud2013-07-19
|
* 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 SparseMatrix::conservativeResize() when one dimension is nullGravatar Gael Guennebaud2013-07-12
|
* Rationalize the use of Index type in iteratorsGravatar Gael Guennebaud2013-07-06
|
* Fix ambiguity from the origin of Index type in BlockImpl<Sparse>::InnerIteratorGravatar Gael Guennebaud2013-07-06
|
* 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 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 #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Add support with unit test for off-diagonal sparse matrix viewsGravatar Desire NUENTSA2013-06-11
|
* Fix bug #607: handle implicit transposition from sparse vector to dense vectorGravatar Gael Guennebaud2013-06-10
|
* Optimize Sparse setIdentity and add a unit testGravatar Desire NUENTSA2013-05-22
|
* Fix bug #596 : Recover plain SparseMatrix from SparseQR matrixQ()Gravatar Desire NUENTSA2013-05-21
|
* Fix return type of TriangularView::ReverseInnerIterator::operator++Gravatar Gael Guennebaud2013-05-17
|
* Fix A=A with A a SparseMatrixGravatar Gael Guennebaud2013-05-17
|
* Disallow implicit scalar conversion of SparseMatrixGravatar Gael Guennebaud2013-05-17
|
* Fix setFromTripplet with empty inputsGravatar Gael Guennebaud2013-05-03
|
* Fix bug #563: assignement to Block<SparseMatrix> is now allowed on ↵Gravatar Gael Guennebaud2013-04-12
| | | | non-compressed matrices
* Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
|
* Fix warning: implicit conversion loses integer precision in SparseMatrix. No ↵Gravatar Gael Guennebaud2013-03-20
| | | | need to use std::ptrdiff_t instead of Index since this later is requested to be signed.
* bug #563 : Sparse block assignments should be called on compressed matrices. ↵Gravatar Desire NUENTSA2013-03-11
| | | | Uncompressed matrices will be supported later
* fix sparse vector assignment from a sparse matrixGravatar Gael Guennebaud2013-03-06
|
* Fix mismatched free/deleteGravatar Desire NUENTSA2013-03-05
|
* Update doc for the sparse moduleGravatar Desire NUENTSA2013-03-05
|
* Fix overlaping operands when calling memcpyGravatar Gael Guennebaud2013-03-04
|
* Remove assumption on RowMajorBit==RowMajor and ColMajor==0Gravatar Gael Guennebaud2013-03-01
|
* Fix "routine is both "inline" and "noinline"" warningsGravatar Gael Guennebaud2013-02-28
|
* Fix "type qualifiers are meaningless here" warningsGravatar Gael Guennebaud2013-02-28
|
* bug #482: pass scalar arguments by const references. Still remains a few ↵Gravatar Gael Guennebaud2013-02-25
| | | | cases that might affect the ABI (see the bug entry)
* Fix segfault in SparseBlock::InnerIteratorGravatar Gael Guennebaud2013-02-25
|
* Add a rank-revealing feature to sparse QRGravatar Desire NUENTSA2013-02-15
|
* Change int to Index type for SparseLUGravatar Desire NUENTSA2013-01-29
|
* Fix documentation for SparseLUGravatar Desire NUENTSA2013-01-21
|
* Move the definition of DenseBase::InnerIterator to Core module. (needed to ↵Gravatar Gael Guennebaud2013-01-15
| | | | make blueNorm generic)
* Move SparseColEtree common to SparseLU and SparseQR to SparseCore and fix ↵Gravatar Desire NUENTSA2013-01-14
| | | | build issue of sparseqr
* Add support for sparse blueNormGravatar Desire NUENTSA2013-01-11
|
* Fix _data() versus data() issue in SparseVector, and add a Storage typedef ↵Gravatar Gael Guennebaud2013-01-05
| | | | just like SparseMatrix.
* Make KroneckerProductSparse inherit EigenBase instead of SparseMatrixBase, ↵Gravatar Chen-Pang He2012-10-25
| | | | for it does not provide an InnerIterator.
* Make kroneckerProduct take two arguments and return an expression, which is ↵Gravatar Chen-Pang He2012-10-15
| | | | more straight-forward.
* Remove useless empty file.Gravatar Gael Guennebaud2013-01-03
|
* Fix several documentation issuesGravatar Gael Guennebaud2012-12-24
|