Converts the numerator of the rational to a BigInteger
()
| 46 | * Converts the numerator of the rational to a BigInteger |
| 47 | **/ |
| 48 | public BigInteger getBigIntNumerator() |
| 49 | { |
| 50 | IntNum n = getNumerator(); |
| 51 | return new BigInteger(n.toString()); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Converts the denominator of the rational to a BigInteger |
no test coverage detected