cargo fmt

This commit is contained in:
Sean Bowe 2021-02-14 09:28:51 -07:00
parent 4747112118
commit 4b960a7c0c
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 4 additions and 2 deletions

View File

@ -291,11 +291,13 @@ impl<'a, C: CurveAffine> Permuted<'a, C> {
left *= &(*gamma + permuted_table_value);
let mut right = z[prev_idx];
let mut input_term = self.unpermuted_input_columns
let mut input_term = self
.unpermuted_input_columns
.iter()
.fold(C::Scalar::zero(), |acc, input| acc * &*theta + &input[i]);
let mut table_term = self.unpermuted_table_columns
let mut table_term = self
.unpermuted_table_columns
.iter()
.fold(C::Scalar::zero(), |acc, table| acc * &*theta + &table[i]);