aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* 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 #881: make SparseMatrixBase::isApprox(SparseMatrixBase) exploits sparse ↵Gravatar Gael Guennebaud2014-09-22
| | | | computations instead of converting the operands to dense matrices.
* bug #879: fix compilation of tri1=mat*tri2 by copying tri2 into a full ↵Gravatar Gael Guennebaud2014-09-22
| | | | temporary.
* 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
| | |
| * | prefetch are noops on VSXGravatar Konstantinos Margaritis2014-09-21
| | |
| * | VSX supports vec_div, implement where appropriate (float/doubles)Gravatar Konstantinos Margaritis2014-09-21
| | |
| * | VSX port passes packetmath_[1-5] tests!Gravatar Konstantinos Margaritis2014-09-20
| | |
* | | Remove double return statement in PlainObjectBase::_set()Gravatar Jitse Niesen2014-09-19
| |/ |/|
| * 32-bit floats/ints, 64-bit doubles pass packetmath tests, complex 32/64-bit ↵Gravatar Konstantinos Margaritis2014-09-19
| | | | | | | | remaining
* | bug #100: add support for explicit scalar to Array conversion (as enable ↵Gravatar Gael Guennebaud2014-09-19
| | | | | | | | implicit conversion is much more tricky)
* | Fix SparseQR for row-major inputs.Gravatar Gael Guennebaud2014-09-19
| |
* | Introduce a compilation error when using the wrong InnerIterator type.Gravatar Gael Guennebaud2014-09-19
| |
* | Remove deprecated code not used by evaluatorsGravatar Gael Guennebaud2014-09-18
| |
* | log2(int) must be inlined.Gravatar Gael Guennebaud2014-09-18
| |
* | workaround one more shadowing issue with MSVCGravatar Gael Guennebaud2014-09-16
| |
* | workaround MSVC compilation issue (shadow issue)Gravatar Gael Guennebaud2014-09-16
| |
* | workaround weird MSVC compilation issue: a typdedef in a base class shadows ↵Gravatar Gael Guennebaud2014-09-16
| | | | | | | | a template parameter of a derived class
* | Add a portable log2 function for integersGravatar Gael Guennebaud2014-09-17
| |
* | Remove not needed template keyword.Gravatar Gael Guennebaud2014-09-17
| |
* | Workaround MSVC ICEGravatar Gael Guennebaud2014-09-16
| |
* | Avoid a potential risk of recursive definition using traits to get he scalar ↵Gravatar Gael Guennebaud2014-09-15
| | | | | | | | type
* | Fix traits<Quaternion>::IsAligned when using evaluatorsGravatar Gael Guennebaud2014-09-15
| |
* | Favor column major storage for inner productsGravatar Gael Guennebaud2014-09-14
| |
* | Re-enable aliasing checks when using evaluatorsGravatar Gael Guennebaud2014-09-14
| |
* | Adapt changeset 51b3f558bb76c11149fc64971db786798f1b692cGravatar Gael Guennebaud2014-09-14
| | | | | | | | | | to evaluators: (Fix bug #822: outer products needed linear access, and add respective unit tests)
* | Fix /= when using evaluator as in changeset ↵Gravatar Gael Guennebaud2014-09-14
| | | | | | | | 2d90484450f3934db3f5db39ef37967fb9444263
* | merge with default branchGravatar Gael Guennebaud2014-09-14
|\ \
* | | Fix comparison to block sizeGravatar Gael Guennebaud2014-09-14
| | |
| * | Make UpperBidiagonalization accept row-major matrices (bug #769)Gravatar Jitse Niesen2014-09-12
| | | | | | | | | | | | | | | | | | | | | * Give temporary workspace the same storage order as original matrix * Take storage order into account when determining inner stride of rows and columns * Change one test to use a row-major matrix.
| | * First time it compiles, but fails to pass the tests.Gravatar Konstantinos Margaritis2014-09-09
| | |
* | | Fix compilation of coeff(Index) on sub-inner-panelsGravatar Gael Guennebaud2014-09-08
| | |
* | | Oops, a block size of 1 is not very useful, set it to 48 as in HouseholderQRGravatar Gael Guennebaud2014-09-05
| | |
* | | Optimization: enable cache-efficient application of HouseholderSequence.Gravatar Gael Guennebaud2014-09-04
| | |
* | | Cleaning in BDCSVD (formating, handling of transpose case, remove some for ↵Gravatar Gael Guennebaud2014-09-03
| | | | | | | | | | | | loops)
* | | Disable solve_ret_val like mechanism with evaluator enabledGravatar Gael Guennebaud2014-09-01
| | |
* | | Factorize *SVD::solve to SVDBaseGravatar Gael Guennebaud2014-09-01
| | |
* | | merge with default branchGravatar Gael Guennebaud2014-09-01
|\ \ \
* | | | Factorize solveWithGuess in IterativeSolverBaseGravatar Gael Guennebaud2014-09-01
| | | |
* | | | Make IncompleteLUT use SparseSolverBase.Gravatar Gael Guennebaud2014-09-01
| | | |
* | | | Fix usage of m_isInitialized in SparseLU and Pastix support.Gravatar Gael Guennebaud2014-09-01
| | | |
* | | | Fix regression in sparse-sparse productGravatar Gael Guennebaud2014-09-01
| | | |
* | | | Fix Cholmod support without evaluatorsGravatar Gael Guennebaud2014-09-01
| | | |
* | | | Fix sparse matrix times sparse vector.Gravatar Gael Guennebaud2014-09-01
| | | |