mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
74 lines
2 KiB
C
74 lines
2 KiB
C
/*
|
|
Copyright (C) 2013 Fredrik Johansson
|
|
|
|
This file is part of Arb.
|
|
|
|
Arb is free software: you can redistribute it and/or modify it under
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
by the Free Software Foundation; either version 2.1 of the License, or
|
|
(at your option) any later version. See <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "fmpr.h"
|
|
|
|
void
|
|
fmpr_divappr_abs_ubound(fmpr_t z, const fmpr_t x, const fmpr_t y, slong prec)
|
|
{
|
|
if (fmpr_is_special(x) || fmpr_is_special(y) || fmpz_is_pm1(fmpr_manref(y)))
|
|
{
|
|
fmpr_div(z, x, y, prec, FMPR_RND_UP);
|
|
fmpr_abs(z, z);
|
|
}
|
|
else
|
|
{
|
|
fmpz_t t, u;
|
|
slong xbits, ybits, tbits, ubits, shift;
|
|
|
|
xbits = fmpz_bits(fmpr_manref(x));
|
|
ybits = fmpz_bits(fmpr_manref(y));
|
|
|
|
fmpz_init(t);
|
|
fmpz_init(u);
|
|
|
|
ubits = FLINT_MIN(ybits, prec);
|
|
tbits = prec + ubits + 1;
|
|
|
|
/* upper bound for |x|, shifted */
|
|
if (xbits <= tbits)
|
|
{
|
|
fmpz_mul_2exp(t, fmpr_manref(x), tbits - xbits);
|
|
fmpz_abs(t, t);
|
|
}
|
|
else if (fmpz_sgn(fmpr_manref(x)) > 0)
|
|
{
|
|
fmpz_cdiv_q_2exp(t, fmpr_manref(x), xbits - tbits);
|
|
}
|
|
else
|
|
{
|
|
fmpz_fdiv_q_2exp(t, fmpr_manref(x), xbits - tbits);
|
|
fmpz_neg(t, t);
|
|
}
|
|
|
|
/* lower bound for |y|, shifted */
|
|
if (ybits <= ubits)
|
|
fmpz_mul_2exp(u, fmpr_manref(y), ubits - ybits);
|
|
else
|
|
fmpz_tdiv_q_2exp(u, fmpr_manref(y), ybits - ubits);
|
|
fmpz_abs(u, u);
|
|
|
|
fmpz_cdiv_q(fmpr_manref(z), t, u);
|
|
|
|
shift = (ubits - ybits) - (tbits - xbits);
|
|
fmpz_sub(fmpr_expref(z), fmpr_expref(x), fmpr_expref(y));
|
|
if (shift >= 0)
|
|
fmpz_add_ui(fmpr_expref(z), fmpr_expref(z), shift);
|
|
else
|
|
fmpz_sub_ui(fmpr_expref(z), fmpr_expref(z), -shift);
|
|
|
|
_fmpr_normalise(fmpr_manref(z), fmpr_expref(z), prec, FMPR_RND_UP);
|
|
|
|
fmpz_clear(t);
|
|
fmpz_clear(u);
|
|
}
|
|
}
|
|
|