helib::PolyModRing Struct Reference

Lightweight type for describing the structure of a single slot of the plaintext space. More...

#include <PolyModRing.h>

Public Member Functions

 PolyModRing ()=delete
 
PolyModRingoperator= (const PolyModRing &)=delete
 
PolyModRingoperator= (PolyModRing &&)=delete
 
 PolyModRing (const PolyModRing &other)=default
 Copy constructor. More...
 
 PolyModRing (PolyModRing &&other)=default
 Move constructor. More...
 
 ~PolyModRing ()=default
 Destructor. More...
 
 PolyModRing (long p, long r, const NTL::ZZX &G)
 Constructor. More...
 
bool operator== (const PolyModRing &rhs) const noexcept
 Equality operator. More...
 
bool operator!= (const PolyModRing &rhs) const noexcept
 Not-equals operator. More...
 

Public Attributes

const long p
 The characteristic of the plaintext space. This should be prime. More...
 
const long r
 The power of p used in the plaintext space coefficient modulus. More...
 
const NTL::ZZX G
 The irreducible factor of Phi_m(X) used for the algebra of the individual slots. More...
 
const long p2r
 The plaintext space coefficient modulus, equal to p^r. More...
 

Friends

std::ostream & operator<< (std::ostream &os, const PolyModRing &ring)
 Output shift operator. More...
 

Detailed Description

Lightweight type for describing the structure of a single slot of the plaintext space.

A single slot of the plaintext space is isomorphic to $\mathbb{Z}[X]/(G(x),p^r)$ for some irreducible factor G of $\Phi_m(X)$, so the main useful members of this struct are p, r, G, and p2r.

The fields of this struct are all const, so they should be determined at the time of construction.

Note
This struct aggregates this often-useful information into a single placeholder for convenience.

Constructor & Destructor Documentation

◆ PolyModRing() [1/4]

helib::PolyModRing::PolyModRing ( )
delete

◆ PolyModRing() [2/4]

helib::PolyModRing::PolyModRing ( const PolyModRing other)
default

Copy constructor.

◆ PolyModRing() [3/4]

helib::PolyModRing::PolyModRing ( PolyModRing &&  other)
default

Move constructor.

◆ ~PolyModRing()

helib::PolyModRing::~PolyModRing ( )
default

Destructor.

◆ PolyModRing() [4/4]

helib::PolyModRing::PolyModRing ( long  p,
long  r,
const NTL::ZZX &  G 
)

Constructor.

Parameters
pThe characteristic of the plaintext space.
rThe power of p used in the plaintext space coefficient modulus.
GThe irreducible factor of Phi_m(X) used for the algebra of the individual slots.

p^r will be calculated automatically.

Note
p should be a prime number.

Member Function Documentation

◆ operator!=()

bool helib::PolyModRing::operator!= ( const PolyModRing rhs) const
noexcept

Not-equals operator.

◆ operator=() [1/2]

PolyModRing& helib::PolyModRing::operator= ( const PolyModRing )
delete

◆ operator=() [2/2]

PolyModRing& helib::PolyModRing::operator= ( PolyModRing &&  )
delete

◆ operator==()

bool helib::PolyModRing::operator== ( const PolyModRing rhs) const
noexcept

Equality operator.

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  os,
const PolyModRing ring 
)
friend

Output shift operator.

Parameters
osOutput std::ostream.
ringPolyModRing object to be written.
Returns
Input std::ostream post writing.

Member Data Documentation

◆ G

const NTL::ZZX helib::PolyModRing::G

The irreducible factor of Phi_m(X) used for the algebra of the individual slots.

◆ p

const long helib::PolyModRing::p

The characteristic of the plaintext space. This should be prime.

◆ p2r

const long helib::PolyModRing::p2r

The plaintext space coefficient modulus, equal to p^r.

◆ r

const long helib::PolyModRing::r

The power of p used in the plaintext space coefficient modulus.