aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_block.cpp
Commit message (Collapse)AuthorAge
* bug #1432: fix conservativeResize for non-relocatable scalar types. For ↵Gravatar Gael Guennebaud2018-07-18
| | | | those we need to by-pass realloc routines and fall-back to allocate as new - copy - delete. The remaining problem is that we don't have any mechanism to accurately determine whether a type is relocatable or not, so currently let's be super conservative using either RequireInitialization or std::is_trivially_copyable
* 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 #1359: fix compilation of col_major_sparse.row() *= scalarGravatar Gael Guennebaud2016-12-14
| | | | (used to work in 3.2.9 though the expression is not really writable)
* Fix regression in assigment of sparse block to spasre block.Gravatar Gael Guennebaud2016-11-21
|
* Fix some conversion warnings in unit tests.Gravatar Gael Guennebaud2016-05-26
|
* Enable and fix -Wdouble-conversion warningsGravatar Christoph Hertzberg2016-05-05
|
* Split sparse_basic unit testGravatar Gael Guennebaud2015-03-19