Fabcoin Core  0.16.2
P2P Digital Currency
Classes | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
RingOfPolynomialsOver< T > Class Template Reference

Ring of polynomials over another ring. More...

#include <polynomi.h>

Inheritance diagram for RingOfPolynomialsOver< T >:
[legend]
Collaboration diagram for RingOfPolynomialsOver< T >:
[legend]

Classes

class  InterpolationFailed
 

Public Types

typedef T CoefficientRing
 
typedef PolynomialOver< TElement
 
typedef Element::CoefficientType CoefficientType
 
typedef Element::RandomizationParameter RandomizationParameter
 
- Public Types inherited from AbstractEuclideanDomain< PolynomialOver< T > >
typedef PolynomialOver< TElement
 
- Public Types inherited from AbstractRing< PolynomialOver< T > >
typedef PolynomialOver< TElement
 
- Public Types inherited from AbstractGroup< PolynomialOver< T > >
typedef PolynomialOver< TElement
 

Public Member Functions

 RingOfPolynomialsOver (const CoefficientRing &ring)
 
Element RandomElement (RandomNumberGenerator &rng, const RandomizationParameter &parameter)
 
bool Equal (const Element &a, const Element &b) const
 Compare two elements for equality. More...
 
const ElementIdentity () const
 Provides the Identity element. More...
 
const ElementAdd (const Element &a, const Element &b) const
 Adds elements in the group. More...
 
ElementAccumulate (Element &a, const Element &b) const
 TODO. More...
 
const ElementInverse (const Element &a) const
 Inverts the element in the group. More...
 
const ElementSubtract (const Element &a, const Element &b) const
 Subtracts elements in the group. More...
 
ElementReduce (Element &a, const Element &b) const
 Reduces an element in the congruence class. More...
 
const ElementDouble (const Element &a) const
 Doubles an element in the group. More...
 
const ElementMultiplicativeIdentity () const
 Retrieves the multiplicative identity. More...
 
const ElementMultiply (const Element &a, const Element &b) const
 Multiplies elements in the group. More...
 
const ElementSquare (const Element &a) const
 Square an element in the group. More...
 
bool IsUnit (const Element &a) const
 Determines whether an element is a unit in the group. More...
 
const ElementMultiplicativeInverse (const Element &a) const
 Calculate the multiplicative inverse of an element in the group. More...
 
const ElementDivide (const Element &a, const Element &b) const
 Divides elements in the group. More...
 
const ElementMod (const Element &a, const Element &b) const
 Performs a modular reduction in the ring. More...
 
void DivisionAlgorithm (Element &r, Element &q, const Element &a, const Element &d) const
 Performs the division algorithm on two elements in the ring. More...
 
Element Interpolate (const CoefficientType x[], const CoefficientType y[], unsigned int n) const
 
CoefficientType InterpolateAt (const CoefficientType &position, const CoefficientType x[], const CoefficientType y[], unsigned int n) const
 
- Public Member Functions inherited from AbstractEuclideanDomain< PolynomialOver< T > >
virtual const ElementGcd (const Element &a, const Element &b) const
 Calculates the greatest common denominator in the ring. More...
 
- Public Member Functions inherited from AbstractRing< PolynomialOver< T > >
 AbstractRing ()
 Construct an AbstractRing. More...
 
 AbstractRing (const AbstractRing &source)
 Copy construct an AbstractRing. More...
 
AbstractRingoperator= (const AbstractRing &source)
 Assign an AbstractRing. More...
 
virtual Element Exponentiate (const Element &a, const Integer &e) const
 Raises a base to an exponent in the group. More...
 
virtual Element CascadeExponentiate (const Element &x, const Integer &e1, const Element &y, const Integer &e2) const
 TODO. More...
 
virtual void SimultaneousExponentiate (Element *results, const Element &base, const Integer *exponents, unsigned int exponentsCount) const
 Exponentiates a base to multiple exponents in the Ring. More...
 
virtual const AbstractGroup< PolynomialOver< T > > & MultiplicativeGroup () const
 Retrieves the multiplicative group. More...
 
