aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseMatrixBase.h
Commit message (Collapse)AuthorAge
* Add missing doc of Derived template parameterGravatar Gael Guennebaud2015-12-30
|
* Add support for dense.cwiseProduct(sparse)Gravatar Gael Guennebaud2015-11-04
| | | | This also fixes a regression regarding (dense*sparse).diagonal()
* Fix duplicated declarationGravatar Gael Guennebaud2015-10-29
|
* Add overloads for real times sparse<complex> operations.Gravatar Gael Guennebaud2015-10-29
| | | | This avoids real to complex conversions, and also fixes a compilation issue with MSVC.
* Add support to directly evaluate the product of two sparse matrices within a ↵Gravatar Gael Guennebaud2015-10-26
| | | | dense matrix.
* Add support for sparse = diagonalGravatar Gael Guennebaud2015-06-24
|
* bug #360: add value_type typedef to DenseBase/SparseMatrixBaseGravatar Gael Guennebaud2015-04-24
|
* bug #875: remove broken SparseMatrixBase::nonZeros and introduce a ↵Gravatar Gael Guennebaud2015-04-01
| | | | | | nonZerosEstimate() method to sparse evaluators for internal uses. Factorize some code in SparseCompressedBase.
* Add typedefs for return types of SparseMatrixBase::selfadjointViewGravatar Gael Guennebaud2015-03-09
|
* Big 957, workaround MSVC/ICC compilation issueGravatar Gael Guennebaud2015-02-18
|
* Index refactoring: StorageIndex must be used for storage only (and locally ↵Gravatar Gael Guennebaud2015-02-13
| | | | when it make sense). In all other cases use the global Index type.
* bug #877, bug #572: Introduce a global Index typedef. Rename Sparse*::Index ↵Gravatar Christoph Hertzberg2014-12-04
| | | | to StorageIndex, make Dense*::StorageIndex an alias to DenseIndex. Overall this commit gets rid of all Index conversion warnings.
* bug #882: fix various const-correctness issues with *View classes.Gravatar Gael Guennebaud2014-10-07
|
* Make constructors explicit if they could lead to unintended implicit conversionGravatar Christoph Hertzberg2014-09-23
|
* bug #881: make SparseMatrixBase::isApprox(SparseMatrixBase) exploits sparse ↵Gravatar Gael Guennebaud2014-09-22
| | | | computations instead of converting the operands to dense matrices.
* Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
|
* merge default branchGravatar Gael Guennebaud2014-08-29
|\
| * bug #857: workaround MSVC compilation issue.Gravatar Gael Guennebaud2014-08-26
| |
* | Refactor TriangularView to handle both dense and sparse objects. Introduce a ↵Gravatar Gael Guennebaud2014-07-22
| | | | | | | | glu_shape<S1,S2> helper to assemble sparse/dense shapes with triagular/seladjoint views.
* | Make sure we evaluate into temporaries matching evaluator storage order ↵Gravatar Gael Guennebaud2014-07-19
| | | | | | | | requirements
* | merge with default branchGravatar Gael Guennebaud2014-07-18
|\|
| * bug #397: add a warning for 64 to 32 bit integer conversion and fix many of ↵Gravatar Gael Guennebaud2014-07-17
| | | | | | | | these warning by splitting the index type used for storage and as size/coefficient indexes in PermutationMatrix and Transpositions.
* | merge with default branchGravatar Gael Guennebaud2014-07-02
|\|
* | Implement evaluators for sparse*dense productsGravatar Gael Guennebaud2014-07-01
| |
| * Removed the deprecated EIGEN2_SUPPORT, as previously announced. A ↵Gravatar Christoph Hertzberg2014-07-01
| | | | | | | | compilation error is raised, if this compile-switch is defined. The documentation references to the corresponding pages from Eigen3.2 now. Also, the Eigen2 testsuite has been removed.
* | Implement evaluators for sparse * sparse with auto pruning.Gravatar Gael Guennebaud2014-07-01
| |
* | Implement evaluators for sparse * sparse productsGravatar Gael Guennebaud2014-07-01
| |
* | Implement evaluators for sparse times diagonal products.Gravatar Gael Guennebaud2014-06-27
| |
* | Make operator=(EigenBase<>) uses the new assignment mechanism and introduce ↵Gravatar Gael Guennebaud2014-06-25
| | | | | | | | a generic EigenBase to EigenBase assignment kind based on the previous evalTo mechanism.
* | Implement binaryop and transpose evaluators for sparse matricesGravatar Gael Guennebaud2014-06-23
| |
* | Started to move the SparseCore module to evaluators: implemented assignment ↵Gravatar Gael Guennebaud2014-06-20
|/ | | | and cwise-unary evaluator
* Fix propagation of index typeGravatar Gael Guennebaud2014-02-13
|
* 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)
* Fix bug #611: fix const qualifier in cwiseProduct(sparse,dense) and ↵Gravatar Gael Guennebaud2013-06-28
| | | | SparseDiagonalProduct::InnerIterator
* Fix bug #607: handle implicit transposition from sparse vector to dense vectorGravatar Gael Guennebaud2013-06-10
|
* Add support for sparse blueNormGravatar Desire NUENTSA2013-01-11
|
* 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 Sparse/InnerVectorSet expression in favor of a more general Block<> ↵Gravatar Gael Guennebaud2012-11-16
| | | | | | specialization for Sparse expression. The specializations for "InnerPanels" are still preserved for efficiency reasons and because they offer additional usefull features.
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* bug #482: pass scalar by const ref - pass on the sparse moduleGravatar Gael Guennebaud2012-06-28
| | | | (also fix a compilation issue due to previous pass)
* fix documentaion of twistedByGravatar Gael Guennebaud2012-06-07
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* allow null elements in sparse assignmentsGravatar Desire NUENTSA2012-02-29
|
* Adding support for twistedby on SparseMatrixBaseGravatar Desire NUENTSA2012-02-08
|
* added functions to allow for cwise min/max operations with scalar argument ↵Gravatar Abraham Bachrach2012-01-11
| | | | | | | | | | | | (bug #400). added function for array.min(), array.max(), matrix.cwiseMin(), matrix.cwiseMax(). The matrix.cwiseMin/Max functions required the definition of the ConstantReturnType typedef. However, it wasn't defined until after MatrixCwiseBinaryOps was included in Eigen/src/SparseCore/SparseMatrixBase.h, so I moved those includes after the definition of the typedefs. tests for both the regular and scalar min/max functions were added as well
* evaluate 1D sparse expressions into SparseVector and make the sparse ↵Gravatar Gael Guennebaud2011-12-22
| | | | operator<< and dot honor nested types
* fix bug #391: improper stream output for uncompressed mode, also avoid ↵Gravatar Gael Guennebaud2011-12-20
| | | | double debugging outputs for column major matrices
* improve documentation of some sparse related classesGravatar Gael Guennebaud2011-12-02
|