arb/acb_poly/test/t-rising_ui_series.c
2016-04-26 17:20:05 +02:00

114 lines
3.3 KiB
C

/*
Copyright (C) 2012 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 "acb_poly.h"
int main()
{
slong iter;
flint_rand_t state;
flint_printf("rising_ui_series....");
fflush(stdout);
flint_randinit(state);
/* check rf(f, a) * rf(f + a, b) = rf(f, a + b) */
for (iter = 0; iter < 1000 * arb_test_multiplier(); iter++)
{
slong bits, trunc;
ulong a, b;
acb_poly_t f, g, h1, h2, h1h2, h3;
bits = 2 + n_randint(state, 200);
trunc = 1 + n_randint(state, 20);
a = n_randint(state, 10);
b = n_randint(state, 10);
acb_poly_init(f);
acb_poly_init(g);
acb_poly_init(h1);
acb_poly_init(h2);
acb_poly_init(h1h2);
acb_poly_init(h3);
acb_poly_randtest(f, state, 1 + n_randint(state, 20), bits, 4);
acb_poly_set(g, f);
/* g = f + 1 */
if (g->length == 0)
{
acb_poly_fit_length(g, 1);
acb_set_ui(g->coeffs, a);
_acb_poly_set_length(g, 1);
_acb_poly_normalise(g);
}
else
{
acb_add_ui(g->coeffs, g->coeffs, a, bits);
_acb_poly_normalise(g);
}
acb_poly_rising_ui_series(h1, f, a, trunc, bits);
acb_poly_rising_ui_series(h2, g, b, trunc, bits);
acb_poly_rising_ui_series(h3, f, a + b, trunc, bits);
acb_poly_mullow(h1h2, h1, h2, trunc, bits);
if (!acb_poly_overlaps(h1h2, h3))
{
flint_printf("FAIL\n\n");
flint_printf("bits = %wd\n", bits);
flint_printf("trunc = %wd\n", trunc);
flint_printf("a = %wu\n", a);
flint_printf("b = %wu\n", a);
flint_printf("f = "); acb_poly_printd(f, 15); flint_printf("\n\n");
flint_printf("g = "); acb_poly_printd(g, 15); flint_printf("\n\n");
flint_printf("h1 = "); acb_poly_printd(h1, 15); flint_printf("\n\n");
flint_printf("h2 = "); acb_poly_printd(h2, 15); flint_printf("\n\n");
flint_printf("h1h2 = "); acb_poly_printd(h1h2, 15); flint_printf("\n\n");
flint_printf("h3 = "); acb_poly_printd(h3, 15); flint_printf("\n\n");
abort();
}
acb_poly_rising_ui_series(f, f, a, trunc, bits);
if (!acb_poly_equal(f, h1))
{
flint_printf("FAIL (aliasing)\n\n");
flint_printf("bits = %wd\n", bits);
flint_printf("trunc = %wd\n", trunc);
flint_printf("a = %wu\n", a);
flint_printf("b = %wu\n", a);
flint_printf("f = "); acb_poly_printd(f, 15); flint_printf("\n\n");
flint_printf("h1 = "); acb_poly_printd(h1, 15); flint_printf("\n\n");
abort();
}
acb_poly_clear(f);
acb_poly_clear(g);
acb_poly_clear(h1);
acb_poly_clear(h2);
acb_poly_clear(h1h2);
acb_poly_clear(h3);
}
flint_randclear(state);
flint_cleanup();
flint_printf("PASS\n");
return EXIT_SUCCESS;
}