mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-05 20:10:32 +00:00
Small type annotation cleanups
This commit is contained in:
parent
f0723dbbcc
commit
dd3d1dd68b
1 changed files with 2 additions and 2 deletions
|
|
@ -307,13 +307,13 @@ impl<C: CurveAffine> Constructed<C> {
|
||||||
) -> Evaluated<C> {
|
) -> Evaluated<C> {
|
||||||
let domain = &pk.vk.domain;
|
let domain = &pk.vk.domain;
|
||||||
|
|
||||||
let permutation_product_evals: Vec<C::Scalar> = self
|
let permutation_product_evals: Vec<_> = self
|
||||||
.permutation_product_polys
|
.permutation_product_polys
|
||||||
.iter()
|
.iter()
|
||||||
.map(|poly| eval_polynomial(poly, *x))
|
.map(|poly| eval_polynomial(poly, *x))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let permutation_product_inv_evals: Vec<C::Scalar> = self
|
let permutation_product_inv_evals: Vec<_> = self
|
||||||
.permutation_product_polys
|
.permutation_product_polys
|
||||||
.iter()
|
.iter()
|
||||||
.map(|poly| eval_polynomial(poly, domain.rotate_omega(*x, Rotation(-1))))
|
.map(|poly| eval_polynomial(poly, domain.rotate_omega(*x, Rotation(-1))))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue