| 323 | } |
| 324 | |
| 325 | PolynomialMod2 PolynomialMod2::Modulo(const PolynomialMod2 &b) const |
| 326 | { |
| 327 | PolynomialMod2 remainder, quotient; |
| 328 | PolynomialMod2::Divide(remainder, quotient, *this, b); |
| 329 | return remainder; |
| 330 | } |
| 331 | |
| 332 | PolynomialMod2& PolynomialMod2::operator<<=(unsigned int n) |
| 333 | { |
no outgoing calls
no test coverage detected