aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ArrayBase.h
Commit message (Collapse)AuthorAge
* 1- Introduce sub-evaluator types for unary, binary, product, and map ↵Gravatar Gael Guennebaud2014-06-20
| | | | | | expressions to ease specializing them. 2- Remove a lot of code which should not be there with evaluators, in particular coeff/packet methods implemented in the expressions.
* Move CoeffReadCost mechanism to evaluatorsGravatar Gael Guennebaud2014-03-10
|
* Fix mixing scalar types with evaluatorsGravatar Gael Guennebaud2014-02-19
|
* Get rid of SeflCwiseBinaryOpGravatar Gael Guennebaud2014-02-18
|
* merge with default branchGravatar Gael Guennebaud2013-11-05
|\
* | Make ArrayBase operator+=(scalar) and -=(scalar) use SelfCwiseBinaryOp ↵Gravatar Gael Guennebaud2013-08-19
| | | | | | | | optimization
| * Extend support for nvcc to Array objects and wrappersGravatar Gael Guennebaud2013-07-31
|/
* Fix several documentation issuesGravatar Gael Guennebaud2012-12-24
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Get rid of include directives inside namespace blocks (bug #339).Gravatar Jitse Niesen2012-04-15
|
* fix several const qualifier issues: double ones, meaningless ones, some ↵Gravatar Gael Guennebaud2012-02-03
| | | | | | missing ones, etc. (note that const qualifiers are set by internall::nested)
* fix a few warnings: change of sign and missing return statementGravatar Gael Guennebaud2012-01-31
|
* Improve documentation of plugins.Gravatar Jitse Niesen2011-02-13
|
* fix misc warningsGravatar Thomas Capricelli2011-02-04
|
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
|
* Fixed compound subtraction in ArrayBase where the assignment needs to be ↵Gravatar Hauke Heibel2010-12-16
| | | | | | carried out on the derived type. Added unit tests for map based component wise arithmetic.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Docs: Add references to TopicClassHierarchyGravatar Jitse Niesen2010-08-22
|
* further improve compilation error message for array+=matrixGravatar Gael Guennebaud2010-08-16
|
* improve compilation error message for array+=matrix and the likesGravatar Gael Guennebaud2010-08-16
|
* * fix SelfCwiseBinaryOp traits and handling of mixed typesGravatar Gael Guennebaud2010-07-19
| | | | * improve compilation error in case of type mismatch
* Various documentation improvements.Gravatar Jitse Niesen2010-07-06
| | | | | | | * Add short documentation for Array class * Put all classes explicitly in Core module (where applicable) * Section on Modules in Quick Reference Guide * Put Page 7 after Page 6 in Contents :)
* Added doxygen info for .matrix() and .array()Gravatar Carlos Becker2010-06-28
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* finish to merge Array into Core:Gravatar Gael Guennebaud2010-06-19
| | | | | - mv Array/* into Core/ - merge Functors.h files, and move Norms.h into Dot.h
* moved purely "array" related stuff to a new module Array.Gravatar Gael Guennebaud2008-05-31
| | | | | | | | This include: - cwise Pow,Sin,Cos,Exp... - cwise Greater and other comparison operators - .any(), .all() and partial reduction - random
* * replace compile-time-if by meta-selector in Assign.hGravatar Gael Guennebaud2008-05-31
| | | | | as it speed up compilation. * fix minor typo introduced in the previous commit
* Added ArrayBit to get the ability to manipulate a Matrix like a simple scalar.Gravatar Gael Guennebaud2008-05-29
In particular this flag changes the behavior of operator* to a coeff wise product.