cargo fmt

This commit is contained in:
Daniel Lubarov 2021-04-25 17:16:18 -07:00
parent 53252af4ba
commit ffaa9587fe

View File

@ -120,9 +120,7 @@ impl WirePartitions {
.map(|chunk| {
let values = chunk
.par_iter()
.map(|&x| {
k_is[x / degree] * subgroup_generator.exp_usize(x % degree)
})
.map(|&x| k_is[x / degree] * subgroup_generator.exp_usize(x % degree))
.collect::<Vec<_>>();
PolynomialValues::new(values)
})