- Public Member Functions inherited from AbstractGroup< PolynomialOver< T > >
virtual ~AbstractGroup ()
 
virtual bool InversionIsFast () const
 Determine if inversion is fast. More...
 
virtual Element ScalarMultiply (const Element &a, const Integer &e) const
 Performs a scalar multiplication. More...
 
virtual Element CascadeScalarMultiply (const Element &x, const Integer &e1, const Element &y, const Integer &e2) const
 TODO. More...
 
virtual void SimultaneousMultiply (Element *results, const Element &base, const Integer *exponents, unsigned int exponentsCount) const
 Multiplies a base to multiple exponents in a group. More...
 

Protected Member Functions

void CalculateAlpha (std::vector< CoefficientType > &alpha, const CoefficientType x[], const CoefficientType y[], unsigned int n) const
 

Protected Attributes

CoefficientRing m_ring
 
- Protected Attributes inherited from AbstractEuclideanDomain< PolynomialOver< T > >
Element result
 

Detailed Description

template<class T>
class RingOfPolynomialsOver< T >

Ring of polynomials over another ring.

Definition at line 318 of file polynomi.h.

Member Typedef Documentation

template<class T>
typedef T RingOfPolynomialsOver< T >::CoefficientRing

Definition at line 321 of file polynomi.h.

Definition at line 323 of file polynomi.h.

template<class T>
typedef PolynomialOver<T> RingOfPolynomialsOver< T >::Element

Definition at line 322 of file polynomi.h.

Definition at line 324 of file polynomi.h.

Constructor & Destructor Documentation

template<class T>
RingOfPolynomialsOver< T >::RingOfPolynomialsOver ( const CoefficientRing ring)
inline

Definition at line 326 of file polynomi.h.

Member Function Documentation

template<class T>
Element& RingOfPolynomialsOver< T >::Accumulate ( Element a,
const Element b 
) const
inlinevirtual

TODO.

Parameters
afirst element
bsecond element
Returns
TODO

Reimplemented from AbstractGroup< PolynomialOver< T > >.

Definition at line 340 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Add ( const Element a,
const Element b 
) const
inlinevirtual

Adds elements in the group.

Parameters
afirst element
bsecond element
Returns
the sum of a and b

Implements AbstractGroup< PolynomialOver< T > >.

Definition at line 337 of file polynomi.h.

Here is the call graph for this function:

template<class T >
void RingOfPolynomialsOver< T >::CalculateAlpha ( std::vector< CoefficientType > &  alpha,
const CoefficientType  x[],
const CoefficientType  y[],
unsigned int  n 
) const
protected

Definition at line 456 of file polynomi.cpp.

template<class T>
const Element& RingOfPolynomialsOver< T >::Divide ( const Element a,
const Element b 
) const
inlinevirtual

Divides elements in the group.

Parameters
athe dividend
bthe divisor
Returns
the quotient

Reimplemented from AbstractRing< PolynomialOver< T > >.

Definition at line 370 of file polynomi.h.

Here is the call graph for this function:

template<class T>
void RingOfPolynomialsOver< T >::DivisionAlgorithm ( Element r,
Element q,
const Element a,
const Element d 
) const
inlinevirtual

Performs the division algorithm on two elements in the ring.

Parameters
rthe remainder
qthe quotient
athe dividend
dthe divisor

Implements AbstractEuclideanDomain< PolynomialOver< T > >.

Definition at line 376 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Double ( const Element a) const
inlinevirtual

Doubles an element in the group.

Parameters
athe element
Returns
the element doubled

Reimplemented from AbstractGroup< PolynomialOver< T > >.

Definition at line 352 of file polynomi.h.

Here is the call graph for this function:

template<class T>
bool RingOfPolynomialsOver< T >::Equal ( const Element a,
const Element b 
) const
inlinevirtual

Compare two elements for equality.

Parameters
afirst element
bsecond element
Returns
true if the elements are equal, false otherwise

Equal() tests the elements for equality using a==b

