aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseMatrixBase.h
Commit message (Collapse)AuthorAge
* bug #1531: expose NumDimensions for solve and sparse expressions.Gravatar Gael Guennebaud2018-06-08
|
* Make innerVector() and innerVectors() methods available to all expressions ↵Gravatar Gael Guennebaud2018-04-04
| | | | | | supported by Block. Before, only SparseBase exposed such methods.
* bug #1370: add doc for StorageIndexGravatar Gael Guennebaud2017-01-03
|
* Remove superfluous const's (can cause warnings on some Intel compilers)Gravatar Angelos Mantzaflaris2016-12-07
| | | | | (grafted from e236d3443c79f38aa721d95e64c275abbb5df10f )
* bug #1358: fix compilation for sparse += sparse.selfadjointView();Gravatar Gael Guennebaud2016-12-14
|
* Fix printing of sparse expressionsGravatar Gael Guennebaud2016-11-10
|
* Doc: add link from block methods to respective tutorial section.Gravatar Gael Guennebaud2016-09-16
|
* bug #828: clarify documentation of SparseMatrixBase's methods returning a ↵Gravatar Gael Guennebaud2016-09-16
| | | | sub-matrix.
* bug #828: clarify documentation of SparseMatrixBase's unary methods.Gravatar Gael Guennebaud2016-09-16
|
* Doc: split customizing-eigen page into sub-pages and re-structure a bit the ↵Gravatar Gael Guennebaud2016-08-30
| | | | different topics
* Relax mixing-type constraints for binary coefficient-wise operators:Gravatar Gael Guennebaud2016-06-06
| | | | | | | | | | - Replace internal::scalar_product_traits<A,B> by Eigen::ScalarBinaryOpTraits<A,B,OP> - Remove the "functor_is_product_like" helper (was pretty ugly) - Currently, OP is not used, but it is available to the user for fine grained tuning - Currently, only the following operators have been generalized: *,/,+,-,=,*=,/=,+=,-= - TODO: generalize all other binray operators (comparisons,pow,etc.) - TODO: handle "scalar op array" operators (currently only * is handled) - TODO: move the handling of the "void" scalar type to ScalarBinaryOpTraits
* Remove dead code.Gravatar Gael Guennebaud2016-06-02
|
* Implement generic scalar*expr and expr*scalar operator based on ↵Gravatar Gael Guennebaud2016-06-02
| | | | | | scalar_product_traits. This is especially useful for custom scalar types, e.g., to enable float*expr<multi_prec> without conversion.
* 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
|