Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Relax mixing-type constraints for binary coefficient-wise operators: | Gael Guennebaud | 2016-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 | ||
* | bug #1193: fix lpNorm<Infinity> for empty input. | Gael Guennebaud | 2016-06-02 |
| | |||
* | bug #178: remove additional const on nested expression, and remove several ↵ | Gael Guennebaud | 2016-01-28 |
| | | | | const_cast. | ||
* | bug #872: remove usage of deprecated bind1st. | Gael Guennebaud | 2015-06-09 |
| | |||
* | bug #679: add respective unit test | Gael Guennebaud | 2013-10-15 |
| | |||
* | Fix bug #654: allow implicit transposition in Array to Matrix and Matrix to ↵ | Gael Guennebaud | 2013-09-07 |
| | | | | Array constructors | ||
* | Fix bug #314: move remaining math functions from internal to numext namespace | Gael Guennebaud | 2013-06-10 |
| | |||
* | Clean source code and unit tests with respect to -Wunused-local-typedefs | Gael Guennebaud | 2013-04-10 |
| | |||
* | Prevent calling .norm() on integer matrices in the unit tests. | Hauke Heibel | 2013-02-28 |
| | |||
* | Fix two numerical issues in unit tests. | Gael Guennebaud | 2013-02-27 |
| | |||
* | Fix bug #314: | Gael Guennebaud | 2012-11-06 |
| | | | | | - remove most of the metaprogramming kung fu in MathFunctions.h (only keep functions that differs from the std) - remove the overloads for array expression that were in the std namespace | ||
* | fix compilation with m.array().min/max(scalar) | Gael Guennebaud | 2012-09-12 |
| | |||
* | forward resize() function from Array/Matrix-Wrapper to the nested expression ↵ | Gael Guennebaud | 2012-08-30 |
| | | | | such that mat.array().resize(a,b) is now allowed. | ||
* | Automatic relicensing to MPL2 using Keirs script. Manual fixup follows. | Benoit Jacob | 2012-07-13 |
| | |||
* | added functions to allow for cwise min/max operations with scalar argument ↵ | Abraham Bachrach | 2012-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 | ||
* | add the possibility to configure the maximal matrix size in the unit tests | Gael Guennebaud | 2011-07-12 |
| | |||
* | fix array_for_matrix unit test | Gael Guennebaud | 2011-03-15 |
| | |||
* | Added regression tests for bug #148. | Hauke Heibel | 2011-01-27 |
| | |||
* | bug #86 : use internal:: namespace instead of ei_ prefix | Benoit Jacob | 2010-10-25 |
| | |||
* | fix sum()/prod() on empty matrix making sure this does not affect fixed ↵ | Gael Guennebaud | 2010-07-16 |
| | | | | sized object, extend related unit tests including partial reduction | ||
* | email change | Gael Guennebaud | 2010-06-24 |
| | |||
* | Utilize Index in all unit tests. | Hauke Heibel | 2010-06-20 |
| | |||
* | implicit conversion to scalar for inner product | Gael Guennebaud | 2010-06-02 |
| | |||
* | the Index types change. | Benoit Jacob | 2010-05-30 |
| | | | | As discussed on the list (too long to explain here). | ||
* | Remove some Array #includes. | Jitse Niesen | 2010-01-21 |
| | |||
* | add unit tests for true array objects | Gael Guennebaud | 2010-01-18 |