aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
...
* bug #488: Add setShift method (and functionality) to Cholmod classesGravatar Christoph Hertzberg2012-07-04
| | | | Also check for Success of numerical factorization
* fix bug #486: template speacialization of member functions must be declared ↵Gravatar Gael Guennebaud2012-07-05
| | | | inline to avoid duplicate references
* Move implementation of coeff() &c to Matrix/Array evaluator.Gravatar Jitse Niesen2012-07-05
|
* fix bug #487: isometry * scaling was not compilingGravatar Gael Guennebaud2012-07-04
|
* fix typoGravatar Konstantinos Margaritis2012-07-04
|
* fix NEON port, use vget_lane_*() instead of temporary variables (saves extraGravatar Konstantinos Margaritis2012-07-04
| | | | | load/store), following advice by Josh Bleecher Snyder <josharian@gmail.com>. Also implement pmadd() using vmla instead of nested padd/pmul.
* Doc: add an example for HouseholderQR::householderQ()Gravatar Gael Guennebaud2012-07-02
|
* workaround compilation issue with MSVC 2005Gravatar Gael Guennebaud2012-07-02
|
* Implement A.noalias() = B * C without temporariesGravatar Jitse Niesen2012-06-29
| | | | | | | | * Wrap expression inside EvalToTemp in copy_using_evaluators() if we assume aliasing for that expression (that is, for products) * Remove temporary kludge of evaluating expression to temporary in AllAtOnce traversal * Implement EvalToTemp expression object
* Make product eval-at-once.Gravatar Jitse Niesen2012-06-29
| | | | | | | | | * Make product EvalAtOnce in cases OuterProduct, GemmProduct and GemvProduct * Ensure that product evaluators are nested inside EvalToTemp evaluator * As temporary kludge, evaluate expression to temporary in AllAtOnce traversal and pass expression operator to evalTo()
* Implement eval-at-once in evaluator.Gravatar Jitse Niesen2012-06-29
| | | | | | | | - Add evaluator_traits with HasEvalTo flag, which is true if evaluator has evalTo() function. - Add AllAtOnce traversal, which calls evalTo() in evaluator. - If source evaluator in copy_using_evaluator has HasEvalTo set, then use AllAtOnce traversal.
* Implement interface for NoAlias assignments.Gravatar Jitse Niesen2012-06-29
| | | | | | | | * Rename the old copy_using_evaluators to noalias_copy_using_evaluators. * Write a new copy_using_evaluators which strips NoAlias expression, if present, and calls noalias_copy_using_evaluators; in future, it will also take care of aliasing in products. * Add expression() getter to NoAlias.
* Move (part of) evaluation of products to evaluator objects.Gravatar Jitse Niesen2012-06-29
| | | | | | | * Copy implementation from CoeffBasedProduct. * Copy implementation from GeneralProduct in InnerProduct case. * For GeneralProduct in other cases, call the evalTo() member function with expression objects in constructor of evaluator.
* bug #482: pass scalar by const ref - pass on the sparse moduleGravatar Gael Guennebaud2012-06-28
| | | | (also fix a compilation issue due to previous pass)
* Resize lhs automatically in copy_using_evaluator().Gravatar Jitse Niesen2012-06-28
|
* fix implicit scalar conversionGravatar Gael Guennebaud2012-06-28
|
* bug #482: pass scalar arguments by const references. This changeset only ↵Gravatar Gael Guennebaud2012-06-28
| | | | concerns the Core and Geometry modules
* fix performance regression due to check_rows_cols_for_overflow and add ↵Gravatar Gael Guennebaud2012-06-26
| | | | | | appropriate assertions in the PlainObjectBase::resize() functions. The fix consists in disabling this useless test for statically allocated objects.
* remove dynamic allocation for fixed size object and triangular matrix-matrix ↵Gravatar Gael Guennebaud2012-06-26
| | | | products
* Fix bug in {Matrix,Array}Wrapper evaluatorGravatar Jitse Niesen2012-06-24
|
* Fix bug in evaluators with sliced vectorization.Gravatar Jitse Niesen2012-06-24
|
* typoGravatar Gael Guennebaud2012-06-24
|
* put the resurected files into the Eigen namespaceGravatar Gael Guennebaud2012-06-22
|
* fix most of the shadow warnings in Core/*.hGravatar Gael Guennebaud2012-06-22
|
* resurrect expression evaluatorsGravatar Gael Guennebaud2012-06-22
|
* bump default branch to 3.1.90Gravatar Gael Guennebaud2012-06-22
|
* bump to 3.1.0-rc2Gravatar Gael Guennebaud2012-06-21
|
* fix compilation issue with MKL's backendGravatar Gael Guennebaud2012-06-21
|
* extend documentation of *Support modulesGravatar Gael Guennebaud2012-06-21
|
* fix bug #478: RealSchur failed on a zero matrix.Gravatar Gael Guennebaud2012-06-20
|
* fix bug #477: warning with gcc 4.7Gravatar Gael Guennebaud2012-06-20
|
* prevent the allocation of the two preconditioner, only one is neededGravatar Gael Guennebaud2012-06-15
|
* fix a warning and formattingGravatar Gael Guennebaud2012-06-15
|
* fix a few warningsGravatar Gael Guennebaud2012-06-15
|
* bump to 3.1.0-rc1Gravatar Gael Guennebaud2012-06-14
|
* bug #466: better fix for the race condition: this new patch add an ↵Gravatar Gael Guennebaud2012-06-14
| | | | | | | initParallel() function which must be called at the initialization time of any multi-threaded application calling Eigen from multiple threads.
* fix bug #475: .exp() now returns +inf when overflow occurs (SSE)Gravatar Gael Guennebaud2012-06-14
|
* disable the MKL's vm*powx functions on windowsGravatar Gael Guennebaud2012-06-14
|
* simplify and clean a bit the Pastix support moduleGravatar Gael Guennebaud2012-06-12
|
* fix inclusion orderGravatar Gael Guennebaud2012-06-12
|
* avoid dynamic allocation for fixed size triangular solvingGravatar Gael Guennebaud2012-06-12
|
* Fix bug #466: race condition destected by helgrind in manage_caching_sizes.Gravatar Gael Guennebaud2012-06-08
| | | | After all, the solution based on threadprivate is not that costly.
* workaround ICC 11.1 compilation issueGravatar Gael Guennebaud2012-06-08
|
* fix ambiguous calls in the functors by prefixing function calls with internal::Gravatar Gael Guennebaud2012-06-08
|
* For consistency, Simplicial* now factorizes P A P^-1 (instead of P^-1 A P).Gravatar Gael Guennebaud2012-06-07
| | | | Document how is applied the permutation in Simplicial* .
* fix documentaion of twistedByGravatar Gael Guennebaud2012-06-07
|
* bump to beta1Gravatar Gael Guennebaud2012-06-06
|
* fix installation pathGravatar Gael Guennebaud2012-06-06
|
* Fix stopping criteria of CGGravatar Gael Guennebaud2012-06-06
|
* fix umfpack for row-majorGravatar Gael Guennebaud2012-06-06
|