mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-08-25 06:31:17 +00:00
fmt
This commit is contained in:
+5
-5
@@ -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::<Vec<_>>();
|
||||
|
||||
|
||||
@@ -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::<Vec<_>>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user