From acb149b4207fcebf502e0b8e41407dae0278ed90 Mon Sep 17 00:00:00 2001 From: diego <105765223+0xfuturistic@users.noreply.github.com> Date: Tue, 26 Sep 2023 14:18:22 +0900 Subject: [PATCH] fix bug in memory_checking --- src/lasso/memory_checking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lasso/memory_checking.rs b/src/lasso/memory_checking.rs index 32e7a1132..33f062344 100644 --- a/src/lasso/memory_checking.rs +++ b/src/lasso/memory_checking.rs @@ -280,7 +280,7 @@ impl GrandProducts { #[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