| 37 | // ------------------------------------------------ |
| 38 | |
| 39 | void Int::ModAdd(Int *a) { |
| 40 | Int p; |
| 41 | Add(a); |
| 42 | p.Sub(this,&_P); |
| 43 | if(p.IsPositive()) |
| 44 | Set(&p); |
| 45 | } |
| 46 | |
| 47 | // ------------------------------------------------ |
| 48 |
no test coverage detected