mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
change long to slong in arb_get_ubound_arf and arb_get_lbound_arf
This commit is contained in:
parent
ec574fd7e3
commit
2bf24a2c73
4 changed files with 6 additions and 6 deletions
4
arb.h
4
arb.h
|
@ -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);
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue