You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, it was my experience that the rust extension module using BigInt was noticeably slower than the python big integer implementation. I was testing this using the baby step giant step algorithm for finding a discrete logarithm.
However, it was my experience that the rust extension module using BigInt was noticeably slower than the python big integer implementation. I was testing this using the baby step giant step algorithm for finding a discrete logarithm.
I would guess python is faster because it optimises for single-word numbers, whereas BigInt doesn't really (it uses Vec internally instead of something like SmallVec)
See also #124
The text was updated successfully, but these errors were encountered: