/* Copyright (C) 2020 Daniel Schultz This file is part of FLINT. FLINT 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 . */ #include #include #include #include "flint.h" #include "ulong_extras.h" #include "fmpz.h" void fmpz_cdiv_qr(fmpz_t f, fmpz_t s, const fmpz_t g, const fmpz_t h) { fmpz c1 = *g; fmpz c2 = *h; if (fmpz_is_zero(h)) { flint_printf("Exception (fmpz_cdiv_q). Division by zero.\n"); flint_abort(); } if (!COEFF_IS_MPZ(c1)) /* g is small */ { if (!COEFF_IS_MPZ(c2)) /* h is also small */ { fmpz q = c1 / c2; /* compute C quotient */ fmpz r = c1 - c2 * q; /* compute remainder */ /* rounding of division is undefined, but it should satisfy: */ FLINT_ASSERT(FLINT_ABS(r) < FLINT_ABS(c2)); if ((c2 > WORD(0) && r > WORD(0)) || (c2 < WORD(0) && r < WORD(0))) { q += 1; /* q cannot overflow as remainder implies |c2| != 1 */ r -= c2; } fmpz_set_si(f, q); fmpz_set_si(s, r); } else /* h is large and g is small */ { int sgn_h = fmpz_sgn(h); if ((c1 < WORD(0) && sgn_h < 0) || (c1 > WORD(0) && sgn_h > 0)) /* signs are the same */ { fmpz_sub(s, g, h); fmpz_one(f); /* quotient > 0, round up to 1 */ } else { fmpz_set_si(s, c1); fmpz_zero(f); /* quotient <= 0, round up to 0 */ } } } else /* g is large */ { __mpz_struct *mpz_ptr, *mpz_ptr2; _fmpz_promote(f); /* must not hang on to ptr whilst promoting s */ mpz_ptr2 = _fmpz_promote(s); mpz_ptr = COEFF_TO_PTR(*f); if (!COEFF_IS_MPZ(c2)) /* h is small */ { if (c2 > 0) /* h > 0 */ { flint_mpz_cdiv_qr_ui(mpz_ptr, mpz_ptr2, COEFF_TO_PTR(c1), c2); } else { flint_mpz_fdiv_qr_ui(mpz_ptr, mpz_ptr2, COEFF_TO_PTR(c1), -c2); mpz_neg(mpz_ptr, mpz_ptr); } } else /* both are large */ { mpz_cdiv_qr(mpz_ptr, mpz_ptr2, COEFF_TO_PTR(c1), COEFF_TO_PTR(c2)); } _fmpz_demote_val(f); /* division by h may result in small value */ _fmpz_demote_val(s); /* division by h may result in small value */ } }