| 16 | |
| 17 | #[derive(Clone, Debug, PartialEq, Eq)] |
| 18 | pub struct G2Prepared { |
| 19 | /// Stores the coefficients of the line evaluations as calculated in |
| 20 | /// <https://eprint.iacr.org/2013/722.pdf> |
| 21 | pub ell_coeffs: Vec<EllCoeff>, |
| 22 | pub infinity: bool, |
| 23 | } |
| 24 | |
| 25 | // aka. line in miller loop. |
| 26 | pub type EllCoeff = (ark_bn254::Fq2, ark_bn254::Fq2, ark_bn254::Fq2); |
nothing calls this directly
no outgoing calls
no test coverage detected