2012-10-08 16:28:28 +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 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) 2012 Fredrik Johansson
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-01-23 15:54:38 +01:00
|
|
|
#include <math.h>
|
|
|
|
#include "double_extras.h"
|
|
|
|
#include "hypgeom.h"
|
2012-10-08 16:28:28 +02:00
|
|
|
|
2013-01-23 15:54:38 +01:00
|
|
|
#define LOG2 0.69314718055994530942
|
|
|
|
#define EXP1 2.7182818284590452354
|
|
|
|
|
|
|
|
static __inline__ double d_root(double x, int r)
|
2012-10-08 16:28:28 +02:00
|
|
|
{
|
2013-01-23 15:54:38 +01:00
|
|
|
if (r == 1)
|
|
|
|
return x;
|
|
|
|
if (r == 2)
|
|
|
|
return sqrt(x);
|
|
|
|
return pow(x, 1. / r);
|
2012-10-08 16:28:28 +02:00
|
|
|
}
|
|
|
|
|
2013-01-23 15:54:38 +01:00
|
|
|
long
|
|
|
|
hypgeom_estimate_terms(const fmpr_t z, int r, long prec)
|
2012-10-08 16:28:28 +02:00
|
|
|
{
|
2013-01-23 15:54:38 +01:00
|
|
|
double y, t;
|
|
|
|
|
2013-02-05 15:10:27 +01:00
|
|
|
t = fmpr_get_d(z, FMPR_RND_UP);
|
2013-01-23 15:54:38 +01:00
|
|
|
t = fabs(t);
|
|
|
|
|
|
|
|
if (t == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (r == 0)
|
|
|
|
{
|
|
|
|
if (t >= 1)
|
|
|
|
{
|
|
|
|
printf("z must be smaller than 1\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
y = (log(1-t) - prec * LOG2) / log(t) + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y = (prec * LOG2) / (d_root(t, r) * EXP1 * r);
|
|
|
|
y = (prec * LOG2) / (r * d_lambertw(y)) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (y >= LONG_MAX / 2)
|
|
|
|
{
|
|
|
|
printf("error: series will converge too slowly\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return y;
|
2012-10-08 16:28:28 +02:00
|
|
|
}
|
2013-01-23 15:54:38 +01:00
|
|
|
|