Implements AbstractGroup< PolynomialOver< T > >.

Definition at line 331 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Identity ( ) const
inlinevirtual

Provides the Identity element.

Returns
the Identity element

Implements AbstractGroup< PolynomialOver< T > >.

Definition at line 334 of file polynomi.h.

template<class T >
RingOfPolynomialsOver< T >::Element RingOfPolynomialsOver< T >::Interpolate ( const CoefficientType  x[],
const CoefficientType  y[],
unsigned int  n 
) const

Definition at line 476 of file polynomi.cpp.

template<class T >
RingOfPolynomialsOver< T >::CoefficientType RingOfPolynomialsOver< T >::InterpolateAt ( const CoefficientType position,
const CoefficientType  x[],
const CoefficientType  y[],
unsigned int  n 
) const

Definition at line 498 of file polynomi.cpp.

template<class T>
const Element& RingOfPolynomialsOver< T >::Inverse ( const Element a) const
inlinevirtual

Inverts the element in the group.

Parameters
afirst element
Returns
the inverse of the element

Implements AbstractGroup< PolynomialOver< T > >.

Definition at line 343 of file polynomi.h.

Here is the call graph for this function:

template<class T>
bool RingOfPolynomialsOver< T >::IsUnit ( const Element a) const
inlinevirtual

Determines whether an element is a unit in the group.

Parameters
athe element
Returns
true if the element is a unit after reduction, false otherwise.

Implements AbstractRing< PolynomialOver< T > >.

Definition at line 364 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Mod ( const Element a,
const Element b 
) const
inlinevirtual

Performs a modular reduction in the ring.

Parameters
athe element
bthe modulus
Returns
the result of ab.

Implements AbstractEuclideanDomain< PolynomialOver< T > >.

Definition at line 373 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::MultiplicativeIdentity ( ) const
inlinevirtual

Retrieves the multiplicative identity.

Returns
the multiplicative identity

Implements AbstractRing< PolynomialOver< T > >.

Definition at line 355 of file polynomi.h.

template<class T>
const Element& RingOfPolynomialsOver< T >::MultiplicativeInverse ( const Element a) const
inlinevirtual

Calculate the multiplicative inverse of an element in the group.

Parameters
athe element

Implements AbstractRing< PolynomialOver< T > >.

Definition at line 367 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Multiply ( const Element a,
const Element b 
) const
inlinevirtual

Multiplies elements in the group.

Parameters
athe multiplicand
bthe multiplier
Returns
the product of a and b

Implements AbstractRing< PolynomialOver< T > >.

Definition at line 358 of file polynomi.h.

Here is the call graph for this function:

template<class T>
Element RingOfPolynomialsOver< T >::RandomElement ( RandomNumberGenerator rng,
const RandomizationParameter parameter 
)
inline

Definition at line 328 of file polynomi.h.

template<class T>
Element& RingOfPolynomialsOver< T >::Reduce ( Element a,
const Element b 
) const
inlinevirtual

Reduces an element in the congruence class.

Parameters
aelement to reduce
bthe congruence class
Returns
the reduced element

Reimplemented from AbstractGroup< PolynomialOver< T > >.

Definition at line 349 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Square ( const Element a) const
inlinevirtual

Square an element in the group.

Parameters
athe element
Returns
the element squared

Reimplemented from AbstractRing< PolynomialOver< T > >.

Definition at line 361 of file polynomi.h.

Here is the call graph for this function:

template<class T>
const Element& RingOfPolynomialsOver< T >::Subtract ( const Element a,
const Element b 
) const
inlinevirtual

Subtracts elements in the group.

Parameters
afirst element
bsecond element
Returns
the difference of a and b. The element a must provide a Subtract member function.

Reimplemented from AbstractGroup< PolynomialOver< T > >.

Definition at line 346 of file polynomi.h.

Here is the call graph for this function:

Member Data Documentation

template<class T>
CoefficientRing RingOfPolynomialsOver< T >::m_ring
protected

Definition at line 397 of file polynomi.h.


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