Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGCalderon committed Sep 19, 2024
1 parent 3188527 commit 5f5f187
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions vm/src/vm/runners/builtin_runner/modulo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ impl ModBuiltinRunner {
let shift_powers = core::array::from_fn(|i| shift.pow(i as u32));
let zero_segment_size = core::cmp::max(N_WORDS, instance_def.batch_size * 3);
let int_lim = BigUint::from(2_u32).pow(N_WORDS as u32 * instance_def.word_bit_len);
dbg!(&int_lim);
Self {
builtin_type,
base: 0,
Expand Down Expand Up @@ -691,11 +690,6 @@ fn apply_op(
p: &BigUint,
k_bound: &BigUint,
) -> Result<BigUint, MathError> {
println!("== GATE ==");
println!("op = {:?}", op);
println!("lhs = {:?}", lhs);
println!("rhs = {:?}", rhs);
println!("k_bound = {:?}", k_bound);
let value = match op {
Operation::Mul => {
let value = lhs * rhs;
Expand All @@ -722,7 +716,6 @@ fn apply_op(
}
Operation::DivMod => div_mod_unsigned(lhs, rhs, p)?,
};
println!("value = {:?}", value);
Ok(value)
}

Expand Down

0 comments on commit 5f5f187

Please sign in to comment.