We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
algorithms/div/knuth
On 2022-10-24 @recmo wrote in fb3aa20 “Merge pull request #172 from recmo/div2”:
fb3aa20
Delegate to div_nxm_normalized if normalized.
let n = divisor.len(); let m = numerator.len() - n; // Compute normalized divisor double-word and reciprocal. // TODO: Delegate to div_nxm_normalized if normalized. let (d, shift) = { let d = u128::join(divisor[n - 1], divisor[n - 2]); let shift = d.high().leading_zeros(); ( if shift == 0 {
From src/algorithms/div/knuth.rs:96
src/algorithms/div/knuth.rs:96
The text was updated successfully, but these errors were encountered:
recmo
No branches or pull requests
On 2022-10-24 @recmo wrote in
fb3aa20
“Merge pull request #172 from recmo/div2”:Delegate to div_nxm_normalized if normalized.
From
src/algorithms/div/knuth.rs:96
The text was updated successfully, but these errors were encountered: