diff --git a/src/pairing/mod.rs b/src/pairing/mod.rs index 8e0bfe27..dbdb6483 100644 --- a/src/pairing/mod.rs +++ b/src/pairing/mod.rs @@ -17,15 +17,11 @@ type BasePrimeField = <::BaseField as ark_ff::Field>::BasePrime pub trait PairingVar { /// An variable representing an element of `G1`. /// This is the R1CS equivalent of `E::G1Projective`. - type G1Var: CurveVar> - + AllocVar> - + AllocVar>; + type G1Var: CurveVar>; /// An variable representing an element of `G2`. /// This is the R1CS equivalent of `E::G2Projective`. - type G2Var: CurveVar> - + AllocVar> - + AllocVar>; + type G2Var: CurveVar>; /// An variable representing an element of `GT`. /// This is the R1CS equivalent of `E::GT`.