aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
...
* fix compilation of sparse testsGravatar Gael Guennebaud2010-06-19
|
* Fixed spare unit test.Gravatar Hauke Heibel2010-06-19
|
* split the Sparse module into multiple ones, and move non stable parts to ↵Gravatar Gael Guennebaud2010-06-18
| | | | | | unsupported/ (see the ML for details)
* Add blocking inside HouseholderQR based on code from Vincent Lejeune.Gravatar Gael Guennebaud2010-06-17
| | | | This is all internal stuff for now.
* makes trmv works with the triangular matrix on the rightGravatar Gael Guennebaud2010-06-17
|
* add unit tests for other generalized variantsGravatar Gael Guennebaud2010-06-17
|
* * decouple the generalized selfadjoint eigenvalue problem to the standard oneGravatar Gael Guennebaud2010-06-16
| | | | * uses named values instead of bools
* improve trmm unit test and fix several bugs in trmmGravatar Gael Guennebaud2010-06-15
|
* * make the triangular matrix * matrix product works with trapezoidal matricesGravatar Gael Guennebaud2010-06-15
| | | | * extend the trmm unit test for unit diagonal
* an attempt to fix 133Gravatar Gael Guennebaud2010-06-13
|
* Fixed another enum related warning.Gravatar Hauke Heibel2010-06-12
|
* Remove printouts.Gravatar Hauke Heibel2010-06-12
|
* add a info() function in LLT to report on succes/faillureGravatar Gael Guennebaud2010-06-12
|
* merge my Dynamic -> -1 changeGravatar Benoit Jacob2010-06-11
|\
* | change the value of Dynamic to -1, since the index type is now configurable.Gravatar Benoit Jacob2010-06-11
| | | | | | | | remove EIGEN_ENUM_MIN/MAX, implement new macros instead
| * Added some verbosity on failures in order to get an idea of what is goind ↵Gravatar Hauke Heibel2010-06-11
| | | | | | | | wrong on GCC 4.3.
| * For 1x1 matrices we really need to check the abs diff of the determinants.Gravatar Hauke Heibel2010-06-11
| |
| * Merge.Gravatar Jitse Niesen2010-06-10
| |\
| | * Add line to prevent compiler warning on unused variables.Gravatar Jitse Niesen2010-06-10
| | |
| * | make the cache size mechanism future proof by adding level 2 parametersGravatar Gael Guennebaud2010-06-10
| | |
| | * Make test slightly fuzzy to account for effect of extended precision.Gravatar Jitse Niesen2010-06-10
| |/
| * * Make HouseholderSequence::evalTo works in placeGravatar Gael Guennebaud2010-06-10
| | | | | | | | | | | | | | | | | | | | * Clean a bit the Triadiagonalization making sure it the inplace function really works inplace ;), and that only the lower triangular part of the matrix is referenced. * Remove the Tridiagonalization member object of SelfAdjointEigenSolver exploiting the in place capability of HouseholdeSequence. * Update unit test to check SelfAdjointEigenSolver only consider the lower triangular part.
| * Adapted the determinant test for rank 1 matrices with zero determinant.Gravatar Hauke Heibel2010-06-10
| |
| * fix unit test when GSL is enabledGravatar Gael Guennebaud2010-06-10
| |
| * fix LDLT, now it really only uses a given triangular part!Gravatar Gael Guennebaud2010-06-09
| |
| * fix ldlt unit testGravatar Gael Guennebaud2010-06-09
| |
| * Fix devision by zero warning.Gravatar Hauke Heibel2010-06-09
| |
| * Fixed many MSVC warnings.Gravatar Hauke Heibel2010-06-09
| |
| * Fix stable_norm compilation.Gravatar Hauke Heibel2010-06-08
| |
| * Fighting for a green dashboard! Next warning's gone.Gravatar Hauke Heibel2010-06-08
| |
| * Made the supression of unused variables portable.Gravatar Hauke Heibel2010-06-08
| | | | | | | | EIGEN_UNUSED is not supported on non GCC systems.
| * Eigen types must always be passed by reference in order to retain memory ↵Gravatar Hauke Heibel2010-06-08
| | | | | | | | alignment.
| * improve/fix stable_norm unit testGravatar Gael Guennebaud2010-06-08
| |
| * Fixed integer type warnings.Gravatar Hauke Heibel2010-06-08
| |
| * Fixed GCC compilation.Gravatar Hauke Heibel2010-06-08
| |
| * Fixed more warnings.Gravatar Hauke Heibel2010-06-08
| |
| * Fixed eigensolver warning.Gravatar Hauke Heibel2010-06-08
| |
| * Add a Transpositions class to ease the representation andGravatar Gael Guennebaud2010-06-04
| | | | | | | | | | manipulation of permutations as a sequence of transpositions. Make LDLT use it.
| * Schur decomposition of 1-by-1 always converges.Gravatar Jitse Niesen2010-06-04
| |
| * Add info() method which can be queried to check whether iteration converged.Gravatar Jitse Niesen2010-06-03
| |
| * LDLT: make it honors the Lower/Upper directive and make it works inplaceGravatar Gael Guennebaud2010-06-03
| |
| * fix sparse LDLT with complexesGravatar Gael Guennebaud2010-06-03
| |
| * clean the ambiguity with insertBack and add a insertBackByOuterInner functionGravatar Gael Guennebaud2010-06-02
| |
| * improve aliasing detection for inverse and add unit testGravatar Gael Guennebaud2010-06-02
| |
| * implicit conversion to scalar for inner productGravatar Gael Guennebaud2010-06-02
| |
| * merge the backing-out of the stupid RetByVal change, and implement a simpleGravatar Benoit Jacob2010-06-01
| |\ | | | | | | | | | aliasing check in inverse, that catches simple cases like x = x.inverse()
| | * Backed out changeset 641d968a9a7ed57a3b8a3f45dea43c5ee6717f97Gravatar Benoit Jacob2010-06-01
| | |
| * | Allow user to compute only the eigenvalues and not the eigenvectors.Gravatar Jitse Niesen2010-05-31
| | |
| * | Change skipU argument to computeU - this reverses the meaning.Gravatar Jitse Niesen2010-05-31
| | | | | | | | | | | | See "skipXxx / computeXxx parameters in Eigenvalues module" on mailing list.
| * | Define non-const operator() in Reverse; enable test for this.Gravatar Jitse Niesen2010-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | Introduction of DenseCoeffBase (revision bfdc1c49730c79e6058ba1506628341559670c25 ) meant that non-const operator() is only defined if DirectAccess is set. This caused the line "m.reverse()(1,0) = 4;" in MatrixBase_reverse.cpp to fail at compile-time. Not sure this is correct solution; perhaps we should disallow this? Or make Reverse DirectAccess with a negative stride - would that break something?