2013-02-27 14:51:03 +01: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) 2013 Fredrik Johansson
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "gamma.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
gamma_rising_fmprb_ui_bsplit(fmprb_t y, const fmprb_t x, ulong n, long prec)
|
|
|
|
{
|
2013-03-09 12:32:56 +01:00
|
|
|
if (prec < 512 || n < 8 || fmprb_bits(x) < prec / 8)
|
2013-02-27 14:51:03 +01:00
|
|
|
gamma_rising_fmprb_ui_bsplit_simple(y, x, n, prec);
|
|
|
|
else
|
2013-03-09 12:32:56 +01:00
|
|
|
gamma_rising_fmprb_ui_delta(y, x, n, 0, prec);
|
2013-02-27 14:51:03 +01:00
|
|
|
}
|
|
|
|
|