aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/spqr_support.cpp
Commit message (Collapse)AuthorAge
* 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
* Fix SPQR for rectangular matricesGravatar Gael Guennebaud2016-10-12
|
* Fix many long to int conversion warnings:Gravatar Gael Guennebaud2015-02-16
| | | | | | - fix usage of Index (API) versus StorageIndex (when multiple indexes are stored) - use StorageIndex(val) when the input has already been check - use internal::convert_index<StorageIndex>(val) when val is potentially unsafe (directly comes from user input)
* Avoid blocking-size mismatch in unit tests calling Eigen's blas interface.Gravatar Gael Guennebaud2014-04-25
|
* Fix bug #314: move remaining math functions from internal to numext namespaceGravatar Gael Guennebaud2013-06-10
|
* Correct bug in SPQR backend and replace matrixQR by matrixRGravatar Desire NUENTSA2013-01-29
|
* Update SPQR module for Sparse LMGravatar Desire NUENTSA2012-11-21
|
* Add support for Sparse QR factorizationGravatar Desire NUENTSA2012-11-12