mirror of
https://github.com/vale981/arb
synced 2025-03-06 09:51:39 -05:00
148 lines
4.4 KiB
C
148 lines
4.4 KiB
C
/*=============================================================================
|
|
|
|
This file is part of ARB.
|
|
|
|
ARB is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
ARB is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with ARB; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
=============================================================================*/
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2016 Fredrik Johansson
|
|
|
|
******************************************************************************/
|
|
|
|
#include "acb_hypgeom.h"
|
|
|
|
int main()
|
|
{
|
|
slong iter;
|
|
flint_rand_t state;
|
|
|
|
flint_printf("pfq....");
|
|
fflush(stdout);
|
|
|
|
flint_randinit(state);
|
|
|
|
for (iter = 0; iter < 1000; iter++)
|
|
{
|
|
acb_ptr a, b;
|
|
acb_t z, t, res1, res2;
|
|
slong i, p, q, extend, prec1, prec2;
|
|
int regularized1, regularized2;
|
|
|
|
p = n_randint(state, 3);
|
|
q = n_randint(state, 3);
|
|
extend = n_randint(state, 3);
|
|
|
|
a = _acb_vec_init(p + extend);
|
|
b = _acb_vec_init(q + extend);
|
|
acb_init(z);
|
|
acb_init(t);
|
|
acb_init(res1);
|
|
acb_init(res2);
|
|
|
|
prec1 = 2 + n_randint(state, 200);
|
|
prec2 = 2 + n_randint(state, 200);
|
|
regularized1 = n_randint(state, 2);
|
|
regularized2 = n_randint(state, 2);
|
|
|
|
for (i = 0; i < p; i++)
|
|
{
|
|
if (n_randint(state, 2))
|
|
acb_one(a + i);
|
|
else
|
|
acb_randtest_param(a + i, state, 1 + n_randint(state, 200), 3);
|
|
}
|
|
|
|
for (i = 0; i < q; i++)
|
|
acb_randtest_param(b + i, state, 1 + n_randint(state, 200), 3);
|
|
|
|
for (i = 0; i < extend; i++)
|
|
{
|
|
acb_randtest_param(a + p + i, state, 1 + n_randint(state, 200), 3);
|
|
acb_set(b + q + i, a + p + i);
|
|
}
|
|
|
|
acb_randtest_param(z, state, 1 + n_randint(state, 200), 3);
|
|
|
|
acb_hypgeom_pfq(res1, a, p, b, q, z, regularized1, prec1);
|
|
acb_hypgeom_pfq(res2, a, p + extend, b, q + extend, z, regularized2, prec2);
|
|
|
|
if (regularized1 && !regularized2)
|
|
{
|
|
for (i = 0; i < q; i++)
|
|
{
|
|
acb_rgamma(t, b + i, prec2);
|
|
acb_mul(res2, res2, t, prec2);
|
|
}
|
|
}
|
|
else if (regularized2)
|
|
{
|
|
if (!regularized1)
|
|
{
|
|
for (i = 0; i < q; i++)
|
|
{
|
|
acb_rgamma(t, b + i, prec2);
|
|
acb_mul(res1, res1, t, prec2);
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < extend; i++)
|
|
{
|
|
acb_rgamma(t, b + q + i, prec2);
|
|
acb_mul(res1, res1, t, prec2);
|
|
}
|
|
}
|
|
|
|
if (!acb_overlaps(res1, res2))
|
|
{
|
|
flint_printf("FAIL: overlap\n\n");
|
|
flint_printf("p = %wd, q = %wd, regularized1 = %d, regularized2 = %d\n\n",
|
|
p, q, regularized1, regularized2);
|
|
|
|
for (i = 0; i < p + extend; i++)
|
|
{
|
|
flint_printf("a[%wd] = ", i);
|
|
acb_printd(a + i, 30);
|
|
flint_printf("\n\n");
|
|
}
|
|
|
|
for (i = 0; i < q + extend; i++)
|
|
{
|
|
flint_printf("b[%wd] = ", i);
|
|
acb_printd(b + i, 30);
|
|
flint_printf("\n\n");
|
|
}
|
|
|
|
flint_printf("z = "); acb_printd(z, 30); flint_printf("\n\n");
|
|
flint_printf("res1 = "); acb_printd(res1, 30); flint_printf("\n\n");
|
|
flint_printf("res2 = "); acb_printd(res2, 30); flint_printf("\n\n");
|
|
abort();
|
|
}
|
|
|
|
_acb_vec_clear(a, p + extend);
|
|
_acb_vec_clear(b, q + extend);
|
|
acb_clear(z);
|
|
acb_clear(t);
|
|
acb_clear(res1);
|
|
acb_clear(res2);
|
|
}
|
|
|
|
flint_randclear(state);
|
|
flint_cleanup();
|
|
flint_printf("PASS\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|