uint icon indicating copy to clipboard operation
uint copied to clipboard

`algorithms/mul_redc`: Create sub routine

Open github-actions[bot] opened this issue 2 years ago • 0 comments

On 2022-06-09 @recmo wrote in f0f0ddb “Merge pull request #126 from recmo/redc”:

Create sub routine

                break;
            }
        }
    }
    if reduce {
        // REFACTOR: Create sub routine
        let mut carry = 0;
        #[allow(clippy::cast_possible_truncation)] // Intentional
        #[allow(clippy::cast_sign_loss)] // Intentional
        for (r, m) in zip(result.iter_mut(), m.iter().copied()) {
            carry += i128::from(*r) - i128::from(m);

From src/algorithms/mul_redc.rs:57

github-actions[bot] avatar Jun 09 '22 05:06 github-actions[bot]