Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
libff::alt_bn128_ate_ell_coeffs Struct Reference

#include <alt_bn128_pairing.hpp>

Collaboration diagram for libff::alt_bn128_ate_ell_coeffs:

Public Member Functions

bool operator== (const alt_bn128_ate_ell_coeffs &other) const
 

Public Attributes

alt_bn128_Fq2 ell_0
 
alt_bn128_Fq2 ell_VW
 
alt_bn128_Fq2 ell_VV
 

Friends

std::ostream & operator<< (std::ostream &out, const alt_bn128_ate_ell_coeffs &dc)
 
std::istream & operator>> (std::istream &in, alt_bn128_ate_ell_coeffs &dc)
 

Detailed Description

Definition at line 31 of file alt_bn128_pairing.hpp.

Member Function Documentation

◆ operator==()

bool libff::alt_bn128_ate_ell_coeffs::operator== ( const alt_bn128_ate_ell_coeffs & other) const

Definition at line 40 of file alt_bn128_pairing.cpp.

41{
42 return (this->ell_0 == other.ell_0 &&
43 this->ell_VW == other.ell_VW &&
44 this->ell_VV == other.ell_VV);
45}

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream & out,
const alt_bn128_ate_ell_coeffs & dc )
friend

Definition at line 47 of file alt_bn128_pairing.cpp.

48{
49 out << c.ell_0 << OUTPUT_SEPARATOR << c.ell_VW << OUTPUT_SEPARATOR << c.ell_VV;
50 return out;
51}
#define OUTPUT_SEPARATOR

◆ operator>>

std::istream & operator>> ( std::istream & in,
alt_bn128_ate_ell_coeffs & dc )
friend

Definition at line 53 of file alt_bn128_pairing.cpp.

54{
55 in >> c.ell_0;
57 in >> c.ell_VW;
59 in >> c.ell_VV;
60
61 return in;
62}
void consume_OUTPUT_SEPARATOR(std::istream &in)

Member Data Documentation

◆ ell_0

alt_bn128_Fq2 libff::alt_bn128_ate_ell_coeffs::ell_0

Definition at line 32 of file alt_bn128_pairing.hpp.

◆ ell_VV

alt_bn128_Fq2 libff::alt_bn128_ate_ell_coeffs::ell_VV

Definition at line 34 of file alt_bn128_pairing.hpp.

◆ ell_VW

alt_bn128_Fq2 libff::alt_bn128_ate_ell_coeffs::ell_VW

Definition at line 33 of file alt_bn128_pairing.hpp.


The documentation for this struct was generated from the following files: