| 133 | } |
| 134 | |
| 135 | void Num3072::FullReduce() |
| 136 | { |
| 137 | limb_t c0 = MAX_PRIME_DIFF; |
| 138 | limb_t c1 = 0; |
| 139 | for (int i = 0; i < LIMBS; ++i) { |
| 140 | addnextract2(c0, c1, this->limbs[i], this->limbs[i]); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | Num3072 Num3072::GetInverse() const |
| 145 | { |
no test coverage detected