Fabcoin Core
0.16.2
P2P Digital Currency
|
Ring of polynomials over another ring. More...
#include <polynomi.h>
Classes | |
class | InterpolationFailed |
Public Types | |
typedef T | CoefficientRing |
typedef PolynomialOver< T > | Element |
typedef Element::CoefficientType | CoefficientType |
typedef Element::RandomizationParameter | RandomizationParameter |
Public Types inherited from AbstractEuclideanDomain< PolynomialOver< T > > | |
typedef PolynomialOver< T > | Element |
Public Types inherited from AbstractRing< PolynomialOver< T > > | |
typedef PolynomialOver< T > | Element |
Public Types inherited from AbstractGroup< PolynomialOver< T > > | |
typedef PolynomialOver< T > | Element |
Public Member Functions | |
RingOfPolynomialsOver (const CoefficientRing &ring) | |
Element | RandomElement (RandomNumberGenerator &rng, const RandomizationParameter ¶meter) |
bool | Equal (const Element &a, const Element &b) const |
Compare two elements for equality. More... | |
const Element & | Identity () const |
Provides the Identity element. More... | |
const Element & | Add (const Element &a, const Element &b) const |
Adds elements in the group. More... | |
Element & | Accumulate (Element &a, const Element &b) const |
TODO. More... | |
const Element & | Inverse (const Element &a) const |
Inverts the element in the group. More... | |
const Element & | Subtract (const Element &a, const Element &b) const |
Subtracts elements in the group. More... | |
Element & | Reduce (Element &a, const Element &b) const |
Reduces an element in the congruence class. More... | |
const Element & | Double (const Element &a) const |
Doubles an element in the group. More... | |
const Element & | MultiplicativeIdentity () const |
Retrieves the multiplicative identity. More... | |
const Element & | Multiply (const Element &a, const Element &b) const |
Multiplies elements in the group. More... | |
const Element & | Square (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 Element & | MultiplicativeInverse (const Element &a) const |
Calculate the multiplicative inverse of an element in the group. More... | |
const Element & | Divide (const Element &a, const Element &b) const |
Divides elements in the group. More... | |
const Element & | Mod (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 Element & | Gcd (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... | |
AbstractRing & | operator= (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 |
Ring of polynomials over another ring.
Definition at line 318 of file polynomi.h.
typedef T RingOfPolynomialsOver< T >::CoefficientRing |
Definition at line 321 of file polynomi.h.
typedef Element::CoefficientType RingOfPolynomialsOver< T >::CoefficientType |
Definition at line 323 of file polynomi.h.
typedef PolynomialOver<T> RingOfPolynomialsOver< T >::Element |
Definition at line 322 of file polynomi.h.
typedef Element::RandomizationParameter RingOfPolynomialsOver< T >::RandomizationParameter |
Definition at line 324 of file polynomi.h.
|
inline |
Definition at line 326 of file polynomi.h.
|
inlinevirtual |
TODO.
a | first element |
b | second element |
Reimplemented from AbstractGroup< PolynomialOver< T > >.
Definition at line 340 of file polynomi.h.
|
inlinevirtual |
Adds elements in the group.
a | first element |
b | second element |
a
and b
Implements AbstractGroup< PolynomialOver< T > >.
Definition at line 337 of file polynomi.h.
|
protected |
Definition at line 456 of file polynomi.cpp.
|
inlinevirtual |
Divides elements in the group.
a | the dividend |
b | the divisor |
Reimplemented from AbstractRing< PolynomialOver< T > >.
Definition at line 370 of file polynomi.h.
|
inlinevirtual |
Performs the division algorithm on two elements in the ring.
r | the remainder |
q | the quotient |
a | the dividend |
d | the divisor |
Implements AbstractEuclideanDomain< PolynomialOver< T > >.
Definition at line 376 of file polynomi.h.
|
inlinevirtual |
Doubles an element in the group.
a | the element |
Reimplemented from AbstractGroup< PolynomialOver< T > >.
Definition at line 352 of file polynomi.h.
|
inlinevirtual |
Compare two elements for equality.
a | first element |
b | second element |
Equal() tests the elements for equality using a==b
Implements AbstractGroup< PolynomialOver< T > >.
Definition at line 331 of file polynomi.h.
|
inlinevirtual |
Provides the Identity element.
Implements AbstractGroup< PolynomialOver< T > >.
Definition at line 334 of file polynomi.h.
RingOfPolynomialsOver< T >::Element RingOfPolynomialsOver< T >::Interpolate | ( | const CoefficientType | x[], |
const CoefficientType | y[], | ||
unsigned int | n | ||
) | const |
Definition at line 476 of file polynomi.cpp.
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.
|
inlinevirtual |
Inverts the element in the group.
a | first element |
Implements AbstractGroup< PolynomialOver< T > >.
Definition at line 343 of file polynomi.h.
|
inlinevirtual |
Determines whether an element is a unit in the group.
a | the element |
Implements AbstractRing< PolynomialOver< T > >.
Definition at line 364 of file polynomi.h.
|
inlinevirtual |
Performs a modular reduction in the ring.
a | the element |
b | the modulus |
ab
. Implements AbstractEuclideanDomain< PolynomialOver< T > >.
Definition at line 373 of file polynomi.h.
|
inlinevirtual |
Retrieves the multiplicative identity.
Implements AbstractRing< PolynomialOver< T > >.
Definition at line 355 of file polynomi.h.
|
inlinevirtual |
Calculate the multiplicative inverse of an element in the group.
a | the element |
Implements AbstractRing< PolynomialOver< T > >.
Definition at line 367 of file polynomi.h.
|
inlinevirtual |
Multiplies elements in the group.
a | the multiplicand |
b | the multiplier |
Implements AbstractRing< PolynomialOver< T > >.
Definition at line 358 of file polynomi.h.
|
inline |
Definition at line 328 of file polynomi.h.
|
inlinevirtual |
Reduces an element in the congruence class.
a | element to reduce |
b | the congruence class |
Reimplemented from AbstractGroup< PolynomialOver< T > >.
Definition at line 349 of file polynomi.h.
|
inlinevirtual |
Square an element in the group.
a | the element |
Reimplemented from AbstractRing< PolynomialOver< T > >.
Definition at line 361 of file polynomi.h.
|
inlinevirtual |
Subtracts elements in the group.
a | first element |
b | second element |
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.
|
protected |
Definition at line 397 of file polynomi.h.