| 136 | } |
| 137 | |
| 138 | void Int::ModAddK1order(Int *a, Int *b) { |
| 139 | mpz_add(num,num,a->num); |
| 140 | mpz_add(num,num,b->num); |
| 141 | mpz_sub(num,num,_O->num); |
| 142 | if (mpz_cmp_ui(num,0) < 0 ) |
| 143 | mpz_add(num,num,_O->num); |
| 144 | } |
| 145 | |
| 146 | void Int::ModInvorder() { |
| 147 | mpz_invert(num,num,_O->num); |
nothing calls this directly
no outgoing calls
no test coverage detected