arb/arf/get_fmpz.c
Tommy Hofmann 6bf072eb59 Replace abort with flint_abort.
This will allow us to not loose the julia session on error.
See also https://github.com/wbhart/flint2/pull/243
2017-02-28 16:52:57 +01:00

227 lines
5.5 KiB
C

/*
Copyright (C) 2014 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 "arf.h"
int
arf_get_fmpz(fmpz_t z, const arf_t x, arf_rnd_t rnd)
{
slong exp;
int negative, inexact, value, roundup;
mp_size_t xn, zn;
mp_srcptr xp;
__mpz_struct * zz;
mp_ptr zp;
mp_limb_t v, v2, v3;
if (arf_is_special(x))
{
if (arf_is_zero(x))
{
fmpz_zero(z);
return 0;
}
else
{
flint_printf("arf_get_fmpz: cannot convert infinity or nan to integer\n");
flint_abort();
}
}
exp = ARF_EXP(x);
negative = ARF_SGNBIT(x);
if (COEFF_IS_MPZ(exp))
{
/* tiny */
if (fmpz_sgn(ARF_EXPREF(x)) < 0)
{
if (rnd == ARF_RND_NEAR
|| rnd == ARF_RND_DOWN
|| (rnd == ARF_RND_FLOOR && !negative)
|| (rnd == ARF_RND_CEIL && negative))
{
fmpz_zero(z);
}
else
{
fmpz_set_si(z, negative ? -1 : 1);
}
return 1;
}
else
{
flint_printf("arf_get_fmpz: number too large to convert to integer\n");
flint_abort();
}
}
/* |x| < 1 */
if (exp <= 0)
{
if (rnd == ARF_RND_NEAR)
{
if (exp == 0)
{
/* check for the special case +/- 1/2 */
ARF_GET_MPN_READONLY(xp, xn, x);
if (xp[xn - 1] < LIMB_TOP || (xn == 1 && xp[xn - 1] == LIMB_TOP))
value = 0;
else
value = negative ? -1 : 1;
}
else
{
value = 0;
}
}
else if (rnd == ARF_RND_DOWN ||
(rnd == ARF_RND_FLOOR && !negative) ||
(rnd == ARF_RND_CEIL && negative))
{
value = 0;
}
else
{
value = negative ? -1 : 1;
}
_fmpz_demote(z);
*z = value;
return 1;
}
ARF_GET_MPN_READONLY(xp, xn, x);
/* Fast case: |x| < 2^31 or 2^63 (must save 1 bit for rounding up!) */
if (exp < FLINT_BITS)
{
v = xp[xn - 1];
v2 = v >> (FLINT_BITS - exp); /* integral part */
v3 = v << exp; /* fractional part (truncated, at least 1 bit) */
inexact = (xn > 1) || (v3 != 0);
if (inexact && rnd != ARF_RND_DOWN)
{
if (rnd == ARF_RND_NEAR)
{
/* round up of fractional part is > 1/2,
or if equal to 1/2 and the integral part is odd */
v2 += (v3 > LIMB_TOP) || (v3 == LIMB_TOP && (xn > 1 || (v2 & 1)));
}
else
{
v2 += (rnd == ARF_RND_UP) || (negative ^ (rnd == ARF_RND_CEIL));
}
}
if (negative)
fmpz_neg_ui(z, v2);
else
fmpz_set_ui(z, v2);
return inexact;
}
/* |x| >= 1 */
/* Allocate space for result + 1 extra bit. We need one extra bit
temporarily to check rounding to nearest. We also need one extra bit
to round up. */
zn = (exp + (rnd != ARF_RND_DOWN) + FLINT_BITS - 1) / FLINT_BITS;
zz = _fmpz_promote(z);
if (zz->_mp_alloc < zn)
mpz_realloc2(zz, zn * FLINT_BITS);
zp = zz->_mp_d;
if (rnd == ARF_RND_DOWN)
{
/* zn is the exact size */
inexact = _arf_get_integer_mpn(zp, xp, xn, exp);
}
else
{
zp[zn - 1] = 0;
inexact = _arf_get_integer_mpn(zp, xp, xn, exp + (rnd == ARF_RND_NEAR));
if (rnd == ARF_RND_NEAR)
{
v = zp[0];
/* round up if fractional part is >= 1/2 and (there are
more discarded bits, or the truncated value would be odd) */
roundup = (v & 1) & (inexact | (v >> 1));
inexact |= (v & 1);
mpn_rshift(zp, zp, zn, 1);
mpn_add_1(zp, zp, zn, roundup);
}
else if (inexact && ((rnd == ARF_RND_UP)
|| (negative ^ (rnd == ARF_RND_CEIL))))
{
mpn_add_1(zp, zp, zn, 1);
}
zn -= (zp[zn - 1] == 0);
}
zz->_mp_size = negative ? -zn : zn;
_fmpz_demote_val(z);
return inexact;
}
int
arf_get_fmpz_fixed_fmpz(fmpz_t y, const arf_t x, const fmpz_t e)
{
if (arf_is_special(x))
{
return arf_get_fmpz(y, x, ARF_RND_DOWN);
}
else
{
int inexact;
fmpz_t exp;
arf_t tmp;
fmpz_init(exp);
fmpz_sub(exp, ARF_EXPREF(x), e);
arf_init_set_shallow(tmp, x);
ARF_EXP(tmp) = *exp;
inexact = arf_get_fmpz(y, tmp, ARF_RND_DOWN);
fmpz_clear(exp);
return inexact;
}
}
int
arf_get_fmpz_fixed_si(fmpz_t y, const arf_t x, slong e)
{
if (arf_is_special(x))
{
return arf_get_fmpz(y, x, ARF_RND_DOWN);
}
else
{
int inexact;
fmpz_t exp;
arf_t tmp;
fmpz_init(exp);
fmpz_sub_si(exp, ARF_EXPREF(x), e);
arf_init_set_shallow(tmp, x);
ARF_EXP(tmp) = *exp;
inexact = arf_get_fmpz(y, tmp, ARF_RND_DOWN);
fmpz_clear(exp);
return inexact;
}
}