aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/upperbidiagonalization.cpp
Commit message (Collapse)AuthorAge
* 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
|
* Make UpperBidiagonalization accept row-major matrices (bug #769)Gravatar Jitse Niesen2014-09-12
| | | | | | | * Give temporary workspace the same storage order as original matrix * Take storage order into account when determining inner stride of rows and columns * Change one test to use a row-major matrix.
* Fix HouseholderSequence::conjugate() and ::adjoint() and add respective unit ↵Gravatar Gael Guennebaud2013-06-17
| | | | tests.
* 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
|
* make UpperBidiagonalization internal: don't want to support it, it's not used.Gravatar Benoit Jacob2010-11-23
| | | | Keeping it because it tests BandMatrix.
* Silence indexing warning.Gravatar Hauke Heibel2010-06-20
|
* allow to multiply a householder sequence and a matrix when one is real and ↵Gravatar Benoit Jacob2010-01-15
| | | | | | one is complex. This is especially important as in bidiagonalization, the band matrix is real.
* New UpperBidiagonalization classGravatar Benoit Jacob2010-01-14