From ca3550266004e39a748fc73bf2a7bb600c05d836 Mon Sep 17 00:00:00 2001 From: Sladuca Date: Fri, 19 Aug 2022 17:54:48 -0400 Subject: [PATCH] fmt --- evm/src/prover.rs | 10 +++++----- starky/src/prover.rs | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/evm/src/prover.rs b/evm/src/prover.rs index 020e2451..15b83173 100644 --- a/evm/src/prover.rs +++ b/evm/src/prover.rs @@ -451,11 +451,11 @@ where let num_challenges = alphas.len(); - (0..P::WIDTH) - .into_iter() - .map(move |i| { - (0..num_challenges).map(|j| constraints_evals[j].as_slice()[i]).collect() - }) + (0..P::WIDTH).into_iter().map(move |i| { + (0..num_challenges) + .map(|j| constraints_evals[j].as_slice()[i]) + .collect() + }) }) .collect::>(); diff --git a/starky/src/prover.rs b/starky/src/prover.rs index 974ead74..0d291cf3 100644 --- a/starky/src/prover.rs +++ b/starky/src/prover.rs @@ -303,11 +303,11 @@ where let num_challenges = alphas.len(); - (0..P::WIDTH) - .into_iter() - .map(move |i| { - (0..num_challenges).map(|j| constraints_evals[j].as_slice()[i]).collect() - }) + (0..P::WIDTH).into_iter().map(move |i| { + (0..num_challenges) + .map(|j| constraints_evals[j].as_slice()[i]) + .collect() + }) }) .collect::>();