mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
124 lines
3.3 KiB
C
124 lines
3.3 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) 2013 Fredrik Johansson
|
|
|
|
******************************************************************************/
|
|
|
|
#include "acb_poly.h"
|
|
#include "gamma.h"
|
|
#include "zeta.h"
|
|
|
|
void
|
|
_acb_log_rising_correct_branch(acb_t t,
|
|
const acb_t t_wrong, const acb_t z, ulong r, long prec);
|
|
|
|
void acb_gamma_stirling_choose_param(int * reflect, long * r, long * n,
|
|
const acb_t x, int use_reflect, int digamma, long prec);
|
|
|
|
void
|
|
_acb_poly_gamma_stirling_eval(acb_ptr res, const acb_t z, long n, long num, long prec);
|
|
|
|
static __inline__ void
|
|
_log_rising_ui_series(acb_ptr t, const acb_t x, long r, long len, long prec)
|
|
{
|
|
acb_struct f[2];
|
|
long rflen;
|
|
|
|
acb_init(f);
|
|
acb_init(f + 1);
|
|
|
|
acb_set(f, x);
|
|
acb_one(f + 1);
|
|
|
|
rflen = FLINT_MIN(len, r + 1);
|
|
_acb_poly_rising_ui_series(t, f, FLINT_MIN(2, len), r, rflen, prec);
|
|
_acb_poly_log_series(t, t, rflen, len, prec);
|
|
|
|
_acb_log_rising_correct_branch(t, t, x, r, prec);
|
|
|
|
acb_clear(f);
|
|
acb_clear(f + 1);
|
|
}
|
|
|
|
void
|
|
_acb_poly_lgamma_series(acb_ptr res, acb_srcptr h, long hlen, long len, long prec)
|
|
{
|
|
int reflect;
|
|
long r, n, wp;
|
|
acb_t zr;
|
|
acb_ptr t, u;
|
|
|
|
hlen = FLINT_MIN(hlen, len);
|
|
wp = prec + FLINT_BIT_COUNT(prec);
|
|
|
|
t = _acb_vec_init(len);
|
|
u = _acb_vec_init(len);
|
|
acb_init(zr);
|
|
|
|
/* TODO: use real code at real numbers */
|
|
if (0)
|
|
{
|
|
}
|
|
else if (len <= 2)
|
|
{
|
|
acb_lgamma(u, h, wp);
|
|
if (len == 2)
|
|
acb_digamma(u + 1, h, wp);
|
|
}
|
|
else
|
|
{
|
|
/* otherwise use Stirling series */
|
|
acb_gamma_stirling_choose_param(&reflect, &r, &n, h, 0, 0, wp);
|
|
acb_add_ui(zr, h, r, wp);
|
|
_acb_poly_gamma_stirling_eval(u, zr, n, len, wp);
|
|
|
|
if (r != 0)
|
|
{
|
|
_log_rising_ui_series(t, h, r, len, wp);
|
|
_acb_vec_sub(u, u, t, len, wp);
|
|
}
|
|
}
|
|
|
|
/* compose with nonconstant part */
|
|
acb_zero(t);
|
|
_acb_vec_set(t + 1, h + 1, hlen - 1);
|
|
_acb_poly_compose_series(res, u, len, t, hlen, len, prec);
|
|
|
|
acb_clear(zr);
|
|
_acb_vec_clear(t, len);
|
|
_acb_vec_clear(u, len);
|
|
}
|
|
|
|
void
|
|
acb_poly_lgamma_series(acb_poly_t res, const acb_poly_t f, long n, long prec)
|
|
{
|
|
acb_poly_fit_length(res, n);
|
|
|
|
if (f->length == 0 || n == 0)
|
|
_acb_vec_indeterminate(res->coeffs, n);
|
|
else
|
|
_acb_poly_lgamma_series(res->coeffs, f->coeffs, f->length, n, prec);
|
|
|
|
_acb_poly_set_length(res, n);
|
|
_acb_poly_normalise(res);
|
|
}
|
|
|