sparsemat / sprs

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

Use CsMatView as input to smmp functions #270

Closed vbarrielle closed 3 years ago

vbarrielle commented 3 years ago

This makes a friendlier API, and will allow relying on CsMat invariants for performance later on (eg by removing some bounds checking). The code is also a lot more readable now.

Fixes #254.