]> www.ginac.de Git - ginac.git/blob - ginac/polynomial/mgcd.cpp
[BUGFIX] Fix crash in parser.
[ginac.git] / ginac / polynomial / mgcd.cpp
1 /** @file mgcd.cpp
2  *
3  *  Chinese remainder algorithm. */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2020 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #include "operators.h"
24 #include "chinrem_gcd.h"
25 #include "pgcd.h"
26 #include "collect_vargs.h"
27 #include "primes_factory.h"
28 #include "divide_in_z_p.h"
29 #include "poly_cra.h"
30 #include <numeric> // std::accumulate
31
32 #include <cln/integer.h>
33 #include <cln/integer_ring.h>
34 #include <cln/rational.h>
35 #include <cln/rational_ring.h>
36
37 namespace GiNaC {
38
39 static cln::cl_I extract_integer_content(ex& Apr, const ex& A)
40 {
41         static const cln::cl_I n1(1);
42         const numeric icont_ = A.integer_content();
43         GINAC_ASSERT(cln::instanceof(icont_.to_cl_N(), cln::cl_RA_ring));
44         if (cln::instanceof(icont_.to_cl_N(), cln::cl_I_ring)) {
45                 const cln::cl_I icont = cln::the<cln::cl_I>(icont_.to_cl_N());
46                 if (icont != 1) {
47                         Apr = (A/icont_).expand();
48                         return icont;
49                 } else {
50                         Apr = A;
51                         return n1;
52                 }
53         } else {
54                 Apr = (A/icont_).expand();
55                 // A is a polynomial over rationals, so GCD is defined
56                 // up to arbitrary rational number.
57                 return n1;
58         }
59 }
60
61 ex chinrem_gcd(const ex& A_, const ex& B_, const exvector& vars)
62 {
63         ex A, B;
64         const cln::cl_I a_icont = extract_integer_content(A, A_);
65         const cln::cl_I b_icont = extract_integer_content(B, B_);
66         const cln::cl_I c = cln::gcd(a_icont, b_icont);
67
68         const cln::cl_I a_lc = integer_lcoeff(A, vars);
69         const cln::cl_I b_lc = integer_lcoeff(B, vars);
70         const cln::cl_I g_lc = cln::gcd(a_lc, b_lc);
71
72         exp_vector_t n = std::min(degree_vector(A, vars), degree_vector(B, vars));
73         const int nTot = std::accumulate(n.begin(), n.end(), 0);
74         const cln::cl_I A_max_coeff = to_cl_I(A.max_coefficient()); 
75         const cln::cl_I B_max_coeff = to_cl_I(B.max_coefficient());
76
77         const cln::cl_I lcoeff_limit = (cln::cl_I(1) << nTot)*cln::abs(g_lc)*
78                 std::min(A_max_coeff, B_max_coeff);
79
80
81         cln::cl_I q = 0;
82         ex H = 0;
83
84         long p;
85         primes_factory pfactory;
86         while (true) {
87                 bool has_primes = pfactory(p, g_lc);
88                 if (!has_primes)
89                         throw chinrem_gcd_failed();
90
91                 const numeric pnum(p);
92                 ex Ap = A.smod(pnum);
93                 ex Bp = B.smod(pnum);
94                 ex Cp = pgcd(Ap, Bp, vars, p);
95
96                 const cln::cl_I g_lcp = smod(g_lc, p); 
97                 const cln::cl_I Cp_lc = integer_lcoeff(Cp, vars);
98                 const cln::cl_I nlc = smod(recip(Cp_lc, p)*g_lcp, p);
99                 Cp = (Cp*numeric(nlc)).expand().smod(pnum);
100                 exp_vector_t cp_deg = degree_vector(Cp, vars);
101                 if (zerop(cp_deg))
102                         return numeric(c);
103                 if (zerop(q)) {
104                         H = Cp;
105                         n = cp_deg;
106                         q = p;
107                 } else {
108                         if (cp_deg == n) {
109                                 ex H_next = chinese_remainder(H, q, Cp, p);
110                                 q = q*cln::cl_I(p);
111                                 H = H_next;
112                         } else if (cp_deg < n) {
113                                 // all previous homomorphisms are unlucky
114                                 q = p;
115                                 H = Cp;
116                                 n = cp_deg;
117                         } else {
118                                 // dp_deg > d_deg: current prime is bad
119                         }
120                 }
121                 if (q < lcoeff_limit)
122                         continue; // don't bother to do division checks
123                 ex C, dummy1, dummy2;
124                 extract_integer_content(C, H);
125                 if (divide_in_z_p(A, C, dummy1, vars, 0) && 
126                                 divide_in_z_p(B, C, dummy2, vars, 0))
127                         return (numeric(c)*C).expand();
128                 // else: try more primes
129         }
130 }
131
132 } // namespace GiNaC