aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Extend unit tests to check uncompressed sparse inputs in sparse solversGravatar Gael Guennebaud2014-10-06
|
* template keyword not allowed before non-template function callGravatar Christoph Hertzberg2014-10-01
|
* fixed to make big-endian VSX work as wellGravatar Konstantinos Margaritis2014-10-01
|
* Add missing default ctor in Rotation2DGravatar Gael Guennebaud2014-09-30
|
* Avoid `unneeded-internal-declaration' warningGravatar Christoph Hertzberg2014-09-30
|
* Missing outerStride in AlignedVector3 resulted in infinite recursionGravatar Christoph Hertzberg2014-09-30
|
* Missing explicitGravatar Christoph Hertzberg2014-09-30
|
* bug #884: Copy constructor of Ref shall never malloc, constructing from ↵Gravatar Christoph Hertzberg2014-09-30
| | | | other RefBase shall only malloc if the memory layout is incompatible.
* make sure that regex does not match cmakeGravatar Christoph Hertzberg2014-09-29
|
* Related to bug #880: Accept make as well a gmake when searching the ↵Gravatar Christoph Hertzberg2014-09-29
| | | | MakeCommand. And don't include \n in match expression
* Fix compilation with GCCGravatar Gael Guennebaud2014-09-29
|
* Let KroneckerProduct exploits the recently introduced generic InnerIterator ↵Gravatar Gael Guennebaud2014-09-29
| | | | class.
* Introduce a generic InnerIterator classes compatible with evaluators.Gravatar Gael Guennebaud2014-09-29
|
* Re-enable -Wshorten-64-to-32 compilation flag.Gravatar Gael Guennebaud2014-09-29
|
* Using Index type instead of hard coded int type to prevent potential ↵Gravatar Georg Drenkhahn2014-09-22
| | | | implicit integer conversion.
* Added implicit integer conversion by using explicit integer type conversion. ↵Gravatar Georg Drenkhahn2014-09-22
| | | | Adding assert to catch overflow.
* Avoid comparisons between different index types.Gravatar Gael Guennebaud2014-09-29
|
* Using StorageIndexType for loop assigning initial permutation. Adding assert ↵Gravatar Georg Drenkhahn2014-09-22
| | | | for index overflow.
* Using Index instead of hard coded int type to prevent potential implicit ↵Gravatar Georg Drenkhahn2014-09-22
| | | | integer conversion
* Using Index instead of hard coded int type to prevent potential implicit ↵Gravatar Georg Drenkhahn2014-09-22
| | | | integer conversion
* Correcting the ReturnType in traits<KroneckerProduct<>> to include the ↵Gravatar Georg Drenkhahn2014-09-21
| | | | | | | correct Index type. Fixed mixup of types Rhs::Index and Lhs:Index in various loop variables. Added explicit type conversion for arithmetic expressions which may return a wider type.
* Replaced hard coded int types with Index types preventing implicit integer ↵Gravatar Georg Drenkhahn2014-09-21
| | | | conversions.
* Changed Diagonal::index() to return an Index type instead of int to prevent ↵Gravatar Georg Drenkhahn2014-09-21
| | | | | | possible implicit conversion from long to int. Added inline keyword to member methods.
* Using Kernel::Index type instead of int to prevent possible implicit ↵Gravatar Georg Drenkhahn2014-09-21
| | | | conversion from long to int.
* Fixed compiler warning on implicit integer conversion by separating index ↵Gravatar Georg Drenkhahn2014-09-20
| | | | type for matrix and permutation matrix which may not be equal.
* Fixed warning on implicit integer conversion in test case code by using type ↵Gravatar Georg Drenkhahn2014-09-20
| | | | VectorXd::Index instead of int.
* Add missing return derived() in ArrayBase::operator=Gravatar Gael Guennebaud2014-09-28
|
* New doc page on implementing a new expression class.Gravatar Jitse Niesen2014-09-27
|
* add VSX identifierGravatar Konstantinos Margaritis2014-09-25
|
* Fix bug #884: No malloc for zero-sized matrices or for Ref without temporariesGravatar Christoph Hertzberg2014-09-25
|
* Tridiagonalization::diagonal() and ::subDiagonal() did not work. Added unit-testGravatar Christoph Hertzberg2014-09-24
|
* Fix nested_eval<Product<> > which wrongly returned a Product<> expressionGravatar Gael Guennebaud2014-09-24
|
* bug #880: automatically preserves buildtool flags when modifying ↵Gravatar Gael Guennebaud2014-09-23
| | | | DartConfiguration.tcl file.
* member_redux constructor is explicit too. Renamed some typedefs for more ↵Gravatar Christoph Hertzberg2014-09-23
| | | | consistency.
* Removed FIXME, as it is actually necessary.Gravatar Christoph Hertzberg2014-09-23
|
* Renamed CwiseInverseReturnType to InverseReturnType for ArrayBase::inverse()Gravatar Christoph Hertzberg2014-09-23
|
* Make constructors explicit if they could lead to unintended implicit conversionGravatar Christoph Hertzberg2014-09-23
|
* Suppress stupid gcc-4.4 warningGravatar Christoph Hertzberg2014-09-23
|
* bug #882: add const-correctness failtests for CwiseUnaryView, ↵Gravatar Gael Guennebaud2014-09-23
| | | | TriangularView, and SelfAdjointView.
* Add a true ctest unit test for failtestsGravatar Gael Guennebaud2014-09-23
|
* bug #881: make SparseMatrixBase::isApprox(SparseMatrixBase) exploits sparse ↵Gravatar Gael Guennebaud2014-09-22
| | | | computations instead of converting the operands to dense matrices.
* bug #880: manually edit the DartConfiguration.tcl file to get it working ↵Gravatar Gael Guennebaud2014-09-22
| | | | with cmake 3.0.x
* bug #879: fix compilation of tri1=mat*tri2 by copying tri2 into a full ↵Gravatar Gael Guennebaud2014-09-22
| | | | temporary.
* Many improvements in Divide&Conquer SVD:Gravatar Gael Guennebaud2014-09-22
| | | | | | - Fix many numerical issues, in particular regarding deflation. - Add heavy debugging output to help track numerical issues (there are still fews) - Make use of Eiegn's apply-inplane-rotation feature.
* Merged in kmargar/eigen (pull request PR-84)Gravatar Christoph Hertzberg2014-09-22
|\ | | | | | | Add VSX support
* | Fix typos in docs for IterativeLinearSolvers moduleGravatar Jitse Niesen2014-09-21
| |
* | Fix copy-and-paste typo in SolveWithGuess assignmentGravatar Jitse Niesen2014-09-21
| | | | | | | | This fixes compilation of code snippets in BiCGSTAB docs.
| * prefetch are noops on VSX, actually disable the prefetch traitGravatar Konstantinos Margaritis2014-09-21
| |
| * Merged eigen/eigen into defaultGravatar Konstantinos Margaritis2014-09-21
| |\
| * | fix compile error on big endian altivecGravatar Konstantinos Margaritis2014-09-21
| | |