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/mul_redc
On 2022-06-09 @recmo wrote in f0f0ddb “Merge pull request #126 from recmo/redc”:
f0f0ddb
Create add_mul1 routine.
// Reduce temp. for i in 0..m.len() { let u = temp[i].wrapping_mul(inv); // REFACTOR: Create add_mul1 routine. let mut carry = 0; #[allow(clippy::cast_possible_truncation)] // Intentional for j in 0..m.len() { carry += u128::from(temp[i + j]) + u128::from(m[j]) * u128::from(u); temp[i + j] = carry as u64;
From src/algorithms/mul_redc.rs:21
src/algorithms/mul_redc.rs:21
The text was updated successfully, but these errors were encountered:
recmo
No branches or pull requests
On 2022-06-09 @recmo wrote in
f0f0ddb
“Merge pull request #126 from recmo/redc”:Create add_mul1 routine.
From
src/algorithms/mul_redc.rs:21
The text was updated successfully, but these errors were encountered: