mirror of
https://github.com/vale981/arb
synced 2025-03-12 05:26:39 -04:00
8 lines
147 B
C
8 lines
147 B
C
![]() |
#include "mprb.h"
|
||
|
|
||
|
void
|
||
|
mprb_get_rad_mpfr(mpfr_t r, const mprb_t x)
|
||
|
{
|
||
|
mpfr_set_ui_2exp(r, x->rad, x->exp - FLINT_BITS * x->size, MPFR_RNDU);
|
||
|
}
|