| 1605 | |
| 1606 | template<unsigned int Precision> |
| 1607 | const ampf<Precision> ampf<Precision>::getRandom() |
| 1608 | { |
| 1609 | ampf<Precision> r; |
| 1610 | while(mpfr_urandomb(r.getWritePtr(), *amp::mpfr_storage::getRandState())); |
| 1611 | return r; |
| 1612 | } |
| 1613 | |
| 1614 | // |
| 1615 | // comparison operators |
nothing calls this directly
no test coverage detected