| 1158 | } |
| 1159 | |
| 1160 | void Int::ModAddK1order(Int *a, Int *b) { |
| 1161 | Add(a,b); |
| 1162 | Sub(_O); |
| 1163 | if (IsNegative()) |
| 1164 | Add(_O); |
| 1165 | } |
| 1166 | |
| 1167 | void Int::ModAddK1order(Int *a) { |
| 1168 | Add(a); |
nothing calls this directly
no outgoing calls
no test coverage detected