sparsemat / sprs

sparse linear algebra library for rust
Apache License 2.0
394 stars 46 forks source link

Modifying the default implementation for MulAcc. #324

Closed taketo1024 closed 1 year ago

taketo1024 commented 1 year ago

Modified the default implementation of MulAcc, so that the default implementation applies to scalar types that does not necessary implement Copy and num_traits::MulAdd. In particular, this modification enables BigInt and Rational types applicable.

Follows discussion from #323.

mulimoen commented 1 year ago

Thanks @taketo1024 !