2016-04-26 17:20:05 +02:00
|
|
|
/*
|
2014-11-09 13:28:39 +01:00
|
|
|
Copyright (C) 2014 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-11-09 13:28:39 +01:00
|
|
|
|
|
|
|
#include "acb_hypgeom.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-11-05 17:46:43 +00:00
|
|
|
slong iter;
|
2014-11-09 13:28:39 +01:00
|
|
|
flint_rand_t state;
|
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("bessel_j....");
|
2014-11-09 13:28:39 +01:00
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
flint_randinit(state);
|
|
|
|
|
2016-04-10 17:24:58 +02:00
|
|
|
for (iter = 0; iter < 2000 * arb_test_multiplier(); iter++)
|
2014-11-09 13:28:39 +01:00
|
|
|
{
|
|
|
|
acb_t nu0, nu1, nu2, z, w0, w1, w2, t, u;
|
2015-11-05 17:46:43 +00:00
|
|
|
slong prec0, prec1, prec2;
|
2014-11-09 13:28:39 +01:00
|
|
|
|
|
|
|
acb_init(nu0);
|
|
|
|
acb_init(nu1);
|
|
|
|
acb_init(nu2);
|
|
|
|
acb_init(z);
|
|
|
|
acb_init(w0);
|
|
|
|
acb_init(w1);
|
|
|
|
acb_init(w2);
|
|
|
|
acb_init(t);
|
|
|
|
acb_init(u);
|
|
|
|
|
|
|
|
prec0 = 2 + n_randint(state, 1000);
|
|
|
|
prec1 = 2 + n_randint(state, 1000);
|
|
|
|
prec2 = 2 + n_randint(state, 1000);
|
|
|
|
|
2015-06-05 23:39:02 -04:00
|
|
|
acb_randtest_param(nu0, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100));
|
2014-11-09 13:28:39 +01:00
|
|
|
acb_randtest(z, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100));
|
|
|
|
acb_randtest(w0, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100));
|
|
|
|
acb_randtest(w1, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100));
|
|
|
|
acb_randtest(w2, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100));
|
|
|
|
|
|
|
|
acb_sub_ui(nu1, nu0, 1, prec0);
|
|
|
|
acb_sub_ui(nu2, nu0, 2, prec0);
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w0, nu0, z, prec0);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w0, nu0, z, prec0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w0, nu0, z, prec0);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w1, nu0, z, prec1);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w1, nu0, z, prec1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w1, nu0, z, prec1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!acb_overlaps(w0, w1))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL: consistency\n\n");
|
|
|
|
flint_printf("nu = "); acb_printd(nu0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("z = "); acb_printd(z, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w0 = "); acb_printd(w0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w1 = "); acb_printd(w1, 30); flint_printf("\n\n");
|
2017-02-28 16:50:03 +01:00
|
|
|
flint_abort();
|
2014-11-09 13:28:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w1, nu1, z, prec1);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w1, nu1, z, prec1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w1, nu1, z, prec1);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w2, nu2, z, prec2);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w2, nu2, z, prec2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w2, nu2, z, prec2);
|
|
|
|
}
|
|
|
|
|
|
|
|
acb_mul(t, w1, nu1, prec0);
|
|
|
|
acb_mul_2exp_si(t, t, 1);
|
|
|
|
acb_submul(t, w2, z, prec0);
|
|
|
|
acb_submul(t, w0, z, prec0);
|
|
|
|
|
|
|
|
if (!acb_contains_zero(t))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL: contiguous relation\n\n");
|
|
|
|
flint_printf("nu = "); acb_printd(nu0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("z = "); acb_printd(z, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w0 = "); acb_printd(w0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w1 = "); acb_printd(w1, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w2 = "); acb_printd(w2, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("t = "); acb_printd(t, 30); flint_printf("\n\n");
|
2017-02-28 16:50:03 +01:00
|
|
|
flint_abort();
|
2014-11-09 13:28:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
acb_neg(t, nu0);
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w2, t, z, prec2);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w2, t, z, prec2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w2, t, z, prec2);
|
|
|
|
}
|
|
|
|
|
|
|
|
acb_mul(w1, w1, w2, prec2);
|
|
|
|
acb_neg(t, nu1);
|
|
|
|
|
|
|
|
switch (n_randint(state, 3))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
acb_hypgeom_bessel_j_asymp(w2, t, z, prec2);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
acb_hypgeom_bessel_j_0f1(w2, t, z, prec2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acb_hypgeom_bessel_j(w2, t, z, prec2);
|
|
|
|
}
|
|
|
|
|
|
|
|
acb_mul(w0, w0, w2, prec2);
|
|
|
|
acb_add(w0, w0, w1, prec2);
|
|
|
|
|
|
|
|
acb_sin_pi(t, nu0, prec2);
|
|
|
|
acb_const_pi(u, prec2);
|
|
|
|
acb_mul(u, u, z, prec2);
|
|
|
|
acb_div(t, t, u, prec2);
|
|
|
|
acb_mul_2exp_si(t, t, 1);
|
|
|
|
|
|
|
|
if (!acb_overlaps(w0, t))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL: wronskian\n\n");
|
|
|
|
flint_printf("nu = "); acb_printd(nu0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("z = "); acb_printd(z, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("w0 = "); acb_printd(w0, 30); flint_printf("\n\n");
|
|
|
|
flint_printf("t = "); acb_printd(t, 30); flint_printf("\n\n");
|
2017-02-28 16:50:03 +01:00
|
|
|
flint_abort();
|
2014-11-09 13:28:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
acb_clear(nu0);
|
|
|
|
acb_clear(nu1);
|
|
|
|
acb_clear(nu2);
|
|
|
|
acb_clear(z);
|
|
|
|
acb_clear(w0);
|
|
|
|
acb_clear(w1);
|
|
|
|
acb_clear(w2);
|
|
|
|
acb_clear(t);
|
|
|
|
acb_clear(u);
|
|
|
|
}
|
|
|
|
|
|
|
|
flint_randclear(state);
|
|
|
|
flint_cleanup();
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("PASS\n");
|
2014-11-09 13:28:39 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|