mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 22:03:07 +00:00
fmt
This commit is contained in:
parent
3eadc27be5
commit
ca35502660
@ -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<_>>();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user