Browse Source

Clippy

main
Ahmad 4 months ago
parent
commit
a18e7906c6
No known key found for this signature in database GPG Key ID: FF00EBC04B2D00AA
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/gates/range_check_u32.rs

+ 1
- 1
src/gates/range_check_u32.rs

@ -272,7 +272,7 @@ mod tests {
const D: usize = 4; const D: usize = 4;
const AUX_LIMB_BITS: usize = 2; const AUX_LIMB_BITS: usize = 2;
const BASE: usize = 1 << AUX_LIMB_BITS; const BASE: usize = 1 << AUX_LIMB_BITS;
const AUX_LIMBS_PER_INPUT_LIMB: usize = (32 + AUX_LIMB_BITS - 1) / AUX_LIMB_BITS;
const AUX_LIMBS_PER_INPUT_LIMB: usize = 32_usize.div_ceil(AUX_LIMB_BITS);
fn get_wires(input_limbs: Vec<u64>) -> Vec<FF> { fn get_wires(input_limbs: Vec<u64>) -> Vec<FF> {
let num_input_limbs = input_limbs.len(); let num_input_limbs = input_limbs.len();

Loading…
Cancel
Save