aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
Commit message (Collapse)AuthorAge
* the default ctor had no sense because of the const reference memberGravatar Gael Guennebaud2012-01-31
|
* add missing return *thisGravatar Gael Guennebaud2012-01-31
|
* rm non standard and useless overloads of is_arithmetic for long longGravatar Gael Guennebaud2012-01-31
|
* proper C++ castingGravatar Gael Guennebaud2012-01-31
|
* fix a few warnings: change of sign and missing return statementGravatar Gael Guennebaud2012-01-31
|
* fix static inline versus inline static issues (the former is the correct order)Gravatar Gael Guennebaud2012-01-31
|
* workaround "empty macro argument" warningGravatar Gael Guennebaud2012-01-31
|
* add .data() member to Diagonal<>Gravatar Gael Guennebaud2012-01-31
|
* fix some compilation errors with ICC and -strict-ansiGravatar Gael Guennebaud2012-01-31
|
* add the possibility to assemble a SparseMatrix object from a random list of ↵Gravatar Gael Guennebaud2012-01-28
| | | | triplets that may contain duplicated elements. It works in linear time, with O(1) re-allocations.
* fix memory leak in SuperLUSupportGravatar Gael Guennebaud2012-01-27
|
* honor nested types in dense * sparseGravatar Gael Guennebaud2012-01-27
|
* Document that JacobiSVD also handles complex matrices.Gravatar Jitse Niesen2012-01-26
| | | | Thanks to 'Jazzdude' for noting this on IRC.
* add missing inline keyword (linking issue)Gravatar Gael Guennebaud2012-01-26
|
* SimplicialCholesky: the shift offset must be real, and fix a comparison ↵Gravatar Gael Guennebaud2012-01-26
| | | | issue for complexes
* simple compilation fixGravatar Gael Guennebaud2012-01-26
|
* fix bug #410: fix a possible out of range access in EigenSolverGravatar Gael Guennebaud2012-01-25
|
* Check for positive definiteness in SimplicialLLTGravatar Christoph Hertzberg2012-01-14
|
* fix a nesting type issue in Sparse/TriangularViewGravatar Gael Guennebaud2012-01-25
|
* fix bug #406: Using OpenMP and Eigen causes infinite loop/deadlockGravatar Gael Guennebaud2012-01-25
| | | | | (transplanted from fd52daae87b7b1cc2618b12b4579a0eab5194d48 )
* fix warning with gcc 4.6Gravatar Gael Guennebaud2012-01-25
|
* workaround ICC compilation error with -strict-ansiGravatar Gael Guennebaud2012-01-25
|
* std::isfinite is non standardGravatar Gael Guennebaud2012-01-23
|
* LLT: improve rankUpdate to support downdates,Gravatar Gael Guennebaud2012-01-23
| | | | | LDLT: add the missing info() function, improve unit testing of rankUpdate()
* added functions to allow for cwise min/max operations with scalar argument ↵Gravatar Abraham Bachrach2012-01-11
| | | | | | | | | | | | (bug #400). added function for array.min(), array.max(), matrix.cwiseMin(), matrix.cwiseMax(). The matrix.cwiseMin/Max functions required the definition of the ConstantReturnType typedef. However, it wasn't defined until after MatrixCwiseBinaryOps was included in Eigen/src/SparseCore/SparseMatrixBase.h, so I moved those includes after the definition of the typedefs. tests for both the regular and scalar min/max functions were added as well
* optimize the packing of lhs blocks for matrix-matrix products => significant ↵Gravatar Gael Guennebaud2012-01-21
| | | | speedup for small products
* Make sure that now-fixed assert is not triggered.Gravatar Jitse Niesen2012-01-19
|
* Fix broken asserts releaved by Clang.Gravatar Keir Mierle2012-01-18
|
* fixe one more VC10 ICEGravatar Gael Guennebaud2012-01-18
|
* fix VC10 ICEGravatar Gael Guennebaud2012-01-18
|
* Fix out-of-range int constant in 4x4 inverse.Gravatar Keir Mierle2012-01-05
| | | | | (transplanted from 45bcad41b444a44d28558472ff27d5cd1207d41c )
* suppress unused variable warningsGravatar Gael Guennebaud2012-01-06
|
* set the default number of iteration to the size of the problemGravatar Gael Guennebaud2011-12-27
|
* fix bug #398, the quaternion returned by slerp was not always normalized,Gravatar Gael Guennebaud2011-12-23
| | | | add a proper unit test for slerp
* suppress an 'unused variable' warningGravatar Gael Guennebaud2011-12-22
|
* evaluate 1D sparse expressions into SparseVector and make the sparse ↵Gravatar Gael Guennebaud2011-12-22
| | | | operator<< and dot honor nested types
* fix assignment of a row-major sparse vector to a column major sparse oneGravatar Gael Guennebaud2011-12-22
|
* fix bug #391: prune was for compressed format only, now it also turns the ↵Gravatar Gael Guennebaud2011-12-20
| | | | matrix into compressed form
* fix bug #391: improper stream output for uncompressed mode, also avoid ↵Gravatar Gael Guennebaud2011-12-20
| | | | double debugging outputs for column major matrices
* fix bug #394: innerVector::nonZeros() was broken for uncompressed modeGravatar Gael Guennebaud2011-12-20
|
* workaround doxygen limitation to follow the base class of PlainObjectBaseGravatar Gael Guennebaud2011-12-19
|
* rm local fill-in ratio estimation (was broken sometimes)Gravatar Gael Guennebaud2011-12-16
|
* implement a more optimistic heuristic to predict the nnz of a saprse*sparse ↵Gravatar Gael Guennebaud2011-12-16
| | | | product
* fig bug #396: add a static assertion on the storage order of a sparse-sparse ↵Gravatar Gael Guennebaud2011-12-15
| | | | coeff-wise binary op
* Remove evaluators for 2.1 release.Gravatar Jitse Niesen2011-12-14
| | | | We plan to re-instate them when we branch 2.2 (see bug #388).
* Remove asserts that eigenvalue computation has converged (bug #354).Gravatar Jitse Niesen2011-12-12
|
* remove redundant declaration (fix compilation with clang 3.0)Gravatar Gael Guennebaud2011-12-11
|
* s/compressed()/isCompressed()Gravatar Gael Guennebaud2011-12-10
|
* Cholmod: add support for uncompressed SparseMatrix objectsGravatar Gael Guennebaud2011-12-10
|
* trivial compilation fixGravatar Gael Guennebaud2011-12-10
|