| 1560 | |
| 1561 | template<unsigned int Precision> |
| 1562 | const ampf<Precision> ampf<Precision>::getMaxNumber() |
| 1563 | { |
| 1564 | ampf<Precision> r(1); |
| 1565 | mpfr_nextbelow(r.getWritePtr()); |
| 1566 | mpfr_set_exp(r.getWritePtr(),mpfr_get_emax()); |
| 1567 | return r; |
| 1568 | } |
| 1569 | |
| 1570 | template<unsigned int Precision> |
| 1571 | const ampf<Precision> ampf<Precision>::getMinNumber() |
nothing calls this directly
no test coverage detected