Converts the denominator of the rational to a BigInteger
()
| 55 | * Converts the denominator of the rational to a BigInteger |
| 56 | **/ |
| 57 | public BigInteger getBigIntDenominator() |
| 58 | { |
| 59 | IntNum n = getDenominator(); |
| 60 | return new BigInteger(n.toString()); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Returns a string representation in decimal notation. |
no test coverage detected