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 2022-10-24 @recmo wrote in fb3aa20 “Merge pull request #172 from recmo/div2”:
Rewrite in a way that avoids bounds-checks without unsafe.
/// [`div_nx2_normalized`] but does the shifting of the numerator inline.////// # Panics////// May panics if the above requirements are not met.// TODO: Rewrite in a way that avoids bounds-checks without unsafe.#[inline(always)]pubfn div_nx2(limbs:&mut[u64],divisor:u128) -> u128{debug_assert!(divisor >= 1 << 64);debug_assert!(!limbs.is_empty());debug_assert!(*limbs.last().unwrap() != 0);
On 2022-10-24 @recmo wrote in
fb3aa20
“Merge pull request #172 from recmo/div2”:Rewrite in a way that avoids bounds-checks without unsafe.
From
src/algorithms/div/small.rs:118
The text was updated successfully, but these errors were encountered: