Skip to content

Commit

Permalink
fix bug in memory_checking
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfuturistic authored Sep 26, 2023
1 parent ee6b1de commit acb149b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lasso/memory_checking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ impl<F: PrimeField> GrandProducts<F> {
#[cfg(feature = "multicore")]
let num_ops = (0..dim_i.len()).into_par_iter();
#[cfg(not(feature = "multicore"))]
let num_ops = (0..dim_i.len()).iter();
let num_ops = 0..dim_i.len();
let grand_product_input_read = DensePolynomial::new(
num_ops.clone().map(|i| {
// addr is given by dim_i, value is given by eval_table, and ts is given by read_ts
Expand Down

0 comments on commit acb149b

Please sign in to comment.