aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mixingtypes.cpp
Commit message (Collapse)AuthorAge
* Extend mixingtype unit test to check transposed cases.Gravatar Gael Guennebaud2014-04-17
|
* Enable repetition in mixing type unit testGravatar Gael Guennebaud2014-03-31
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* add the possibility to configure the maximal matrix size in the unit testsGravatar Gael Guennebaud2011-07-12
|
* fix mixingtypes unit testGravatar Gael Guennebaud2011-01-27
|
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* now that we properly support mixing real-complex: clean mixingtypes testGravatar Gael Guennebaud2010-07-22
|
* update mixing type testGravatar Gael Guennebaud2010-07-15
|
* email changeGravatar Gael Guennebaud2010-06-24
|
* fix compilation when default to row majorGravatar Gael Guennebaud2010-06-24
|
* fix array_comp *= array_realGravatar Gael Guennebaud2010-06-20
|
* fix compilationGravatar Gael Guennebaud2010-03-07
|
* fix compilationGravatar Benoit Jacob2010-03-02
|
* introduce check target, and some renamingGravatar Benoit Jacob2009-11-12
|
* big huge changes, so i dont remember everything.Gravatar Benoit Jacob2009-10-28
| | | | | | | | | | * renaming, e.g. LU ---> FullPivLU * split tests framework: more robust, e.g. dont generate empty tests if a number is skipped * make all remaining tests use that splitting, as needed. * Fix 4x4 inversion (see stable branch) * Transform::inverse() and geo_transform test : adapt to new inverse() API, it was also trying to instantiate inverse() for 3x4 matrices. * CMakeLists: more robust regexp to parse the version number * misc fixes in unit tests
* uncomment stuff commented for debugging (sorry for the noise)Gravatar Gael Guennebaud2009-09-07
|
* * add real scalar * complex matrix, real matrix * complex scalar,Gravatar Gael Guennebaud2009-09-04
| | | | | and complex scalar * real matrix overloads * allows the inner and outer product specialisations to mix real and complex
* extend mixingtype test to check diagonal products and fix the later for ↵Gravatar Gael Guennebaud2009-09-04
| | | | real*complex products
* rename the EigenSolver module to EigenvaluesGravatar Gael Guennebaud2009-09-04
|
* update mixingtype unit test to reflect current status, but it is still clearGravatar Gael Guennebaud2009-09-03
| | | | we should allow matrix products between complex and real ?
* minor compilation fixes for Sun CC and ICCGravatar Gael Guennebaud2009-07-20
|
* remove sentence "Eigen itself is part of the KDE project."Gravatar Benoit Jacob2009-05-22
| | | | it never made very precise sense. but now does it still make any?
* Sparse module: bugfix in SparseMatrix::resize(), now the indices areGravatar Gael Guennebaud2009-01-15
| | | | correctly initialized to 0.
* * In LU solvers: no need anymore to use row-major matricesGravatar Benoit Jacob2009-01-03
| | | | | | | | * Matrix: always inherit WithAlignedOperatorNew, regardless of vectorization or not * rename ei_alloc_stack to ei_aligned_stack_alloc * mixingtypes test: disable vectorization as SSE intrinsics don't allow mixing types and we just get compile errors there.
* * add unit-tests to check allowed and forbiddent mixing of different scalar ↵Gravatar Benoit Jacob2008-12-22
types * fix issues in Product revealed by this test * in Dot.h forbid mixing of different types (at least for now, might allow real.dot(complex) in the future).