Skip to content

Commit

Permalink
fix under-constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosma committed Sep 9, 2024
1 parent 7e50704 commit c898f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ceno_zkvm/src/uint/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl<const M: usize, E: ExtensionField> UInt<M, 8, E> {
circuit_builder.lookup_and_byte(
high_limb_no_msb.expr(),
high_limb.clone(),
Expression::from(0xFF),
Expression::from(0b0111_1111),
)?;

let inv_128 = F::from(128).invert().unwrap();
Expand Down

0 comments on commit c898f7c

Please sign in to comment.