aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* suppress generation of TEMPLATE_RELATIONS: they are useful but take much too ↵Gravatar Gael Guennebaud2012-02-09
| | | | much space
* fix bug #417: Map should be nested by value, not by referenceGravatar Gael Guennebaud2012-02-09
|
* Add a tutorial page on the Map class, and add a section to ↵Gravatar Tim Holy2012-02-08
| | | | FunctionsTakingEigenTypes about multiple-argument functions and the pitfalls when using Map/Expression types.
* fix bug #415: wrong return in Rotation2D::operator*=Gravatar Gael Guennebaud2012-02-08
|
* Adding support for twistedby on SparseMatrixBaseGravatar Desire NUENTSA2012-02-08
|
* Improve performance of some Transform<> operations by better preserving the ↵Gravatar Gael Guennebaud2012-02-07
| | | | | | alignment status. There probably many other places in Transform.h where such optimizations could be done.
* Added tag 3.1.0-alpha2 for changeset fe0350cf1bb635f4967f2b5d17fe7b25a07065daGravatar Gael Guennebaud2012-02-06
|
* bumpGravatar Gael Guennebaud2012-02-06
|
* fix a dozen of warnings with MSVC, and get rid of some useless throw()Gravatar Gael Guennebaud2012-02-06
|
* fix conjugation in packet_lhsGravatar Gael Guennebaud2012-02-05
|
* Update the PARDISO interface to match other sparse solvers.Gravatar Gael Guennebaud2012-02-04
| | | | | | | - Add support for Upper or Lower inputs. - Add supports for sparse RHS - Remove transposed cases, remove ordering method interface - Add full access to PARDISO parameters
* add the recent setFromTriplets() feature in the manualGravatar Gael Guennebaud2012-02-04
|
* fix several const qualifier issues: double ones, meaningless ones, some ↵Gravatar Gael Guennebaud2012-02-03
| | | | | | missing ones, etc. (note that const qualifiers are set by internall::nested)
* fix compilation errors with ICCGravatar Gael Guennebaud2012-02-03
|
* stop disabling this legitimate warning, recall that in the following the ↵Gravatar Gael Guennebaud2012-02-03
| | | | | | | const on FooRef is really meaningless: typedef Foo& FooRef; const FooRef foo;
* remove unused variablesGravatar Gael Guennebaud2012-02-03
|
* fix ctest -D Foo with MSVC 2008Gravatar Gael Guennebaud2012-02-03
|
* Enable Eigen to compile on 'pure C/C++' Gcc environment (with no inline ↵Gravatar Zuiquan2012-02-02
| | | | assembly or asm directive). Required if we want to use Eigen with Adobe Alchemy.
* shutup floating point underflow warning for this specific unit testGravatar Gael Guennebaud2012-01-31
|
* 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
|
* determine windows version from major.minor only, the patch number is irrelevant.Gravatar Gael Guennebaud2012-01-23
|
* 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
|