From 7dc2a7744d0762ab2833d9e6eaa86e718d92dbcc Mon Sep 17 00:00:00 2001 From: Linda Guiga Date: Fri, 15 Sep 2023 09:00:11 +0100 Subject: [PATCH] Cleanup --- evm/src/lookup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/lookup.rs b/evm/src/lookup.rs index b886e736..31ba4ae2 100644 --- a/evm/src/lookup.rs +++ b/evm/src/lookup.rs @@ -94,7 +94,7 @@ pub(crate) fn lookup_helper_columns( for x in table.iter_mut() { *x = challenge + *x; } - let table_inverse: Vec = F::batch_multiplicative_inverse(&table).into(); + let table_inverse: Vec = F::batch_multiplicative_inverse(&table); // Compute the `Z` polynomial with `Z(1)=0` and `Z(gx) = Z(x) + sum h_i(x) - frequencies(x)g(x)`. // This enforces the check from the paper, that the sum of the h_k(x) polynomials is 0 over H.