mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +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> {
|
||||
let domain = &pk.vk.domain;
|
||||
|
||||
let permutation_product_evals: Vec<C::Scalar> = self
|
||||
let permutation_product_evals: Vec<_> = self
|
||||
.permutation_product_polys
|
||||
.iter()
|
||||
.map(|poly| eval_polynomial(poly, *x))
|
||||
.collect();
|
||||
|
||||
let permutation_product_inv_evals: Vec<C::Scalar> = self
|
||||
let permutation_product_inv_evals: Vec<_> = self
|
||||
.permutation_product_polys
|
||||
.iter()
|
||||
.map(|poly| eval_polynomial(poly, domain.rotate_omega(*x, Rotation(-1))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue