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
Conversion can still be fast when bases have a common power. A bit of shifting needs to be done but this is pretty similar to the fast conversion methods already implemented.
The text was updated successfully, but these errors were encountered:
Testing for powers of two can be done very fast with (f & (f-1)) && (t & (t-1)). Then number of bits per limb can be found with https://stackoverflow.com/a/7813486/1582182.
Conversion can still be fast when bases have a common power. A bit of shifting needs to be done but this is pretty similar to the fast conversion methods already implemented.
The text was updated successfully, but these errors were encountered: