aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* fix typoGravatar Thomas Capricelli2009-05-22
|
* Oops, here the actual LLT and LDLT patch.Gravatar Hauke Heibel2009-05-22
|
* Eigensolver decomposition interface unification.Gravatar Hauke Heibel2009-05-22
| | | | | | Added default ctor and public compute method as well as safe-guards against uninitialized usage. Added unit tests for the safe-guards.
* LLT and LDLT decomposition interface unification.Gravatar Hauke Heibel2009-05-22
| | | | | | Added default ctor and public compute method as well as safe-guards against uninitialized usage. Added unit tests for the safe-guards.
* LU and PartialLU decomposition interface unification.Gravatar Hauke Heibel2009-05-22
| | | | | | Added default ctor and public compute method as well as safe-guards against uninitialized usage. Added unit tests for the safe-guards.
* QR and SVD decomposition interface unification.Gravatar Hauke Heibel2009-05-22
| | | | | | Added default ctor and public compute method as well as safe-guards against uninitialized usage. Added unit tests for the safe-guards.
* add internal comment (mostly a pretext to test the eigen-commits list)Gravatar Benoit Jacob2009-05-20
|
* * add a writable generic coeff wise expression (CwiseUnaryView)Gravatar Gael Guennebaud2009-05-20
| | | | * add writable .real() and .imag() functions
* mergeGravatar Gael Guennebaud2009-05-20
|\
* | * add a FindEigen2.cmake file for referenceGravatar Gael Guennebaud2009-05-20
| | | | | | | | * parse the version number from the Macro.h header file
| * fix comments (old comments that were copied from LU)Gravatar Benoit Jacob2009-05-19
| |
| * Added pkgconfig supportGravatar Rhys Ulerich2009-05-19
| |
| * update CTestConfig file for my.cdash.orgGravatar Gael Guennebaud2009-05-19
| |
| * mergeGravatar Gael Guennebaud2009-05-19
| |\
| * | * optimize sum() for sparse matrices and vectorsGravatar Gael Guennebaud2009-05-19
| | | | | | | | | | | | * fix the row()/col() functions of some InnerVector
| * | update cdash testsuite file to use mercurialGravatar Gael Guennebaud2009-05-19
|/ /
| * Evaluate argument of matrix exponential only once.Gravatar Jitse Niesen2009-05-18
|/
* fix compilation with ICCGravatar Gael Guennebaud2009-05-18
|
* fix #3, remove inline keywords in QtAlignedMalloc (MSVC fix)Gravatar Gael Guennebaud2009-05-18
|
* fix #1 : need to nest by value the affine part in homogeneous productGravatar Gael Guennebaud2009-05-18
|
* fix bug reported by Moritz Lenz about random setterGravatar Gael Guennebaud2009-05-18
|
* Fix compilation error in createRandomMatrixOfRank()Gravatar Jitse Niesen2009-05-17
|
* * introduced method createRandomMatrixOfRank (R = U*D*V where U,V unitary, D ↵Gravatar Hauke Heibel2009-05-17
| | | | | | | | r-by-c diag. with rank non-zero values) * switched lu/qr tests to be using createRandomMatrixOfRank * removed unused methods doSomeRankPreservingOperations * removed NOTE about doSomeRankPreservingOperations
* fix #2, bug in Diagonal::MaxRowsAtCompileTime when Index==DynamicGravatar Benoit Jacob2009-05-17
|
* * added missing project definition (see doc of add_subdirectory and ↵Gravatar Hauke Heibel2009-05-17
| | | | | | EXCLUDE_FROM_ALL) to fix a win build issue * commented out non-existing unsupported-snippets and -examples
* Added tag after-hg-migration for changeset ↵Gravatar Thomas Capricelli2009-05-16
| | | | cd6c258f44faa239441a1c22ed30cc23b6955ff5
* Fix a previous mistake in moving the 2.0-beta5 in svn for some last-minuteGravatar Thomas Capricelli2009-05-16
| | | | fixes.
* Remove this old file. It was stalling in history because of a bug in svn,Gravatar Thomas Capricelli2009-05-16
| | | | | | | which did not prevent the commit (svn r722564) to 'svn copy' a directory called 'Core/' on top of an existing file 'Core' see http://websvn.kde.org/?view=rev&revision=722564
* update tagsGravatar convert-repo2009-05-16
|
* simplification (no reason anymore to write that in that convoluted way)Gravatar Benoit Jacob2009-05-15
|
* argh, forgot to re-add the throw()Gravatar Benoit Jacob2009-05-15
|
* * fix bugs in EigenTesting.cmake: it didn't work with ↵Gravatar Benoit Jacob2009-05-15
| | | | | | -DEIGEN_NO_ASSERTION_CHECKING=ON * only try...catch if exceptions are enabled
* add partial-pivoting LU decompositionGravatar Benoit Jacob2009-05-13
| | | | | | the name 'PartialLU' is not meant to be definitive! make inverse() and determinant() use it, so it's *almost* considered well tested.
* enable testing of complex numbers for taucsGravatar Gael Guennebaud2009-05-12
|
* fix adolc unit test for dynamic sizesGravatar Gael Guennebaud2009-05-12
|
* compilation fixesGravatar Gael Guennebaud2009-05-12
|
* various minor updates of some unit testsGravatar Gael Guennebaud2009-05-11
|
* bugfix from Jens Mueller (s/RowMajor/IsRowMajor)Gravatar Gael Guennebaud2009-05-11
|
* constant Diagonal ---> DiagonalBitsGravatar Benoit Jacob2009-05-10
| | | | | | introduce ei_is_diagonal to check for it DiagonalCoeffs ---> Diagonal and allow Index to by Dynamic -> add MatrixBase::diagonal(int) with unittest and doc
* CREDIT Hauke Heibel, fix MSVC warningsGravatar Benoit Jacob2009-05-09
|
* *make coeff() return a const reference (required with the recent change with ↵Gravatar Benoit Jacob2009-05-09
| | | | | | CoeffReturnType) *fix a unused variable warning
* result of our experiments with LU tuning: implement very simple formula, thatGravatar Benoit Jacob2009-05-07
| | | | turns out to be similar to Higham's formula already in use in LDLt
* apply patch from Hauke Heibel cleaning overloaded operator new/deteteGravatar Gael Guennebaud2009-05-07
|
* oops, didn't want to commit thatGravatar Benoit Jacob2009-05-07
|
* CREDIT Hauke Heibel, more std::vector::insert fixesGravatar Benoit Jacob2009-05-07
|
* CREDIT Hauke Heibel, windows compatibility fixes in MatrixExponentialGravatar Benoit Jacob2009-05-07
|
* forgot a svn add CMakeLists.txtGravatar Gael Guennebaud2009-05-07
|
* fix realloc when initial size was 0 (bug reported by Jens Mueller)Gravatar Gael Guennebaud2009-05-07
|
* *add missing overloads of setZero, etc... that were mentioned in the tutorialGravatar Benoit Jacob2009-05-06
| | | | | | | --->they go into Matrix as they resize. *add isConstant() alias to isApproxToConstant() *extend unit-test *change an assert into a static assert
* add copyright on two public headers that are not so trivial...Gravatar Benoit Jacob2009-05-06
|