commit
03619c0800
|
|
@ -57,7 +57,7 @@ public:
|
||||||
/// \brief Copy construct a ModularArithmetic
|
/// \brief Copy construct a ModularArithmetic
|
||||||
/// \param ma other ModularArithmetic
|
/// \param ma other ModularArithmetic
|
||||||
ModularArithmetic(const ModularArithmetic &ma)
|
ModularArithmetic(const ModularArithmetic &ma)
|
||||||
: m_modulus(ma.m_modulus), m_result(static_cast<word>(0), m_modulus.reg.size()) {}
|
: AbstractRing<Integer>(ma), m_modulus(ma.m_modulus), m_result(static_cast<word>(0), m_modulus.reg.size()) {}
|
||||||
|
|
||||||
/// \brief Assign a ModularArithmetic
|
/// \brief Assign a ModularArithmetic
|
||||||
/// \param ma other ModularArithmetic
|
/// \param ma other ModularArithmetic
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue