#include "pgcd.h" #include "collect_vargs.h" #include "smod_helpers.h" #include "euclid_gcd_wrap.h" #include "eval_point_finder.h" #include "newton_interpolate.h" #include "divide_in_z_p.h" namespace GiNaC { extern void primpart_content(ex& pp, ex& c, ex e, const exvector& vars, const long p); // Computes the GCD of two polynomials over a prime field. // Based on Algorithm 7.2 from "Algorithms for Computer Algebra" // A and B are considered as Z_p[x_n][x_0, \ldots, x_{n-1}], that is, // as a polynomials in variables x_0, \ldots x_{n-1} having coefficients // from the ring Z_p[x_n] ex pgcd(const ex& A, const ex& B, const exvector& vars, const long p) { static const ex ex1(1); if (A.is_zero()) return B; if (B.is_zero()) return A; if (is_a(A)) return ex1; if (is_a(B)) return ex1; // Checks for univariate polynomial if (vars.size() == 1) { ex ret = euclid_gcd(A, B, vars[0], p); // Univariate GCD return ret; } const ex& mainvar(vars.back()); // gcd of the contents ex H = 0, Hprev = 0; // GCD candidate ex newton_poly = 1; // for Newton Interpolation // Contents and primparts of A and B ex Aprim, contA; primpart_content(Aprim, contA, A, vars, p); ex Bprim, contB; primpart_content(Bprim, contB, B, vars, p); // gcd of univariate polynomials const ex cont_gcd = euclid_gcd(contA, contB, mainvar, p); exvector restvars = vars; restvars.pop_back(); const ex AL = lcoeff_wrt(Aprim, restvars); const ex BL = lcoeff_wrt(Bprim, restvars); // gcd of univariate polynomials const ex lc_gcd = euclid_gcd(AL, BL, mainvar, p); // The estimate of degree of the gcd of Ab and Bb int gcd_deg = std::min(degree(Aprim, mainvar), degree(Bprim, mainvar)); eval_point_finder::value_type b; eval_point_finder find_eval_point(p); const numeric pn(p); do { // Find a `good' evaluation point b. bool has_more_pts = find_eval_point(b, lc_gcd, mainvar); // If there are no more possible evaluation points, bail out if (!has_more_pts) throw pgcd_failed(); const numeric bn(b); // Evaluate the polynomials in b ex Ab = Aprim.subs(mainvar == bn).smod(pn); ex Bb = Bprim.subs(mainvar == bn).smod(pn); ex Cb = pgcd(Ab, Bb, restvars, p); // Set the correct the leading coefficient const cln::cl_I lcb_gcd = smod(to_cl_I(lc_gcd.subs(mainvar == bn)), p); const cln::cl_I Cblc = integer_lcoeff(Cb, restvars); const cln::cl_I correct_lc = smod(lcb_gcd*recip(Cblc, p), p); Cb = (Cb*numeric(correct_lc)).smod(pn); // Test for unlucky homomorphisms const int img_gcd_deg = Cb.degree(restvars.back()); if (img_gcd_deg < gcd_deg) { // The degree decreased, previous homomorphisms were // bad, so we have to start it all over. H = Cb; newton_poly = mainvar - numeric(b); Hprev = 0; gcd_deg = img_gcd_deg; continue; } if (img_gcd_deg > gcd_deg) { // The degree of images GCD is too high, this // evaluation point is bad. Skip it. continue; } // Image has the same degree as the previous one // (or at least not higher than the limit) Hprev = H; H = newton_interp(Cb, b, H, newton_poly, mainvar, p); newton_poly = newton_poly*(mainvar - b); // try to reduce the number of division tests. const ex H_lcoeff = lcoeff_wrt(H, restvars); if (H_lcoeff.is_equal(lc_gcd)) { if ((Hprev-H).expand().smod(pn).is_zero()) continue; ex C /* primitive part of H */, contH /* dummy */; primpart_content(C, contH, H, vars, p); // Normalize GCD so that leading coefficient is 1 const cln::cl_I Clc = recip(integer_lcoeff(C, vars), p); C = (C*numeric(Clc)).expand().smod(pn); ex dummy1, dummy2; if (divide_in_z_p(Aprim, C, dummy1, vars, p) && divide_in_z_p(Bprim, C, dummy2, vars, p)) return (cont_gcd*C).expand().smod(pn); else if (img_gcd_deg == 0) return cont_gcd; // else continue building the candidate } } while(true); throw pgcd_failed(); } } // namespace GiNaC