sparsemat / sprs

sparse linear algebra library for rust
Apache License 2.0
386 stars 45 forks source link

add safeguard for nb_threads being set too high #235

Closed maboesanman closed 3 years ago

maboesanman commented 3 years ago

nb_threads should never be set higher than l_rows, so this PR sets it to std::cmp::min(l_rows, {...})

fixes #234

maboesanman commented 3 years ago

Note, the added test fails without the code change.