change long to slong in arb_get_ubound_arf and arb_get_lbound_arf

This commit is contained in:
Joel Dahne 2020-05-04 11:18:22 +02:00
parent ec574fd7e3
commit 2bf24a2c73
4 changed files with 6 additions and 6 deletions

4
arb.h
View file

@ -294,8 +294,8 @@ arb_get_rad_arb(arb_t z, const arb_t x)
void arb_get_abs_ubound_arf(arf_t u, const arb_t x, slong prec);
void arb_get_abs_lbound_arf(arf_t u, const arb_t x, slong prec);
void arb_get_ubound_arf(arf_t u, const arb_t x, long prec);
void arb_get_lbound_arf(arf_t u, const arb_t x, long prec);
void arb_get_ubound_arf(arf_t u, const arb_t x, slong prec);
void arb_get_lbound_arf(arf_t u, const arb_t x, slong prec);
void arb_nonnegative_part(arb_t res, const arb_t x);

View file

@ -12,7 +12,7 @@
#include "arb.h"
void
arb_get_lbound_arf(arf_t u, const arb_t x, long prec)
arb_get_lbound_arf(arf_t u, const arb_t x, slong prec)
{
arf_t t;
arf_init_set_mag_shallow(t, arb_radref(x));

View file

@ -12,7 +12,7 @@
#include "arb.h"
void
arb_get_ubound_arf(arf_t u, const arb_t x, long prec)
arb_get_ubound_arf(arf_t u, const arb_t x, slong prec)
{
arf_t t;
arf_init_set_mag_shallow(t, arb_radref(x));

View file

@ -419,12 +419,12 @@ Radius and interval operations
Sets *u* to the lower bound for the absolute value of *x*,
rounded down to *prec* bits. If *x* contains NaN, the result is NaN.
.. function:: void arb_get_ubound_arf(arf_t u, const arb_t x, long prec)
.. function:: void arb_get_ubound_arf(arf_t u, const arb_t x, slong prec)
Sets *u* to the upper bound for the value of *x*,
rounded up to *prec* bits. If *x* contains NaN, the result is NaN.
.. function:: void arb_get_lbound_arf(arf_t u, const arb_t x, long prec)
.. function:: void arb_get_lbound_arf(arf_t u, const arb_t x, slong prec)
Sets *u* to the lower bound for the value of *x*,
rounded down to *prec* bits. If *x* contains NaN, the result is NaN.