2016-04-26 17:20:05 +02:00
|
|
|
/*
|
2015-01-13 17:18:24 +01:00
|
|
|
Copyright (C) 2013 Fredrik Johansson
|
|
|
|
|
2016-04-26 17:20:05 +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 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/>.
|
|
|
|
*/
|
2015-01-13 17:18:24 +01:00
|
|
|
|
|
|
|
#include "acb_poly.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
_acb_poly_pow_series(acb_ptr h,
|
2015-11-05 17:51:23 +00:00
|
|
|
acb_srcptr f, slong flen,
|
|
|
|
acb_srcptr g, slong glen, slong len, slong prec)
|
2015-01-13 17:18:24 +01:00
|
|
|
{
|
|
|
|
if (glen == 1)
|
|
|
|
{
|
|
|
|
_acb_poly_pow_acb_series(h, f, flen, g, len, prec);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* f^g = exp(g * log(f)) */
|
|
|
|
if (flen == 1)
|
|
|
|
{
|
|
|
|
acb_t t;
|
|
|
|
acb_init(t);
|
|
|
|
acb_log(t, f, prec);
|
|
|
|
_acb_vec_scalar_mul(h, g, glen, t, prec);
|
|
|
|
_acb_poly_exp_series(h, h, glen, len, prec);
|
|
|
|
acb_clear(t);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
acb_ptr t;
|
|
|
|
t = _acb_vec_init(len);
|
|
|
|
_acb_poly_log_series(t, f, flen, len, prec);
|
|
|
|
_acb_poly_mullow(h, t, len, g, glen, len, prec);
|
|
|
|
_acb_poly_exp_series(h, h, len, len, prec);
|
|
|
|
_acb_vec_clear(t, len);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
acb_poly_pow_series(acb_poly_t h,
|
2015-11-05 17:51:23 +00:00
|
|
|
const acb_poly_t f, const acb_poly_t g, slong len, slong prec)
|
2015-01-13 17:18:24 +01:00
|
|
|
{
|
2015-11-05 17:51:23 +00:00
|
|
|
slong flen, glen;
|
2015-01-13 17:18:24 +01:00
|
|
|
|
|
|
|
flen = f->length;
|
|
|
|
glen = g->length;
|
|
|
|
|
|
|
|
flen = FLINT_MIN(flen, len);
|
|
|
|
glen = FLINT_MIN(glen, len);
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
{
|
|
|
|
acb_poly_zero(h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (glen == 0)
|
|
|
|
{
|
|
|
|
acb_poly_one(h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flen == 0)
|
|
|
|
{
|
|
|
|
acb_poly_zero(h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flen == 1 && glen == 1)
|
|
|
|
{
|
|
|
|
acb_poly_fit_length(h, 1);
|
|
|
|
acb_pow(h->coeffs, f->coeffs, g->coeffs, prec);
|
|
|
|
_acb_poly_set_length(h, 1);
|
|
|
|
_acb_poly_normalise(h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f == h || g == h)
|
|
|
|
{
|
|
|
|
acb_poly_t t;
|
|
|
|
acb_poly_init2(t, len);
|
|
|
|
_acb_poly_pow_series(t->coeffs,
|
|
|
|
f->coeffs, flen, g->coeffs, glen, len, prec);
|
|
|
|
_acb_poly_set_length(t, len);
|
|
|
|
_acb_poly_normalise(t);
|
|
|
|
acb_poly_swap(t, h);
|
|
|
|
acb_poly_clear(t);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
acb_poly_fit_length(h, len);
|
|
|
|
_acb_poly_pow_series(h->coeffs,
|
|
|
|
f->coeffs, flen, g->coeffs, glen, len, prec);
|
|
|
|
_acb_poly_set_length(h, len);
|
|
|
|
_acb_poly_normalise(h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|