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

#include <mnt6_pairing.hpp>

Collaboration diagram for libff::mnt6_ate_add_coeffs:

Public Member Functions

bool operator== (const mnt6_ate_add_coeffs &other) const
 

Public Attributes

mnt6_Fq3 c_L1
 
mnt6_Fq3 c_RZ
 

Friends

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

Detailed Description

Definition at line 82 of file mnt6_pairing.hpp.

Member Function Documentation

◆ operator==()

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

Definition at line 80 of file mnt6_pairing.cpp.

81{
82 return (this->c_L1 == other.c_L1 &&
83 this->c_RZ == other.c_RZ);
84}

Friends And Related Symbol Documentation

◆ operator<<

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

Definition at line 86 of file mnt6_pairing.cpp.

87{
88 out << ac.c_L1 << OUTPUT_SEPARATOR << ac.c_RZ;
89 return out;
90}
#define OUTPUT_SEPARATOR

◆ operator>>

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

Definition at line 92 of file mnt6_pairing.cpp.

93{
94 in >> ac.c_L1;
96 in >> ac.c_RZ;
97
98 return in;
99}
void consume_OUTPUT_SEPARATOR(std::istream &in)

Member Data Documentation

◆ c_L1

mnt6_Fq3 libff::mnt6_ate_add_coeffs::c_L1

Definition at line 83 of file mnt6_pairing.hpp.

◆ c_RZ

mnt6_Fq3 libff::mnt6_ate_add_coeffs::c_RZ

Definition at line 84 of file mnt6_pairing.hpp.


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