mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-05-21 01:09:51 +00:00
fmt
This commit is contained in:
parent
3eadc27be5
commit
ca35502660
@ -451,11 +451,11 @@ where
|
|||||||
|
|
||||||
let num_challenges = alphas.len();
|
let num_challenges = alphas.len();
|
||||||
|
|
||||||
(0..P::WIDTH)
|
(0..P::WIDTH).into_iter().map(move |i| {
|
||||||
.into_iter()
|
(0..num_challenges)
|
||||||
.map(move |i| {
|
.map(|j| constraints_evals[j].as_slice()[i])
|
||||||
(0..num_challenges).map(|j| constraints_evals[j].as_slice()[i]).collect()
|
.collect()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
|||||||
@ -303,11 +303,11 @@ where
|
|||||||
|
|
||||||
let num_challenges = alphas.len();
|
let num_challenges = alphas.len();
|
||||||
|
|
||||||
(0..P::WIDTH)
|
(0..P::WIDTH).into_iter().map(move |i| {
|
||||||
.into_iter()
|
(0..num_challenges)
|
||||||
.map(move |i| {
|
.map(|j| constraints_evals[j].as_slice()[i])
|
||||||
(0..num_challenges).map(|j| constraints_evals[j].as_slice()[i]).collect()
|
.collect()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user