/*
Copyright (C) 2009 William Hart
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"
ulong
fmpz_fdiv_ui(const fmpz_t g, ulong h)
{
fmpz c1 = *g;
ulong r;
if (h == UWORD(0))
{
flint_printf("Exception (fmpz_fdiv_ui). Division by 0.\n");
flint_abort();
}
if (!COEFF_IS_MPZ(c1)) /* g is small */
{
if (c1 < WORD(0))
{
r = h - (-c1 % h); /* C doesn't correctly handle negative mods */
if (r == h)
r = 0;
}
else
r = c1 % h;
return r;
}
else /* g is large */
{
return flint_mpz_fdiv_ui(COEFF_TO_PTR(c1), h);
}
}