Clearmatics Libff  0.1
C++ library for Finite Fields and Elliptic Curves
Public Member Functions | Public Attributes | Friends | List of all members
libff::bw6_761_ate_ell_coeffs Struct Reference

#include <bw6_761_pairing.hpp>

Collaboration diagram for libff::bw6_761_ate_ell_coeffs:
Collaboration graph
[legend]

Public Member Functions

bool operator== (const bw6_761_ate_ell_coeffs &other) const
 

Public Attributes

bw6_761_Fq ell_0
 
bw6_761_Fq ell_VW
 
bw6_761_Fq ell_VV
 

Friends

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

Detailed Description

Definition at line 27 of file bw6_761_pairing.hpp.

Member Function Documentation

◆ operator==()

bool libff::bw6_761_ate_ell_coeffs::operator== ( const bw6_761_ate_ell_coeffs other) const

Definition at line 34 of file bw6_761_pairing.cpp.

36 {
37  return (
38  this->ell_0 == other.ell_0 && this->ell_VW == other.ell_VW &&
39  this->ell_VV == other.ell_VV);
40 }

Friends And Related Function Documentation

◆ operator<<

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

Definition at line 42 of file bw6_761_pairing.cpp.

43 {
44  out << c.ell_0 << OUTPUT_SEPARATOR << c.ell_VW << OUTPUT_SEPARATOR
45  << c.ell_VV;
46  return out;
47 }

◆ operator>>

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

Definition at line 49 of file bw6_761_pairing.cpp.

50 {
51  in >> c.ell_0;
53  in >> c.ell_VW;
55  in >> c.ell_VV;
56 
57  return in;
58 }

Member Data Documentation

◆ ell_0

bw6_761_Fq libff::bw6_761_ate_ell_coeffs::ell_0

Definition at line 28 of file bw6_761_pairing.hpp.

◆ ell_VV

bw6_761_Fq libff::bw6_761_ate_ell_coeffs::ell_VV

Definition at line 30 of file bw6_761_pairing.hpp.

◆ ell_VW

bw6_761_Fq libff::bw6_761_ate_ell_coeffs::ell_VW

Definition at line 29 of file bw6_761_pairing.hpp.


The documentation for this struct was generated from the following files:
libff::bw6_761_ate_ell_coeffs::ell_0
bw6_761_Fq ell_0
Definition: bw6_761_pairing.hpp:28
OUTPUT_SEPARATOR
#define OUTPUT_SEPARATOR
Definition: serialization.hpp:69
libff::consume_OUTPUT_SEPARATOR
void consume_OUTPUT_SEPARATOR(std::istream &in)