mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
70 lines
1.8 KiB
C
70 lines
1.8 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) 2014 Fredrik Johansson
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include "acb.h"
|
||
|
|
||
|
void
|
||
|
acb_chebyshev_u_ui(acb_t y, ulong n, const acb_t x, long prec)
|
||
|
{
|
||
|
acb_t a, b;
|
||
|
|
||
|
if (n <= 1)
|
||
|
{
|
||
|
if (n == 0)
|
||
|
{
|
||
|
acb_one(y);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
acb_set_round(y, x, prec);
|
||
|
acb_mul_2exp_si(y, y, 1);
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
acb_init(a);
|
||
|
acb_init(b);
|
||
|
|
||
|
acb_chebyshev_u2_ui(a, b, n / 2, x, prec);
|
||
|
|
||
|
if (n % 2 == 0)
|
||
|
{
|
||
|
acb_add(y, a, b, prec);
|
||
|
acb_sub(b, a, b, prec);
|
||
|
acb_mul(y, y, b, prec);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
acb_submul(b, a, x, prec);
|
||
|
acb_mul(y, a, b, prec);
|
||
|
acb_mul_2exp_si(y, y, 1);
|
||
|
acb_neg(y, y);
|
||
|
}
|
||
|
|
||
|
acb_clear(a);
|
||
|
acb_clear(b);
|
||
|
}
|
||
|
|