mirror of
https://github.com/vale981/arb
synced 2025-03-11 04:56:41 -04:00
7 lines
147 B
C
7 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);
|
|
}
|