aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/permutationmatrices.cpp
Commit message (Collapse)AuthorAge
* Enable CompleteOrthogonalDecomposition::pseudoInverse with non-square ↵Gravatar Gael Guennebaud2019-11-13
| | | | fixed-size matrices.
* bug #1609: add inplace transposition unit testGravatar Gael Guennebaud2018-10-10
|
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
|
* Fix unit testGravatar Gael Guennebaud2018-04-22
|
* Fix compilation of product with inverse transpositions (e.g., mat * ↵Gravatar Gael Guennebaud2018-04-03
| | | | Transpositions().inverse())
* Fix tracking of temporaries in unit testsGravatar Gael Guennebaud2017-02-19
|
* bug #1361: fix compilation issue in mat=perm.inverse()Gravatar Gael Guennebaud2016-12-13
|
* Check number of temporaries when applying permutationsGravatar Gael Guennebaud2015-06-19
|
* Add regression test for bug #890Gravatar Gael Guennebaud2015-06-10
|
* Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* add a unit test for permutation applied to sparse objectsGravatar Gael Guennebaud2011-10-11
|
* extend PermutationMatrix and Transpositions to support arbitrary interger ↵Gravatar Gael Guennebaud2011-01-26
| | | | types and to support the Map/Wrapper model via base and derived classes
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* Next try - more Index fixes.Gravatar Hauke Heibel2010-06-20
|
* Utilize Index in all unit tests.Gravatar Hauke Heibel2010-06-20
|
* detect and implement inplace permutationsGravatar Gael Guennebaud2010-02-25
|
* optimize inverse permutationsGravatar Gael Guennebaud2010-02-25
|
* PermutationMatrix: add setIdentity and transpositions methodsGravatar Benoit Jacob2009-11-16
| | | | LU: make use of that
* PermutationMatrix:Gravatar Benoit Jacob2009-11-16
| | | | | * make multiplication order not be reversed * release-quality documentation
* PermutationMatrix: add inverse() and product of permutationsGravatar Benoit Jacob2009-11-16
|
* don't be shy and test them allGravatar Thomas Capricelli2009-11-16
|
* * add PermutationMatrixGravatar Benoit Jacob2009-11-15
* DiagonalMatrix: - add MaxSizeAtCompileTime parameter - DiagonalOnTheLeft ---> OnTheLeft - fix bug in DiagonalMatrix::setIdentity()