Skip to content

Commit

Permalink
reduce by 1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto committed Oct 17, 2023
1 parent 07206dd commit 89c05de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ impl GraphCircuit {
let num_cols = Table::<Fp>::num_cols_required(safe_range, max_col_size);

// empirically determined that this is when performance starts to degrade significantly
if num_cols > 7 {
if num_cols > 3 {
let err_string = format!(
"No possible lookup range can accomodate max value min and max value ({}, {})",
safe_range.0, safe_range.1
Expand Down

0 comments on commit 89c05de

Please sign in to comment.