| 297 | } |
| 298 | |
| 299 | Integer AbstractRing::Exponentiate(const Element &base, |
| 300 | const Integer &exponent) const |
| 301 | { |
| 302 | Element result; |
| 303 | SimultaneousExponentiate(&result, base, &exponent, 1); |
| 304 | return result; |
| 305 | } |
| 306 | |
| 307 | |
| 308 | Integer AbstractRing::CascadeExponentiate(const Element &x, |
no outgoing calls
no test coverage detected