aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
...
* mergeGravatar Gael Guennebaud2010-12-31
|\
* | [Sparse] Added regression tests for the two bugfixes, the code passes all ↵Gravatar David J. Luitz2010-12-30
|/ | | | sparse_product tests
* fix HouseholderSequence API, bug #50:Gravatar Benoit Jacob2010-12-30
| | | | | | * remove ctors taking more than 2 ints * rename actualVectors to length * add length/shift/trans accessors/mutators
* move BandMatrix and TridiagonalMatrix to the internal:: namespaceGravatar Benoit Jacob2010-12-25
|
* rename macroGravatar Benoit Jacob2010-12-25
|
* bug #54 - really fix const correctness except in SparseGravatar Benoit Jacob2010-12-22
|
* 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.
* Uups - re-enabled subtests 1 to 5.Gravatar Hauke Heibel2010-12-16
|
* Fixed compound subtraction in ArrayBase where the assignment needs to be ↵Gravatar Hauke Heibel2010-12-16
| | | | | | carried out on the derived type. Added unit tests for map based component wise arithmetic.
* Added unit test for matrix creation from const raw data.Gravatar Hauke Heibel2010-12-15
|
* fix intermittend failure of schur_real test: there only is an iterative ↵Gravatar Benoit Jacob2010-12-10
| | | | process if size>2
* bug #54 - The big Map const-correctness changesGravatar Benoit Jacob2010-12-10
|
* fix bug #127. our product selection logic was flawed in that it used the ↵Gravatar Benoit Jacob2010-12-09
| | | | | | Max-sized to determine whether the size is 1. + test.
* add main ei_* functions into Eigen2SupportGravatar Gael Guennebaud2010-12-03
|
* Removed remove_const_on_value_type since the meaning is unclear and it is in ↵Gravatar Hauke Heibel2010-11-26
| | | | | | fact unused. Extened the meta unit tests.
* Postfixed add_const and remove_const by _on_value_type to express the ↵Gravatar Hauke Heibel2010-11-26
| | | | differences to the STL.
* Merge.Gravatar Jitse Niesen2010-11-26
|\
* | add a TridiagonalizationMatrixTReturnType class to make ↵Gravatar Gael Guennebaud2010-11-26
| | | | | | | | Tridiagonalization::matrixT() more efficient and future proof.
| * Compilation fix in case EIGEN_DEBUG_ASSERTS is defined.Gravatar Jitse Niesen2010-11-26
|/
* fix bug #122 : rank 2 update test and scalar multiple extraction were both wrongGravatar Gael Guennebaud2010-11-23
|
* make UpperBidiagonalization internal: don't want to support it, it's not used.Gravatar Benoit Jacob2010-11-23
| | | | Keeping it because it tests BandMatrix.
* fix bug #120 : compilation issue of trsolve unit testGravatar Gael Guennebaud2010-11-22
|
* add regression unit testGravatar Gael Guennebaud2010-11-19
|
* new feature: copy from a sparse selfadjoint view to a full sparse matrixGravatar Gael Guennebaud2010-11-15
|
* generalize our internal rank K update routine to support more general A*B ↵Gravatar Gael Guennebaud2010-11-10
| | | | | | product while evaluating only one triangular part and make it available via, e.g.: R.triangularView<Lower>() += s * A * B;
* extend unit test to cover previous bugGravatar Gael Guennebaud2010-11-05
|
* trsv: add support for inner-stride!=1, reduce code instanciation, move ↵Gravatar Gael Guennebaud2010-11-05
| | | | implementation to a new products/XX.h file
* fix bug #107: SelfAdjointEigenSolver and RowMajor (and add unit test)Gravatar Gael Guennebaud2010-11-04
|
* Additional fix to enforce the compiler to use the correct prunning method.Gravatar Hauke Heibel2010-11-02
|
* implement VERIFY in a function so it doesn't get compiled thousands of times.Gravatar Benoit Jacob2010-10-29
|
* on test failure, abort instead of exit, so we can get a stack traceGravatar Benoit Jacob2010-10-29
|
* fix bug #92 - we were doing stupid things when passing the list of libraries ↵Gravatar Benoit Jacob2010-10-28
| | | | to link to.
* Renamed cleantype to remove_all since it is close to ↵Gravatar Hauke Heibel2010-10-26
| | | | remove_{const|pointer|reference}.
* Initial fixes for bug #85.Gravatar Hauke Heibel2010-10-25
| | | | | | | Renamed meta_{true|false} to {true|false}_type, meta_if to conditional, is_same_type to is_same, un{ref|pointer|const} to remove_{reference|pointer|const} and makeconst to add_const. Changed boolean type 'ret' member to 'value'. Changed 'ret' members refering to types to 'type'. Adapted all code occurences.
* bug #86 : use internal:: namespace instead of ei_ prefixGravatar Benoit Jacob2010-10-25
|
* rename PlanarRotation -> JacobiRotationGravatar Benoit Jacob2010-10-19
|
* work around stupid msvc error when constructing at compile time an expressionGravatar Benoit Jacob2010-10-19
| | | | that involves a division by zero, even if the numeric type has floating point
* Fixed bug #79.Gravatar Hauke Heibel2010-10-19
|
* add jacobiSvd() method, update test & docsGravatar Benoit Jacob2010-10-17
|
* Added stddeque unit test dervied from the stdlist test.Gravatar Hauke Heibel2010-10-16
|
* JacobiSVD:Gravatar Benoit Jacob2010-10-14
| | | | | | * fix preallocating constructors, allocate U and V of the right size for computation options * complete documentation and internal comments * improve unit test, test inf/nan values
* fix bug #44: use VERIFY_IS_APPROX instead of exact comparison to please x87 ↵Gravatar Benoit Jacob2010-10-13
| | | | extended precision
* remove SVD class (was bad code taked from elsewhere)Gravatar Benoit Jacob2010-10-12
| | | | | Use JacobiSVD for now. We do plan to reintroduce a bidiagonalizing SVD asap.
* fix the Jacobi bug, expand unit testGravatar Benoit Jacob2010-10-12
|
* add Jacobi unit test. jacobi_5 fails, exposing bug #39.Gravatar Benoit Jacob2010-10-12
|
* set ColPivHouseholderQR as default preconditioner for JacobiSVDGravatar Benoit Jacob2010-10-11
|
* implement JacobiSVD::solve() and expand the unit testGravatar Benoit Jacob2010-10-11
|
* add option to compute thin U/V.Gravatar Benoit Jacob2010-10-08
| | | | By default nothing is computed. You have to ask explicitly for thin/full U/V if you want them.
* Rework JacobiSVD api / template parameters.Gravatar Benoit Jacob2010-10-08
| | | | | | There is now an integer QRPreconditioner template parameter, defaulting to full-piv QR. Since we have to special-case each QR dec anyway, a template template parameter didn't add much value here. There is an option NoQRPreconditioner if you know your matrices are already square (auto-detected for fixed-size matrices).