1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/*
Copyright (C) 2013 Fredrik Johansson
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/>.
*/
#include "arb_poly.h"
#define MUL(z, zlen, x, xlen, y, ylen, trunc, prec) \
do { \
slong slen = FLINT_MIN(xlen + ylen - 1, trunc); \
_arb_poly_mullow(z, x, xlen, y, ylen, slen, prec); \
zlen = slen; \
} while (0)
void
_arb_poly_pow_ui_trunc_binexp(arb_ptr res,
arb_srcptr f, slong flen, ulong exp, slong len, slong prec)
{
arb_ptr v, R, S, T;
slong rlen;
ulong bit;
if (exp <= 1)
{
if (exp == 0)
arb_one(res);
else if (exp == 1)
_arb_vec_set_round(res, f, len, prec);
return;
}
/* (f * x^r)^m = x^(rm) * f^m */
while (flen > 1 && arb_is_zero(f))
{
if (((ulong) len) > exp)
{
_arb_vec_zero(res, exp);
len -= exp;
res += exp;
}
else
{
_arb_vec_zero(res, len);
return;
}
f++;
flen--;
}
if (exp == 2)
{
_arb_poly_mullow(res, f, flen, f, flen, len, prec);
return;
}
if (flen == 1)
{
arb_pow_ui(res, f, exp, prec);
return;
}
v = _arb_vec_init(len);
bit = UWORD(1) << (FLINT_BIT_COUNT(exp) - 2);
if (n_zerobits(exp) % 2)
{
R = res;
S = v;
}
else
{
R = v;
S = res;
}
MUL(R, rlen, f, flen, f, flen, len, prec);
if (bit & exp)
{
MUL(S, rlen, R, rlen, f, flen, len, prec);
T = R;
R = S;
S = T;
}
while (bit >>= 1)
{
if (bit & exp)
{
MUL(S, rlen, R, rlen, R, rlen, len, prec);
MUL(R, rlen, S, rlen, f, flen, len, prec);
}
else
{
MUL(S, rlen, R, rlen, R, rlen, len, prec);
T = R;
R = S;
S = T;
}
}
_arb_vec_clear(v, len);
}
void
arb_poly_pow_ui_trunc_binexp(arb_poly_t res,
const arb_poly_t poly, ulong exp, slong len, slong prec)
{
slong flen, rlen;
flen = poly->length;
if (exp == 0 && len != 0)
{
arb_poly_one(res);
}
else if (flen == 0 || len == 0)
{
arb_poly_zero(res);
}
else
{
rlen = poly_pow_length(flen, exp, len);
if (res != poly)
{
arb_poly_fit_length(res, rlen);
_arb_poly_pow_ui_trunc_binexp(res->coeffs,
poly->coeffs, flen, exp, rlen, prec);
_arb_poly_set_length(res, rlen);
_arb_poly_normalise(res);
}
else
{
arb_poly_t t;
arb_poly_init2(t, rlen);
_arb_poly_pow_ui_trunc_binexp(t->coeffs,
poly->coeffs, flen, exp, rlen, prec);
_arb_poly_set_length(t, rlen);
_arb_poly_normalise(t);
arb_poly_swap(res, t);
arb_poly_clear(t);
}
}
}
|