(BigInt val)
| 372 | //} |
| 373 | |
| 374 | @WarnBoxedMath(false) |
| 375 | static public Number reduceBigInt(BigInt val){ |
| 376 | if(val.bipart == null) |
| 377 | return num(val.lpart); |
| 378 | else |
| 379 | return val.bipart; |
| 380 | } |
| 381 | |
| 382 | static public Number divide(BigInteger n, BigInteger d){ |
| 383 | if(d.equals(BigInteger.ZERO)) |
no test coverage detected