mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/*
|
|
Copyright (C) 2021 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_hypgeom.h"
|
|
|
|
void
|
|
acb_hypgeom_rising_ui_jet(acb_ptr res, const acb_t x, ulong n, slong len, slong prec)
|
|
{
|
|
if (len == 1)
|
|
{
|
|
acb_hypgeom_rising_ui_rec(res, x, n, prec);
|
|
}
|
|
else if (n <= 7)
|
|
{
|
|
acb_hypgeom_rising_ui_jet_powsum(res, x, n, len, prec);
|
|
}
|
|
else if (len == 2)
|
|
{
|
|
if (n <= 30 || acb_bits(x) >= prec / 128)
|
|
acb_hypgeom_rising_ui_jet_rs(res, x, n, 0, len, prec);
|
|
else
|
|
acb_hypgeom_rising_ui_jet_bs(res, x, n, len, prec);
|
|
}
|
|
else
|
|
{
|
|
if (n <= 20 || (n <= 200 && prec > 400 * n && acb_bits(x) >= prec / 4))
|
|
{
|
|
acb_hypgeom_rising_ui_jet_powsum(res, x, n, len, prec);
|
|
}
|
|
else if (len >= 64 || (acb_bits(x) + 1 < prec / 1024 && n >= 32))
|
|
{
|
|
acb_hypgeom_rising_ui_jet_bs(res, x, n, len, prec);
|
|
}
|
|
else
|
|
{
|
|
acb_hypgeom_rising_ui_jet_rs(res, x, n, 0, len, prec);
|
|
}
|
|
}
|
|
}
|
|
|