aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/array.cpp
Commit message (Collapse)AuthorAge
* More msvc 2013/2015 workaroundsGravatar Gael Guennebaud2015-06-26
|
* Avoid division by a zero complexGravatar Gael Guennebaud2015-06-25
|
* workaround msvc 2013/2015 wrong instanciation of isnan, isfinite, isinfGravatar Gael Guennebaud2015-06-25
|
* Fix isinf unit testsGravatar Gael Guennebaud2015-06-22
|
* workaround clang's broken complex divisionGravatar Gael Guennebaud2015-06-17
|
* Rename free functions isFinite, isInf, isNaN to be compatible with c++11Gravatar Gael Guennebaud2015-06-10
|
* bug #80: merge with d_hood branch on adding more coefficient-wise unary ↵Gravatar Gael Guennebaud2015-06-10
|\ | | | | | | array functors
* | bug #872: Avoid deprecated binder1st/binder2nd usage by providing custom ↵Gravatar Christoph Hertzberg2015-05-07
| | | | | | | | functors for comparison operators
* | Constructing a Matrix/Array with implicit transpose could lead to memory leaks.Gravatar Christoph Hertzberg2015-04-16
| | | | | | | | Also reduced code duplication for Matrix/Array constructors
| * Don't use M_PI since it's only guaranteed to be defined in Eigen/GeometryGravatar Deanna Hood2015-04-08
| |
| * Use M_PI instead of acos(-1) for piGravatar Deanna Hood2015-03-22
| |
| * More extensive unit tests for recent array-wise functorsGravatar Deanna Hood2015-03-18
| |
| * Add boolean not operator (!) array supportGravatar Deanna Hood2015-03-17
| |
| * Remove test of now-missing floor, ceil, round complex implementationsGravatar Deanna Hood2015-03-17
| |
| * Make cube, inverse and abs2 free-functionsGravatar Deanna Hood2015-03-17
| |
| * Rename isinf to isInfGravatar Deanna Hood2015-03-17
| |
| * Add isfinite array support as isFiniteGravatar Deanna Hood2015-03-17
| |
| * Rename isnan to isNaNGravatar Deanna Hood2015-03-17
| |
| * Add hyperbolic trigonometric functions from std array supportGravatar Deanna Hood2015-03-11
| |
| * Add log10 array supportGravatar Deanna Hood2015-03-11
| |
| * Allow calling of square(array) in addition to array.square()Gravatar Deanna Hood2015-03-11
| |
| * Additional unary coeff-wise functors (isnan, round, arg, e.g.)Gravatar Deanna Hood2015-03-11
|/
* Fix some calls to result_of on binary functors as unary ones.Gravatar Gael Guennebaud2015-02-19
|
* bug #100: add support for explicit scalar to Array conversion (as enable ↵Gravatar Gael Guennebaud2014-09-19
| | | | implicit conversion is much more tricky)
* Add documentation and very simple test for array atan(), part 2Gravatar Jitse Niesen2014-06-19
| | | | (files I forget in the previous commit).
* Fix bug #748 - array_5 test fails for seed 1392781168.Gravatar Jitse Niesen2014-02-24
|
* Added comparisons scalar to array (previously only the array to scalar was ↵Gravatar Christoph Hertzberg2013-10-17
| | | | | | possible) (Fixes bug #147) Extended the unit test for that
* Fix testing issues with x87 extra precision.Gravatar Gael Guennebaud2013-07-16
|
* Fix a couple of warnings in unit tests.Gravatar Gael Guennebaud2013-07-05
|
* fix compilation of ArrayBase::transposeInPlaceGravatar Gael Guennebaud2013-06-24
|
* Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
|
* Remove erroneously committed debugging stuff.Gravatar Gael Guennebaud2013-02-25
|
* Fix another issue related to summing up many signed values.Gravatar Gael Guennebaud2013-02-23
|
* Fix array unit test: isApprox(log(0),log(0)) is false, and summing up signed ↵Gravatar Gael Guennebaud2013-02-23
| | | | float value might result in very small values and thus large numerical errors
* Fix bug #314:Gravatar Gael Guennebaud2012-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
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* Fixed division by zero corner case in array unit test.Gravatar Hauke Heibel2012-03-09
|
* rm cC++11 featuresGravatar Gael Guennebaud2012-03-09
|
* Added support for component-wise pow (equivalent to Matlab's operator .^).Gravatar Hauke Heibel2012-03-07
|
* Added support for scalar / array division.Gravatar Hauke Heibel2012-03-02
|
* 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
* add the possibility to configure the maximal matrix size in the unit testsGravatar Gael Guennebaud2011-07-12
|
* add boolean || and && operatorsGravatar Gael Guennebaud2011-05-31
|
* Add test for sqrt() on complex Arrays.Gravatar Jitse Niesen2011-05-09
| | | | | From Gael's dashboard output of matrix_square_root test, I suspect the test committed here may fail on old gcc.
* typoGravatar Gael Guennebaud2011-02-17
|
* factorize implementation of standard real unary math functions, and add ↵Gravatar Gael Guennebaud2011-02-17
| | | | acos, asin
* add global tan functionGravatar Gael Guennebaud2011-02-03
|
* Re-enabled the missing tests, again...Gravatar Hauke Heibel2010-12-16
|
* Improved the array unit test - internal::isApprox needs to use the same ↵Gravatar Hauke Heibel2010-12-16
| | | | | | precision as VERIFY_IS_NOT_APPROX. Removed debug code from test_isApprox.