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
|
/*=============================================================================
This file is part of FLINT.
FLINT 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.
FLINT 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 FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2012 Fredrik Johansson
******************************************************************************/
#include "flint.h"
#include "nmod_poly.h"
static __inline__
int _nmod_poly_sqrt_2(mp_ptr s, mp_srcptr p, slong len)
{
slong i;
for (i = 1; i < len; i += 2)
if (p[i] != 0)
return 0;
for (i = 0; i < len; i += 2)
s[i / 2] = p[i];
return 1;
}
int
_nmod_poly_sqrt(mp_ptr s, mp_srcptr p, slong len, nmod_t mod)
{
slong slen;
int result;
mp_ptr t;
mp_limb_t c, d;
if (len % 2 == 0)
return len == 0;
if (mod.n == 2)
return _nmod_poly_sqrt_2(s, p, len);
/* valuation must be even, and then can be reduced to 0 */
while (p[0] == 0)
{
if (p[1] != 0)
return 0;
s[0] = 0;
p += 2;
len -= 2;
s++;
}
c = d = p[0];
if (c != 1)
{
c = n_sqrtmod(c, mod.n);
if (c == 0)
return 0;
}
if (len == 1)
{
s[0] = c;
return 1;
}
slen = len / 2 + 1;
t = _nmod_vec_init(len);
if (c == 1)
_nmod_poly_sqrt_series(s, p, slen, mod);
else
{
_nmod_vec_scalar_mul_nmod(t, p, slen, n_invmod(d, mod.n), mod);
_nmod_poly_sqrt_series(s, t, slen, mod);
}
if (c != 1)
_nmod_vec_scalar_mul_nmod(s, s, slen, c, mod);
_nmod_poly_mulhigh(t, s, slen, s, slen, slen, mod);
result = _nmod_vec_equal(t + slen, p + slen, len - slen);
_nmod_vec_clear(t);
return result;
}
int
nmod_poly_sqrt(nmod_poly_t b, const nmod_poly_t a)
{
slong blen, len = a->length;
int result;
if (len % 2 == 0)
{
nmod_poly_zero(b);
return len == 0;
}
if (b == a)
{
nmod_poly_t tmp;
nmod_poly_init_preinv(tmp, a->mod.n, a->mod.ninv);
result = nmod_poly_sqrt(tmp, a);
nmod_poly_swap(b, tmp);
nmod_poly_clear(tmp);
return result;
}
blen = len / 2 + 1;
nmod_poly_fit_length(b, blen);
b->length = blen;
result = _nmod_poly_sqrt(b->coeffs, a->coeffs, len, a->mod);
if (!result)
b->length = 0;
return result;
}
|