2016-04-26 17:20:05 +02:00
|
|
|
/*
|
2014-05-13 20:43:04 +02:00
|
|
|
Copyright (C) 2012 Fredrik Johansson
|
|
|
|
|
2016-04-26 17:20:05 +02:00
|
|
|
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/>.
|
|
|
|
*/
|
2014-05-13 20:43:04 +02:00
|
|
|
|
|
|
|
#include "arb_poly.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-11-05 17:59:29 +00:00
|
|
|
slong iter;
|
2014-05-13 20:43:04 +02:00
|
|
|
flint_rand_t state;
|
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("divrem....");
|
2014-05-13 20:43:04 +02:00
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
flint_randinit(state);
|
|
|
|
|
2016-04-10 17:24:58 +02:00
|
|
|
for (iter = 0; iter < 100000 * arb_test_multiplier(); iter++)
|
2014-05-13 20:43:04 +02:00
|
|
|
{
|
2015-11-05 17:59:29 +00:00
|
|
|
slong m, n, qbits1, qbits2, rbits1, rbits2, rbits3;
|
2014-05-13 20:43:04 +02:00
|
|
|
fmpq_poly_t A, B, Q, R;
|
|
|
|
arb_poly_t a, b, q, r;
|
|
|
|
|
|
|
|
qbits1 = 2 + n_randint(state, 200);
|
|
|
|
qbits2 = 2 + n_randint(state, 200);
|
|
|
|
rbits1 = 2 + n_randint(state, 200);
|
|
|
|
rbits2 = 2 + n_randint(state, 200);
|
|
|
|
rbits3 = 2 + n_randint(state, 200);
|
|
|
|
|
|
|
|
m = 1 + n_randint(state, 20);
|
|
|
|
n = 1 + n_randint(state, 20);
|
|
|
|
|
|
|
|
fmpq_poly_init(A);
|
|
|
|
fmpq_poly_init(B);
|
|
|
|
fmpq_poly_init(Q);
|
|
|
|
fmpq_poly_init(R);
|
|
|
|
|
|
|
|
arb_poly_init(a);
|
|
|
|
arb_poly_init(b);
|
|
|
|
arb_poly_init(q);
|
|
|
|
arb_poly_init(r);
|
|
|
|
|
|
|
|
fmpq_poly_randtest(A, state, m, qbits1);
|
|
|
|
fmpq_poly_randtest_not_zero(B, state, n, qbits2);
|
|
|
|
|
|
|
|
fmpq_poly_divrem(Q, R, A, B);
|
|
|
|
|
|
|
|
arb_poly_set_fmpq_poly(a, A, rbits1);
|
|
|
|
arb_poly_set_fmpq_poly(b, B, rbits2);
|
|
|
|
|
|
|
|
arb_poly_divrem(q, r, a, b, rbits3);
|
|
|
|
|
|
|
|
if (!arb_poly_contains_fmpq_poly(q, Q) ||
|
|
|
|
!arb_poly_contains_fmpq_poly(r, R))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("A = "); fmpq_poly_print(A); flint_printf("\n\n");
|
|
|
|
flint_printf("B = "); fmpq_poly_print(B); flint_printf("\n\n");
|
|
|
|
flint_printf("Q = "); fmpq_poly_print(Q); flint_printf("\n\n");
|
|
|
|
flint_printf("R = "); fmpq_poly_print(R); flint_printf("\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("a = "); arb_poly_printd(a, 15); flint_printf("\n\n");
|
|
|
|
flint_printf("b = "); arb_poly_printd(b, 15); flint_printf("\n\n");
|
|
|
|
flint_printf("q = "); arb_poly_printd(q, 15); flint_printf("\n\n");
|
|
|
|
flint_printf("r = "); arb_poly_printd(r, 15); flint_printf("\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
arb_poly_divrem(a, r, a, b, rbits3);
|
|
|
|
if (!arb_poly_equal(a, q))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL (aliasing q, a)\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
}
|
|
|
|
arb_poly_set_fmpq_poly(a, A, rbits1);
|
|
|
|
|
|
|
|
arb_poly_divrem(b, r, a, b, rbits3);
|
|
|
|
if (!arb_poly_equal(b, q))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL (aliasing q, b)\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
arb_poly_set_fmpq_poly(b, B, rbits2);
|
|
|
|
|
|
|
|
arb_poly_divrem(q, a, a, b, rbits3);
|
|
|
|
if (!arb_poly_equal(a, r))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL (aliasing r, a)\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
arb_poly_set_fmpq_poly(a, A, rbits1);
|
|
|
|
|
|
|
|
arb_poly_divrem(q, b, a, b, rbits3);
|
|
|
|
if (!arb_poly_equal(b, r))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL (aliasing r, b)\n\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fmpq_poly_clear(A);
|
|
|
|
fmpq_poly_clear(B);
|
|
|
|
fmpq_poly_clear(Q);
|
|
|
|
fmpq_poly_clear(R);
|
|
|
|
|
|
|
|
arb_poly_clear(a);
|
|
|
|
arb_poly_clear(b);
|
|
|
|
arb_poly_clear(q);
|
|
|
|
arb_poly_clear(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
flint_randclear(state);
|
|
|
|
flint_cleanup();
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("PASS\n");
|
2014-05-13 20:43:04 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|