![]() |
Fabcoin Core
0.16.2
P2P Digital Currency
|
Quotient ring. More...
#include <algebra.h>
Public Types | |
typedef T | EuclideanDomain |
typedef T::Element | Element |
![]() | |
typedef T | Element |
![]() | |
typedef T | Element |
Public Member Functions | |
QuotientRing (const EuclideanDomain &domain, const Element &modulus) | |
const EuclideanDomain & | GetDomain () const |
const Element & | GetModulus () const |
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... | |
bool | IsUnit (const Element &a) const |
Determines whether an element is a unit 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... | |
const Element & | MultiplicativeInverse (const Element &a) const |
Calculate the multiplicative inverse of an element in the group. More... | |
bool | operator== (const QuotientRing< T > &rhs) const |
![]() | |
AbstractRing () | |
Construct an AbstractRing. More... | |
AbstractRing (const AbstractRing &source) | |
Copy construct an AbstractRing. More... | |
AbstractRing & | operator= (const AbstractRing &source) |
Assign an AbstractRing. More... | |
virtual const Element & | Divide (const Element &a, const Element &b) const |
Divides elements in the group. 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< T > & | MultiplicativeGroup () const |
Retrieves the multiplicative group. More... | |
![]() | |
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 Attributes | |
EuclideanDomain | m_domain |
Element | m_modulus |
Quotient ring.
T | element class or type |
const Element&
returned by member functions are references to internal data members. Since each object may have only one such data member for holding results, the following code will produce incorrect results:
abcd = group.Add(group.Add(a,b), group.Add(c,d));
But this should be fine:
abcd = group.Add(a, group.Add(b, group.Add(c,d));
typedef T::Element QuotientRing< T >::Element |
typedef T QuotientRing< T >::EuclideanDomain |
|
inline |
|
inlinevirtual |
|
inlinevirtual |
Adds elements in the group.
a | first element |
b | second element |
a
and b
Implements AbstractGroup< T >.
|
inlinevirtual |
Doubles an element in the group.
a | the element |
Reimplemented from AbstractGroup< T >.
|
inlinevirtual |
Compare two elements for equality.
a | first element |
b | second element |
Equal() tests the elements for equality using a==b
Implements AbstractGroup< T >.
|
inline |
|
inline |
|
inlinevirtual |
|
inlinevirtual |
Inverts the element in the group.
a | first element |
Implements AbstractGroup< T >.
|
inlinevirtual |
Determines whether an element is a unit in the group.
a | the element |
Implements AbstractRing< T::Element >.
|
inlinevirtual |
Retrieves the multiplicative identity.
Implements AbstractRing< T::Element >.
|
virtual |
Calculate the multiplicative inverse of an element in the group.
a | the element |
Implements AbstractRing< T::Element >.
Definition at line 70 of file algebra.cpp.
|
inlinevirtual |
Multiplies elements in the group.
a | the multiplicand |
b | the multiplier |
Implements AbstractRing< T::Element >.
|
inline |
|
inlinevirtual |
Reduces an element in the congruence class.
a | element to reduce |
b | the congruence class |
Reimplemented from AbstractGroup< T >.
|
inlinevirtual |
Square an element in the group.
a | the element |
Reimplemented from AbstractRing< T::Element >.
|
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< T >.
|
protected |
|
protected |