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
On 2023-07-29 @prestwich wrote in aaa37d2 “Merge pull request #277 from DaniPopes/no_alloc”:
Make mul_redc alloc-free
////// # Panics////// Panics if `inv` is not correct.#[must_use]#[cfg(feature = "alloc")]// TODO: Make mul_redc alloc-freepubfn mul_redc(self,other:Self,modulus:Self,inv:u64) -> Self{ifBITS == 0{returnSelf::ZERO;}assert_eq!(inv.wrapping_mul(modulus.limbs[0]),u64::MAX);
On 2023-07-29 @prestwich wrote in
aaa37d2
“Merge pull request #277 from DaniPopes/no_alloc”:Make mul_redc alloc-free
From
src/modular.rs:147
The text was updated successfully, but these errors were encountered: