aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* Force release builds on Windows machines in the test suite.Gravatar John Smith2009-08-28
| | | | | Added an IGNORE_CVS flag to the test suite (allows submitting local and modified repositories). Fixed the EI_OFLAG for MSVC.
* Fixed SSE related build warning on 64-bit windows systems.Gravatar John Smith2009-08-28
|
* Typos in tutorialGravatar Jitse Niesen2009-08-26
|
* add coeff(int,int), coeff(int) and value() functions to the inner product ↵Gravatar Gael Guennebaud2009-08-26
| | | | specialization
* fix installation for recently added filesGravatar Thomas Capricelli2009-08-25
|
* modernize HouseholderQR too, uniformize all that stuff, update testsGravatar Benoit Jacob2009-08-24
|
* Fix comment which may cause latex to hang when generating docsGravatar Jitse Niesen2009-08-24
|
* fix issue #43Gravatar Gael Guennebaud2009-08-24
|
* bring the modern comfort also to ColPivotingHouseholderQRGravatar Benoit Jacob2009-08-24
| | | | + some fixes in FullPivotingHouseholderQR
* finally, the correct way of dealing with zero matrices in solve()Gravatar Benoit Jacob2009-08-24
|
* add logAbsDeterminant()Gravatar Benoit Jacob2009-08-24
| | | | | move log and exp functors from Array to Core update documentation
* add test for absDeterminant()Gravatar Benoit Jacob2009-08-24
|
* give FullPivotingHouseholderQR all the modern comfortGravatar Benoit Jacob2009-08-24
|
* small improvementsGravatar Benoit Jacob2009-08-24
|
* clarifications in LU::solve() and in LU documentationGravatar Benoit Jacob2009-08-24
|
* fix bug: with complex matrices, the condition (ei_imag(c0)==RealScalar(0)) ↵Gravatar Benoit Jacob2009-08-24
| | | | | | | | being wrong could bypass the other condition in the &&. at least that's my explanation why the test_lu was often failing on complex matrices (it uses that via createRandomMatrixOfRank) and why that's fixed by this diff. also gcc 4.4 gave a warning about tailSqNorm potentially uninitialized
* mergeGravatar Benoit Jacob2009-08-23
|\
* | add ColPivotingHouseholderQRGravatar Benoit Jacob2009-08-23
| | | | | | | | rename RRQR to fullPivotingHouseholderQR
| * hm, forgot to conjugate the arguments in applyJacobiOnTheLeftGravatar Gael Guennebaud2009-08-24
| |
| * fix apply Jacobi for complexes and add documentation for some *Jacobi* functionsGravatar Gael Guennebaud2009-08-23
| |
* | let createRandomMatrixOfRank support fixed-size!Gravatar Benoit Jacob2009-08-23
|/
* Rewrite tutorial section on solving linear systemsGravatar Jitse Niesen2009-08-22
|
* fix typoGravatar Benoit Jacob2009-08-22
|
* add initial, rough, full-pivoting RRQR decompositionGravatar Benoit Jacob2009-08-22
| | | | | lots of room for improvement! and add Gael a (c) line in Householder.h
* Proper fix for linking to the Qt libraries (and others)Gravatar Marcus D. Hanwell2009-08-21
| | | | | | My initial fix was incorrect, the libraries must be quoted when being passed to the add test macro, but must be unquoted when passed to the target_link_libraries function.
* fix compilation with gcc 4.1. Indeed the path for recent gcc doesn't work ↵Gravatar Benoit Jacob2009-08-21
| | | | with gcc 4.1, and looking at the implementation of vector in g++ 4.1, it was exactly our fallback case, so use that.
* work around internal compiler error with gcc 4.1 and 4.2, reported on the forumGravatar Benoit Jacob2009-08-20
|
* adapt to API changesGravatar Benoit Jacob2009-08-20
|
* Add new unsupported modules to doc/unsupported_modules.doxGravatar Jitse Niesen2009-08-18
|
* Correct syntax error in doxygen comment.Gravatar Jitse Niesen2009-08-18
|
* * make HessenbergDecomposition uses the Householder moduleGravatar Gael Guennebaud2009-08-17
| | | | * bugfix in ei_blas_traits for .conjugate().conjugate()
* change the make householder algorithm so that the remaining coefficientGravatar Gael Guennebaud2009-08-17
| | | | is real, and make Tridiagonalization use it
* add EIGEN_TRANSFORM_PLUGINGravatar Gael Guennebaud2009-08-17
|
* make HouseholderQR uses the Householder moduleGravatar Gael Guennebaud2009-08-16
|
* add normalize and normalized overloads in AlignedVector3Gravatar Gael Guennebaud2009-08-16
|
* quick update of TopicLazyEvaluationGravatar Gael Guennebaud2009-08-16
|
* bugfix in compute_matrix_flags, optimization in LU,Gravatar Gael Guennebaud2009-08-16
| | | | | improve doc, and workaround aliasing detection in MatrixBase_eval snippet (not very nice but I don't know how to do it in a better way)
* in all decs, make the compute() methods return *thisGravatar Benoit Jacob2009-08-15
| | | | (implements feature request #18)
* rename back MayAliasBit to EvalBeforeAssigningBitGravatar Gael Guennebaud2009-08-16
|
* make SVD reuses applyJacobiGravatar Gael Guennebaud2009-08-16
|
* revert previous change in Quaternion::setFromTwoVectorsGravatar Gael Guennebaud2009-08-15
|
* svd: sort in decreasing order, remove unused codeGravatar Benoit Jacob2009-08-15
|
* add overloads of lazyAssign to detect common aliasing issue withGravatar Gael Guennebaud2009-08-15
| | | | transpose and adjoint
* fix and improve docsGravatar Benoit Jacob2009-08-15
|
* As proposed on the list:Gravatar Gael Guennebaud2009-08-15
| | | | | | | | | - rename EvalBeforeAssignBit to MayAliasBit - make .lazy() remove the MayAliasBit only, and mark it as deprecated - add a NoAlias pseudo expression, and MatrixBase::noalias() function Todo: - we have to decide whether += and -= assume no aliasing by default ? - once we agree on the API: update the Sparse module and the unit tests respectively.
* bugfix in inner-product specialization,Gravatar Gael Guennebaud2009-08-15
| | | | | compilation fix in stable norm, optimize apply householder
* my previous fix was not very goodGravatar Gael Guennebaud2009-08-15
|
* bugfix and compilation fix in ProductBaseGravatar Gael Guennebaud2009-08-15
|
* fix setFromTwoVectors because of the change in sorting of the the singular ↵Gravatar Gael Guennebaud2009-08-15
| | | | values
* fix a couple of warningsGravatar Gael Guennebaud2009-08-15
|