/*
Copyright (C) 2021 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"
int main(void)
{
int i, result;
FLINT_TEST_INIT(state);
flint_printf("divides....");
fflush(stdout);
/* test random values */
for (i = 0; i < 1000 * flint_test_multiplier(); i++)
{
mp_limb_t n, p, q;
int flag;
int nbits = n_randint(state, FLINT_BITS + 1);
int pbits = n_randint(state, FLINT_BITS + 1);
n = n_randtest_bits(state, nbits);
p = n_randtest_bits(state, pbits);
flag = n_divides(&q, n, p);
result = ((flag && ((p == 0 && n == 0) || p*q == n)) ||
(!flag && q == 0 && ((p == 0 && n != 0) || p*q != n)));
if (!result)
{
flint_printf("FAIL:\n");
flint_printf("n = %wu, p = %wu, q = %wu\n", n, p, q);
abort();
}
}
/* test known divisible values */
for (i = 0; i < 1000 * flint_test_multiplier(); i++)
{
mp_limb_t n, p, q, s;
int flag;
int pbits = n_randint(state, FLINT_BITS + 1);
int sbits = n_randint(state, FLINT_BITS - pbits + 1);
p = n_randtest_bits(state, pbits);
s = n_randtest_bits(state, sbits);
n = p*s;
flag = n_divides(&q, n, p);
result = (flag && ((p == 0 && n == 0) || p*q == n));
if (!result)
{
flint_printf("FAIL:\n");
flint_printf("n = %wu, p = %wu, q = %wu\n", n, p, q);
abort();
}
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}