sparsemat / sprs

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

Fix (CSC, CSR) multiplication #229

Closed mulimoen closed 3 years ago

mulimoen commented 3 years ago

Multiplication of (CSC, CSR) matrices would lead to a crash for valid matrices. (CSC, CSR) should instead copy the format of (CSC, CSC) with rhs transposed.

Ref #99

vbarrielle commented 3 years ago

Looks good, thanks for the quick investigation and fix!