aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* MIsc. source and comment typosGravatar luz.paz2018-03-11
| | | | Found using `codespell` and `grep` from downstream FreeCAD
* Add static assertion for fixed sizes Ref<>Gravatar Gael Guennebaud2018-03-09
|
* Implement better static assertion checking to make sure that the first ↵Gravatar Gael Guennebaud2018-03-09
| | | | assertion is a static one and not a runtime one.
* Add static assertion on selfadjoint-view's UpLo parameter.Gravatar Gael Guennebaud2018-03-09
|
* add unit test for SimplicialCholesky and Boost multiprec.Gravatar Gael Guennebaud2018-02-16
|
* bug #1517: fix triangular product with unit diagonal and nested scaling ↵Gravatar Gael Guennebaud2018-02-09
| | | | factor: (s*A).triangularView<UpperUnit>()*B
* Fix linear indexing in generic block evaluation.Gravatar Gael Guennebaud2018-02-09
|
* Fix compilation of stableNorm with some expressions as inputGravatar Gael Guennebaud2017-12-15
|
* fix unit testGravatar Gael Guennebaud2017-12-14
|
* Fix packet and alignment propagation logic of Block<Xpr> expressions. In ↵Gravatar Gael Guennebaud2017-12-14
| | | | particular, (A+B).col(j) lost vectorisation.
* fix header inclusionGravatar Gael Guennebaud2017-12-14
|
* bug #1479: fix failure detection in LDLTGravatar Gael Guennebaud2017-11-16
|
* Add support for SuiteSparse's KLU routinesGravatar Kyle Vedder2017-10-04
|
* Fix compilation of Vector::operator()(enum) by treating enums as IndexGravatar Gael Guennebaud2017-09-07
|
* Fix mixing types in sparse matrix products.Gravatar Gael Guennebaud2017-09-02
|
* Added support for CUDA 9.0.Gravatar Benoit Steiner2017-08-31
|
* Handle min/max/inf/etc issue in cuda_fp16.h directly in test/main.hGravatar Gael Guennebaud2017-08-24
|
* bug #1462: remove all occurences of the deprecated __CUDACC_VER__ macro by ↵Gravatar Gael Guennebaud2017-08-24
| | | | introducing EIGEN_CUDACC_VER
* bug #1457: add setUnit() methods for consistency.Gravatar Gael Guennebaud2017-08-22
|
* bug #1449: fix redux_3 unit testGravatar Gael Guennebaud2017-08-22
|
* bug #1461: fix compilation of Map<const Quaternion>::x()Gravatar Gael Guennebaud2017-08-22
|
* Gub 1453: fix Map with non-default inner-stride but no outer-stride.Gravatar Gael Guennebaud2017-08-22
|
* Add unit test for has_ReturnTypeGravatar Gael Guennebaud2017-08-17
|
* Disable BDCSVD preallocation check.Gravatar Gael Guennebaud2017-07-20
|
* Fix warningGravatar Gael Guennebaud2017-06-27
|
* Fix compilation with some compilersGravatar Gael Guennebaud2017-06-09
|
* bug #1405: enable StrictlyLower/StrictlyUpper triangularView as the ↵Gravatar Gael Guennebaud2017-06-09
| | | | destination of matrix*matrix products.
* bug #1410: fix lvalue propagation of Array/Matrix-Wrapper with a const ↵Gravatar Gael Guennebaud2017-06-09
| | | | nested expression.
* add regression test for aliasing in product rewrittingGravatar Gael Guennebaud2017-06-09
|
* bug #1424: add numext::abs specialization for unsigned integer types.Gravatar Gael Guennebaud2017-06-09
|
* Add missing std::numeric_limits specialization for half, and complete ↵Gravatar Gael Guennebaud2017-06-09
| | | | NumTraits<half>
* bug #1423: fix LSCG\'s Jacobi preconditioner for row-major matrices.Gravatar Gael Guennebaud2017-06-08
|
* bug #1435: fix aliasing issue in exressions like: A = C - B*A;Gravatar Gael Guennebaud2017-06-08
|
* Fix dense * sparse-selfadjoint-view product.Gravatar Gael Guennebaud2017-04-25
|
* Improve cmake scripts for Pastix and BLAS detection.Gravatar Gael Guennebaud2017-04-14
|
* bug #1395: fix the use of compile-time vectors as inputs of JacobiSVD.Gravatar Gael Guennebaud2017-02-20
|
* Fix tracking of temporaries in unit testsGravatar Gael Guennebaud2017-02-19
|
* bug #1393: enable Matrix/Array explicit ctor from types with conversion ↵Gravatar Gael Guennebaud2017-02-17
| | | | operators (was ok with 3.2)
* Fix overflow and make use of long long in c++11 only.Gravatar Gael Guennebaud2017-02-13
|
* Fix vector indexing with uint64_tGravatar Jonathan Hseu2017-02-11
|
* bug #1392: fix #include <Eigen/Sparse> with mpl2-onlyGravatar Gael Guennebaud2017-02-11
|
* Fix previous commits: disbale only problematic indexed view methods for old ↵Gravatar Gael Guennebaud2017-02-11
| | | | | | compilers instead of disabling everything. Tested with gcc 4.7 (c++03) and gcc 4.8 (c++03 & c++11)
* Added a new EIGEN_HAS_INDEXED_VIEW define that set to 0 for older compilers ↵Gravatar Benoit Steiner2017-02-10
| | | | | | | that are known to fail to compile the indexed views (I used the define from the indexed_views.cpp test). Only include the indexed view methods when the compiler supports the code. This makes it possible to use Eigen again in complex code bases such as TensorFlow and older compilers such as gcc 4.8
* Disable a part of the unit test for gcc 4.8Gravatar Gael Guennebaud2017-02-01
|
* bug #478: fix regression in the eigen decomposition of zero matrices.Gravatar Gael Guennebaud2017-01-31
|
* bug #1384: fix evaluation of "sparse/scalar" that used the wrong evaluation ↵Gravatar Gael Guennebaud2017-01-30
| | | | path.
* Fix unamed type as template parametre issue.Gravatar Gael Guennebaud2017-01-27
|
* Merged in ggael/eigen-flexidexing (pull request PR-294)Gravatar Gael Guennebaud2017-01-26
|\ | | | | | | generalized operator() for indexed access and slicing
| * Fix unamed type as template argument (ok in c++11 only)Gravatar Gael Guennebaud2017-01-25
| |
* | bug #1383: fix regression in LinSpaced for integers and high<lowGravatar Gael Guennebaud2017-01-25
| |