#include "test_helpers.h"
#include "mpn_extras.h"
#include "arb.h"
TEST_FUNCTION_START(arb_atan_taylor_rs, state)
{
slong iter;
for (iter = 0; iter < 100000 * 0.1 * flint_test_multiplier(); iter++)
{
nn_ptr x, y1, y2, t;
ulong err1, err2;
ulong N;
slong xn;
int alternating, cmp, result;
N = n_randint(state, 256);
alternating = n_randint(state, 2);
xn = 1 + n_randint(state, 20);
x = flint_malloc(sizeof(ulong) * xn);
y1 = flint_malloc(sizeof(ulong) * xn);
y2 = flint_malloc(sizeof(ulong) * xn);
t = flint_malloc(sizeof(ulong) * xn);
flint_mpn_rrandom(x, state, xn);
x[xn - 1] &= (LIMB_ONES >> 4);
_arb_atan_taylor_naive(y1, &err1, x, xn, N, alternating);
_arb_atan_taylor_rs(y2, &err2, x, xn, N, alternating);
cmp = mpn_cmp(y1, y2, xn);
if (cmp == 0)
{
result = 1;
}
else if (cmp > 0)
{
mpn_sub_n(t, y1, y2, xn);
result = flint_mpn_zero_p(t + 1, xn - 1) && (t[0] <= err2);
}
else
{
mpn_sub_n(t, y2, y1, xn);
result = flint_mpn_zero_p(t + 1, xn - 1) && (t[0] <= err2);
}
if (!result)
{
flint_printf("FAIL\n");
flint_printf("N = %wd xn = %wd alternating = %d\n", N, xn, alternating);
flint_printf("x =");
flint_mpn_debug(x, xn);
flint_printf("y1 =");
flint_mpn_debug(y1, xn);
flint_printf("y2 =");
flint_mpn_debug(y2, xn);
flint_abort();
}
flint_free(x);
flint_free(y1);
flint_free(y2);
flint_free(t);
}
TEST_FUNCTION_END(state);
}