aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_mmtr.cpp
Commit message (Collapse)AuthorAge
* bug #1741: fix SelfAdjointView::rankUpdate and product to triangular part ↵Gravatar Gael Guennebaud2019-09-10
| | | | for destination with non-trivial inner stride
* Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with ↵Gravatar Gael Guennebaud2018-07-17
| | | | | | | | | EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc
* bug #1405: enable StrictlyLower/StrictlyUpper triangularView as the ↵Gravatar Gael Guennebaud2017-06-09
| | | | destination of matrix*matrix products.
* Defer set-to-zero in triangular = product so that no aliasing issue occur in ↵Gravatar Gael Guennebaud2017-01-17
| | | | | | | the common: A.triangularView() = B*A.sefladjointView()*B.adjoint() case that used to work in 3.2.
* Add unit test for bug #879Gravatar Gael Guennebaud2015-06-16
|
* Fix use of unitialized buffers.Gravatar Gael Guennebaud2015-06-13
|
* workaround ambiguous callGravatar Gael Guennebaud2014-09-16
|
* Clean source code and unit tests with respect to -Wunused-local-typedefsGravatar Gael Guennebaud2013-04-10
|
* Automatic relicensing to MPL2 using Keirs script. Manual fixup follows.Gravatar Benoit Jacob2012-07-13
|
* add the possibility to configure the maximal matrix size in the unit testsGravatar Gael Guennebaud2011-07-12
|
* generalize our internal rank K update routine to support more general A*B ↵Gravatar Gael Guennebaud2010-11-10
product while evaluating only one triangular part and make it available via, e.g.: R.triangularView<Lower>() += s * A * B;