1 | //////////////////////////////////////////////////////////// |
---|
2 | // emacs edit mode for this file is -*- C++ -*- |
---|
3 | /* $Id$ */ |
---|
4 | ///////////////////////////////////////////////////////////// |
---|
5 | // FACTORY - Includes |
---|
6 | #include <factory.h> |
---|
7 | // Factor - Includes |
---|
8 | #include <tmpl_inst.h> |
---|
9 | #include <Factor.h> |
---|
10 | #include <SqrFree.h> |
---|
11 | #include <helpstuff.h> |
---|
12 | #include <homogfactor.h> |
---|
13 | // Charset - Includes |
---|
14 | #include "csutil.h" |
---|
15 | extern void out_cf(char *s1,const CanonicalForm &f,char *s2); |
---|
16 | extern CanonicalForm alg_lc(const CanonicalForm &f); |
---|
17 | extern int hasAlgVar(const CanonicalForm &f); |
---|
18 | |
---|
19 | static bool |
---|
20 | lowerRank ( const CanonicalForm & f, const CanonicalForm & g, int & ind ) |
---|
21 | { |
---|
22 | int df, dg; |
---|
23 | Variable vf = f.mvar(), vg = g.mvar(); |
---|
24 | |
---|
25 | if ( f.inCoeffDomain() ) |
---|
26 | { |
---|
27 | if ( g.inCoeffDomain() ) ind= 1; |
---|
28 | return true;//( vg > vf ); |
---|
29 | } |
---|
30 | else if ( g.inCoeffDomain() ) return false; |
---|
31 | else if ( vf < vg ) return true; |
---|
32 | else if ( vf == vg ) |
---|
33 | { |
---|
34 | df = degree( f ); dg = degree( g ); |
---|
35 | if ( df < dg ) return true; |
---|
36 | else if ( df == dg ) return lowerRank( LC( f ), LC( g ) , ind); |
---|
37 | else return false; |
---|
38 | } |
---|
39 | return false; |
---|
40 | } |
---|
41 | |
---|
42 | CanonicalForm |
---|
43 | lowestRank( const CFList & F ) |
---|
44 | { |
---|
45 | CFListIterator i = F; |
---|
46 | CanonicalForm f; |
---|
47 | int ind=0; |
---|
48 | if ( ! i.hasItem() ) return f; |
---|
49 | f = i.getItem(); ++i; |
---|
50 | while ( i.hasItem() ) |
---|
51 | { |
---|
52 | //CERR << "comparing " << f << " and " << i.getItem() |
---|
53 | // << " == " << lowerRank( i.getItem(), f, ind ) << "\n"; |
---|
54 | if ( lowerRank( i.getItem(), f, ind ) ) |
---|
55 | { |
---|
56 | if ( ind ) |
---|
57 | { |
---|
58 | CFList Itemlist= get_Terms(i.getItem()); |
---|
59 | CFList Flist= get_Terms(f); |
---|
60 | |
---|
61 | // Have to further compare number of terms! |
---|
62 | //CERR << "compare terms! f= " << Flist.length() << " item= " |
---|
63 | // << Itemlist.length() <<"\n"; |
---|
64 | if ( Itemlist.length() < Flist.length()) f = i.getItem(); |
---|
65 | ind=0; |
---|
66 | } |
---|
67 | else |
---|
68 | { |
---|
69 | f = i.getItem(); |
---|
70 | } |
---|
71 | } |
---|
72 | ++i; |
---|
73 | } |
---|
74 | return f; |
---|
75 | } |
---|
76 | |
---|
77 | // old version |
---|
78 | // CanonicalForm |
---|
79 | // prem ( const CanonicalForm &f, const CanonicalForm &g ) |
---|
80 | // { |
---|
81 | // CanonicalForm ff, gg, cg; |
---|
82 | // int df, dg; |
---|
83 | // bool reord; |
---|
84 | // Variable vf, vg, v; |
---|
85 | // |
---|
86 | // if ( (vf = f.mvar()) < (vg = g.mvar()) ) return f; |
---|
87 | // else { |
---|
88 | // if ( vf == vg ) { |
---|
89 | // ff = f; gg = g; |
---|
90 | // reord = false; |
---|
91 | // v = vg; |
---|
92 | // } |
---|
93 | // else { |
---|
94 | // v = Variable(level(f.mvar()) + 1); |
---|
95 | // ff = swapvar(f,vg,v); |
---|
96 | // gg = swapvar(g,vg,v); |
---|
97 | // reord=true; |
---|
98 | // } |
---|
99 | // cg = ini( gg, v ); |
---|
100 | // dg = degree( gg, v ); |
---|
101 | // while ( ( df = degree( ff, v ) ) >= dg ) |
---|
102 | // ff = cg * ff - power( v, df-dg ) * gg * LC( ff, v ); |
---|
103 | // if ( reord ) { |
---|
104 | // return swapvar( ff, vg, v ); |
---|
105 | // } |
---|
106 | // else |
---|
107 | // return ff; |
---|
108 | // } |
---|
109 | // } |
---|
110 | |
---|
111 | CanonicalForm |
---|
112 | Prem ( const CanonicalForm &f, const CanonicalForm &g ) |
---|
113 | { |
---|
114 | CanonicalForm ff, gg, l, test, lu, lv, t, retvalue; |
---|
115 | int df, dg; |
---|
116 | bool reord; |
---|
117 | Variable vf, vg, v; |
---|
118 | |
---|
119 | if ( (vf = f.mvar()) < (vg = g.mvar()) ) return f; |
---|
120 | else |
---|
121 | { |
---|
122 | if ( vf == vg ) |
---|
123 | { |
---|
124 | ff = f; gg = g; |
---|
125 | reord = false; |
---|
126 | v = vg; |
---|
127 | } |
---|
128 | else |
---|
129 | { |
---|
130 | v = Variable(level(f.mvar()) + 1); |
---|
131 | ff = swapvar(f,vg,v); |
---|
132 | gg = swapvar(g,vg,v); |
---|
133 | reord=true; |
---|
134 | } |
---|
135 | dg = degree( gg, v ); |
---|
136 | df = degree( ff, v ); |
---|
137 | if (dg <= df) {l=LC(gg); gg = gg -LC(gg)*power(v,dg);} |
---|
138 | else { l = 1; } |
---|
139 | while ( ( dg <= df ) && ( !ff.isZero()) ) |
---|
140 | { |
---|
141 | // CERR << "Start gcd..." << "\n"; |
---|
142 | test = gcd(l,LC(ff)); |
---|
143 | //CERR << "gcd(" << l << "," << LC(ff) << ")= " << test << "\n"; |
---|
144 | lu = l/test; lv = LC(ff)/test; |
---|
145 | t = power(v,df-dg) * gg * lv; |
---|
146 | if ( df == 0 ){ ff = ff.genZero(); } |
---|
147 | else { ff = ff - LC(ff)*power(v,df); } |
---|
148 | ff = lu*ff - t; |
---|
149 | df = degree( ff, v ); |
---|
150 | } |
---|
151 | if ( reord ) |
---|
152 | { |
---|
153 | retvalue= swapvar( ff, vg, v ); |
---|
154 | } |
---|
155 | else |
---|
156 | { |
---|
157 | retvalue= ff; |
---|
158 | } |
---|
159 | return retvalue; |
---|
160 | } |
---|
161 | } |
---|
162 | |
---|
163 | static CanonicalForm |
---|
164 | Sprem ( const CanonicalForm &f, const CanonicalForm &g, CanonicalForm & m, CanonicalForm & q ) |
---|
165 | { |
---|
166 | CanonicalForm ff, gg, l, test, retvalue; |
---|
167 | int df, dg,n; |
---|
168 | bool reord; |
---|
169 | Variable vf, vg, v; |
---|
170 | |
---|
171 | if ( (vf = f.mvar()) < (vg = g.mvar()) ) |
---|
172 | { |
---|
173 | m=CanonicalForm(0); q=CanonicalForm(0); |
---|
174 | return f; |
---|
175 | } |
---|
176 | else |
---|
177 | { |
---|
178 | if ( vf == vg ) |
---|
179 | { |
---|
180 | ff = f; gg = g; |
---|
181 | reord = false; |
---|
182 | v = vg; // == x |
---|
183 | } |
---|
184 | else |
---|
185 | { |
---|
186 | v = Variable(level(f.mvar()) + 1); |
---|
187 | ff = swapvar(f,vg,v); // == r |
---|
188 | gg = swapvar(g,vg,v); // == v |
---|
189 | reord=true; |
---|
190 | } |
---|
191 | dg = degree( gg, v ); // == dv |
---|
192 | df = degree( ff, v ); // == dr |
---|
193 | if (dg <= df) {l=LC(gg); gg = gg -LC(gg)*power(v,dg);} |
---|
194 | else { l = 1; } |
---|
195 | n= 0; |
---|
196 | while ( ( dg <= df ) && ( !ff.isZero()) ) |
---|
197 | { |
---|
198 | test= power(v,df-dg) * gg * LC(ff); |
---|
199 | if ( df == 0 ){ff= ff.genZero();} |
---|
200 | else {ff= ff - LC(ff)*power(v,df);} |
---|
201 | ff = l*ff-test; |
---|
202 | df= degree(ff,v); |
---|
203 | n++; |
---|
204 | } |
---|
205 | if ( reord ) |
---|
206 | { |
---|
207 | retvalue= swapvar( ff, vg, v ); |
---|
208 | } |
---|
209 | else |
---|
210 | { |
---|
211 | retvalue= ff; |
---|
212 | } |
---|
213 | m= power(l,n); |
---|
214 | if ( fdivides(g,m*f-retvalue) ) |
---|
215 | q= (m*f-retvalue)/g; |
---|
216 | else |
---|
217 | q= CanonicalForm(0); |
---|
218 | return retvalue; |
---|
219 | } |
---|
220 | } |
---|
221 | |
---|
222 | CanonicalForm |
---|
223 | divide( const CanonicalForm & ff, const CanonicalForm & f, const CFList & as) |
---|
224 | { |
---|
225 | CanonicalForm r,m,q; |
---|
226 | |
---|
227 | //out_cf("divide f=",ff,"\n"); |
---|
228 | //out_cf("divide g=",f,"\n"); |
---|
229 | if (f.inCoeffDomain()) |
---|
230 | { |
---|
231 | bool b=!isOn(SW_RATIONAL); |
---|
232 | On(SW_RATIONAL); |
---|
233 | q=ff/f; |
---|
234 | if (b) Off(SW_RATIONAL); |
---|
235 | } |
---|
236 | else |
---|
237 | r= Sprem(ff,f,m,q); //result in q, ignore r,m |
---|
238 | //CERR << "r= " << r << " , m= " << m << " , q= " << q << "\n"; |
---|
239 | r= Prem(q,as); |
---|
240 | //CERR << "r= " << r << "\n"; |
---|
241 | //out_cf(" ->",r,"\n"); |
---|
242 | return r; |
---|
243 | } |
---|
244 | |
---|
245 | // This function allows as to be empty; in that case, it is equivalent |
---|
246 | // to the previous version (treating no variables as algebraic). |
---|
247 | static CanonicalForm |
---|
248 | myfitting( const CanonicalForm &f, const CFList &as ) |
---|
249 | { |
---|
250 | CanonicalForm rem=f; |
---|
251 | |
---|
252 | if ( !(rem.isZero()) ) |
---|
253 | { |
---|
254 | if ( getCharacteristic() > 0 ) |
---|
255 | return num((rem/lc(rem))); |
---|
256 | else |
---|
257 | { |
---|
258 | On(SW_RATIONAL); |
---|
259 | CanonicalForm temp= mapinto(rem); |
---|
260 | // CERR << "temp= " << temp << "\n"; |
---|
261 | // CERR << "lc(temp)= " << lc(temp) << "\n"; |
---|
262 | // CERR << "temp/lc(temp)= " << temp/lc(temp) << "\n"; |
---|
263 | // CERR << "num(rem/lc(rem))= " << num(rem/lc(rem)) << "\n"; |
---|
264 | |
---|
265 | // If as is of length 1, and its polynomial is level 1, then |
---|
266 | // we treat the first variable as algebraic and invert the leading |
---|
267 | // coefficient where this variable is part of the coefficient domain. |
---|
268 | |
---|
269 | if (as.length() == 1 && level(as.getFirst()) == 1) |
---|
270 | { |
---|
271 | CanonicalForm lcoeff = temp; |
---|
272 | while (level(lcoeff) > 1) |
---|
273 | { |
---|
274 | lcoeff = LC(lcoeff); |
---|
275 | } |
---|
276 | // out_cf("myfitting: lcoeff = ", lcoeff, "\n"); |
---|
277 | |
---|
278 | CanonicalForm p = as.getFirst(); |
---|
279 | // out_cf("myfitting: p = ", p, "\n"); |
---|
280 | |
---|
281 | CanonicalForm unused, inverse; |
---|
282 | |
---|
283 | extgcd(lcoeff, p, inverse, unused); |
---|
284 | // out_cf("myfitting: inverse = ", inverse, "\n"); |
---|
285 | |
---|
286 | // This may leave temp with non-integral coefficients, |
---|
287 | // which will be cleaned up below. |
---|
288 | temp = temp * inverse; |
---|
289 | // out_cf("myfitting: temp = ", temp, "\n"); |
---|
290 | } |
---|
291 | |
---|
292 | temp= bCommonDen(temp/lc(temp))*(temp/lc(temp)); |
---|
293 | Off(SW_RATIONAL); |
---|
294 | rem= mapinto(temp); |
---|
295 | return rem; |
---|
296 | } |
---|
297 | } |
---|
298 | else |
---|
299 | return rem; |
---|
300 | } |
---|
301 | |
---|
302 | CanonicalForm |
---|
303 | Prem( const CanonicalForm &f, const CFList &L ) |
---|
304 | { |
---|
305 | CanonicalForm rem = f; |
---|
306 | CFListIterator i = L; |
---|
307 | for ( i.lastItem(); i.hasItem(); i-- ) |
---|
308 | { |
---|
309 | //CERR << " PREM: Prem(" << rem << "," ; |
---|
310 | rem = Prem( rem, i.getItem() ); |
---|
311 | //CERR << " PREM: Prem(" << rem << "," << i.getItem() << ") = " << rem << "\n"; |
---|
312 | } |
---|
313 | return myfitting(rem, CFList()); |
---|
314 | } |
---|
315 | |
---|
316 | CanonicalForm |
---|
317 | Prem( const CanonicalForm &f, const CFList &L, const CFList &as ) |
---|
318 | { |
---|
319 | CanonicalForm rem = f; |
---|
320 | CFListIterator i = L; |
---|
321 | for ( i.lastItem(); i.hasItem(); i-- ) |
---|
322 | { |
---|
323 | //CERR << " PREM: Prem(" << rem << "," ; |
---|
324 | rem = Prem( rem, i.getItem() ); |
---|
325 | //CERR << " PREM: Prem(" << rem << "," << i.getItem() << ") = " << rem << "\n"; |
---|
326 | } |
---|
327 | return myfitting(rem, as); |
---|
328 | } |
---|
329 | |
---|
330 | CFList |
---|
331 | Prem( const CFList &AS, const CFList &L ) |
---|
332 | { |
---|
333 | CFList Output; |
---|
334 | |
---|
335 | for ( CFListIterator i=AS; i.hasItem(); i++ ) |
---|
336 | Output = Union(CFList(Prem(i.getItem(),L)), Output); |
---|
337 | |
---|
338 | return Output; |
---|
339 | } |
---|
340 | |
---|
341 | static CanonicalForm |
---|
342 | premasb( const CanonicalForm & f, const CFList & as) |
---|
343 | { |
---|
344 | CanonicalForm remd=f; |
---|
345 | CFList AS=as; |
---|
346 | |
---|
347 | if ( as.length() > 1 ) |
---|
348 | { |
---|
349 | AS.removeFirst(); // get rid of first elem |
---|
350 | CanonicalForm elem; |
---|
351 | while ( ! AS.isEmpty() ) |
---|
352 | { // thats true for at least the first iteration |
---|
353 | elem= AS.getLast(); |
---|
354 | remd= Prem(remd,elem); |
---|
355 | AS.removeLast(); |
---|
356 | } |
---|
357 | } |
---|
358 | CanonicalForm a,b; |
---|
359 | if ( mydivremt(remd, as.getFirst(), a,b )){ remd= remd.genZero();} |
---|
360 | else { remd= Prem(remd, as.getFirst()); } |
---|
361 | |
---|
362 | return remd; |
---|
363 | } |
---|
364 | |
---|
365 | CFList |
---|
366 | remsetb( const CFList & ps, const CFList & as) |
---|
367 | { |
---|
368 | CFList output; |
---|
369 | CanonicalForm elem; |
---|
370 | for (CFListIterator i=ps; i.hasItem(); i++) |
---|
371 | { |
---|
372 | elem= premasb(i.getItem(),as); |
---|
373 | if ( !elem.isZero() ) output.append(elem); |
---|
374 | } |
---|
375 | return output; |
---|
376 | } |
---|
377 | |
---|
378 | // for characteristic sets |
---|
379 | ////////////////////////////////// |
---|
380 | // replace the power of factors of polys in as by 1 if any |
---|
381 | static CFList |
---|
382 | nopower( const CanonicalForm & init ) |
---|
383 | { |
---|
384 | CFFList sqrfreelist;// = Factorize(init);//SqrFree(init); |
---|
385 | CFList output; |
---|
386 | CanonicalForm elem; |
---|
387 | int count=0; |
---|
388 | |
---|
389 | for ( CFIterator j=init; j.hasTerms(); j++ ) |
---|
390 | if (!(j.coeff().isOne()) ) count++; |
---|
391 | // if ( init != 1 ){ |
---|
392 | // CERR << "nopower: f is " << init << "\n"; |
---|
393 | // CERR << "nopower: count is " << count << "\n";} |
---|
394 | if ( count > 1 ) sqrfreelist = CFFList( CFFactor(init,1)); |
---|
395 | else |
---|
396 | { |
---|
397 | sqrfreelist = factorize(init); |
---|
398 | //sqrfreelist.removeFirst(); |
---|
399 | } |
---|
400 | for ( CFFListIterator i=sqrfreelist; i.hasItem(); i++ ) |
---|
401 | { |
---|
402 | elem=i.getItem().factor(); |
---|
403 | if ( cls(elem) > 0 ) output.append(elem); |
---|
404 | } |
---|
405 | return output; |
---|
406 | } |
---|
407 | |
---|
408 | // remove the content of polys in PS; add the removed content to |
---|
409 | // Remembern.FS2 ( the set of removed factors ) |
---|
410 | CFList |
---|
411 | removecontent ( const CFList & PS, PremForm & Remembern ) |
---|
412 | { |
---|
413 | CFListIterator i=PS; |
---|
414 | if ((!i.hasItem()) || ( cls(PS.getFirst()) == 0 )) return PS; |
---|
415 | |
---|
416 | CFList output; |
---|
417 | CanonicalForm cc,elem; |
---|
418 | |
---|
419 | for (; i.hasItem(); i++) |
---|
420 | { |
---|
421 | elem = i.getItem(); |
---|
422 | cc = content(elem, elem.mvar()); |
---|
423 | if ( cls(cc) > 0 ) |
---|
424 | { |
---|
425 | output.append(elem/cc); |
---|
426 | Remembern.FS2 = Union(CFList(cc), Remembern.FS2); |
---|
427 | } |
---|
428 | else{ output.append(elem); } |
---|
429 | } |
---|
430 | return output; |
---|
431 | } |
---|
432 | |
---|
433 | // remove possible factors in Remember.FS1 from poly r |
---|
434 | // Remember.FS2 contains all factors removed before |
---|
435 | void |
---|
436 | removefactor( CanonicalForm & r , PremForm & Remembern) |
---|
437 | { |
---|
438 | int test; |
---|
439 | CanonicalForm a,b,testelem; |
---|
440 | CFList testlist; |
---|
441 | int n=level(r); |
---|
442 | CFListIterator j ; |
---|
443 | |
---|
444 | for ( int J=1; J<= n ; J++ ) |
---|
445 | { |
---|
446 | testlist.append(CanonicalForm(Variable(J))); |
---|
447 | } |
---|
448 | |
---|
449 | // testlist = Union(Remembern.FS1, testlist); // add candidates |
---|
450 | |
---|
451 | // remove already removed factors |
---|
452 | for ( j = Remembern.FS2 ; j.hasItem(); j++ ) |
---|
453 | { |
---|
454 | testelem = j.getItem(); |
---|
455 | while ( 1 ) |
---|
456 | { |
---|
457 | test = mydivremt(r,testelem,a,b); |
---|
458 | if ( test && b.isZero() ) r = a; |
---|
459 | else break; |
---|
460 | } |
---|
461 | } |
---|
462 | |
---|
463 | // Let's look if we have other canditates to remove |
---|
464 | for ( j = testlist ; j.hasItem(); j++ ) |
---|
465 | { |
---|
466 | testelem = j.getItem(); |
---|
467 | // if ( testelem != r && testelem != r.mvar() ){ |
---|
468 | if ( testelem != r ) |
---|
469 | { |
---|
470 | while ( 1 ) |
---|
471 | { |
---|
472 | test = divremt(r,testelem,a,b); |
---|
473 | if ( test && b.isZero() ) |
---|
474 | { |
---|
475 | Remembern.FS2= Union(Remembern.FS2, CFList(testelem)); |
---|
476 | r = a; |
---|
477 | if ( r == 1 ) break; |
---|
478 | } |
---|
479 | else break; |
---|
480 | } |
---|
481 | } |
---|
482 | } |
---|
483 | // CERR << "Remembern.FS1 = " << Remembern.FS1 << "\n"; |
---|
484 | // CERR << "Remembern.FS2 = " << Remembern.FS2 << "\n"; |
---|
485 | // Remembern.FS1 = Difference(Remembern.FS1, Remembern.FS2); |
---|
486 | // CERR << " New Remembern.FS1 = " << Remembern.FS1 << "\n"; |
---|
487 | } |
---|
488 | |
---|
489 | |
---|
490 | // all irreducible nonconstant factors of a set of polynomials |
---|
491 | CFList |
---|
492 | factorps( const CFList &ps ) |
---|
493 | { |
---|
494 | CFList qs; |
---|
495 | CFFList q; |
---|
496 | CanonicalForm elem; |
---|
497 | |
---|
498 | for ( CFListIterator i=ps; i. hasItem(); i++ ) |
---|
499 | { |
---|
500 | q=factorize(i.getItem()); |
---|
501 | q.removeFirst(); |
---|
502 | // Next can be simplified ( first (already removed) elem in q is the only constant |
---|
503 | for ( CFFListIterator j=q; j.hasItem(); j++ ) |
---|
504 | { |
---|
505 | elem = j.getItem().factor(); |
---|
506 | if ( getNumVars(elem) > 0 ) |
---|
507 | qs= Union(qs, CFList(myfitting(elem, CFList()))); |
---|
508 | } |
---|
509 | } |
---|
510 | return qs; |
---|
511 | } |
---|
512 | |
---|
513 | // the initial of poly f wrt to the order of the variables |
---|
514 | static CanonicalForm |
---|
515 | inital( const CanonicalForm &f ) |
---|
516 | { |
---|
517 | CanonicalForm leadcoeff; |
---|
518 | |
---|
519 | if ( cls(f) == 0 ) {return f.genOne(); } |
---|
520 | else |
---|
521 | { |
---|
522 | leadcoeff = LC(f,lvar(f)); |
---|
523 | // if ( leadcoeff != 0 ) |
---|
524 | return myfitting(leadcoeff, CFList()); //num(leadcoeff/lc(leadcoeff)); |
---|
525 | // else return leadcoeff; |
---|
526 | } |
---|
527 | } |
---|
528 | |
---|
529 | // the set of all nonconstant factors of initals of polys in as |
---|
530 | // CFList |
---|
531 | // initalset(const CFList &as){ |
---|
532 | // CanonicalForm elem; |
---|
533 | // CFList is, iss,iniset; |
---|
534 | |
---|
535 | // for ( CFListIterator i=as ; i.hasItem(); i++ ){ |
---|
536 | // elem = inital(i.getItem()); |
---|
537 | // if ( cls(elem) > 0 ) is.append(elem); |
---|
538 | // } |
---|
539 | // iss = factorps(is); |
---|
540 | // for ( CFListIterator j=iss; j.hasItem();j++ ){ |
---|
541 | // elem = j.getItem(); |
---|
542 | // if ( cls(elem) > 0 ) iniset.append(num(elem/lc(elem))); |
---|
543 | // } |
---|
544 | // return iniset; |
---|
545 | // } |
---|
546 | |
---|
547 | // the set of nonconstant initials of Cset |
---|
548 | // with certain repeated factors cancelled |
---|
549 | CFList |
---|
550 | initalset1(const CFList & Cset) |
---|
551 | { |
---|
552 | CFList temp; |
---|
553 | CFList initals; |
---|
554 | CanonicalForm init; |
---|
555 | |
---|
556 | for ( CFListIterator i = Cset ; i.hasItem(); i++ ) |
---|
557 | { |
---|
558 | initals= nopower( inital(i.getItem()) ); |
---|
559 | // init= inital(i.getItem()); |
---|
560 | for ( CFListIterator j = initals; j.hasItem(); j++) |
---|
561 | { |
---|
562 | init = j.getItem(); |
---|
563 | if ( cls(init) > 0 ) |
---|
564 | temp= Union(temp, CFList(init)); |
---|
565 | } |
---|
566 | } |
---|
567 | return temp; |
---|
568 | } |
---|
569 | |
---|
570 | // the set of nonconstant initials of Cset of those polys |
---|
571 | // not having their cls higher than reducible |
---|
572 | // with certain repeated factors cancelled |
---|
573 | CFList |
---|
574 | initalset2(const CFList & Cset, const CanonicalForm & reducible) |
---|
575 | { |
---|
576 | CFList temp; |
---|
577 | CFList initals; |
---|
578 | CanonicalForm init; |
---|
579 | int clsred = cls(reducible); |
---|
580 | |
---|
581 | for ( CFListIterator i = Cset ; i.hasItem(); i++ ) |
---|
582 | { |
---|
583 | init = i.getItem(); |
---|
584 | if ( cls(init) < clsred ) |
---|
585 | { |
---|
586 | initals= nopower( inital(init) ); |
---|
587 | // init= inital(i.getItem()); |
---|
588 | for ( CFListIterator j = initals; j.hasItem(); j++) |
---|
589 | { |
---|
590 | init = j.getItem(); |
---|
591 | if ( cls(init) > 0 ) |
---|
592 | temp= Union(temp, CFList(init)); |
---|
593 | } |
---|
594 | } |
---|
595 | } |
---|
596 | return temp; |
---|
597 | } |
---|
598 | |
---|
599 | //replace the power of factors of poly in CF init by 1 if any |
---|
600 | // and return the sqrfree poly |
---|
601 | // static CanonicalForm |
---|
602 | // nopower1( const CanonicalForm & init ){ |
---|
603 | // CFFList returnlist=Factorize(init); |
---|
604 | // CanonicalForm elem, test=init.genOne(); |
---|
605 | // for ( CFFListIterator i= returnlist; i.hasItem(); i++){ |
---|
606 | // elem = i.getItem().factor(); |
---|
607 | // if ( cls(elem)>0 ) test *= elem; |
---|
608 | // } |
---|
609 | // return test; |
---|
610 | // } |
---|
611 | |
---|
612 | // the sequence of distinct factors of f |
---|
613 | //CF pfactor( ..... ) |
---|
614 | |
---|
615 | // ////////////////////////////////////////// |
---|
616 | // // for IrrCharSeries |
---|
617 | |
---|
618 | #ifdef IRRCHARSERIESDEBUG |
---|
619 | # define DEBUGOUTPUT |
---|
620 | #else |
---|
621 | # undef DEBUGOUTPUT |
---|
622 | #endif |
---|
623 | #include "debug.h" |
---|
624 | // examine the irreducibility of as for IrrCharSeries |
---|
625 | int |
---|
626 | irreducible( const CFList & AS) |
---|
627 | { |
---|
628 | // AS is given by AS = { A1, A2, .. Ar }, d_i = degree(Ai) |
---|
629 | |
---|
630 | // 1) we test: if d_i > 1, d_j =1 for all j<>i, then AS is irreducible. |
---|
631 | bool deg1=true; |
---|
632 | for ( CFListIterator i = AS ; i.hasItem(); i++ ) |
---|
633 | { |
---|
634 | if ( degree(i.getItem()) > 1 ) |
---|
635 | { |
---|
636 | if ( deg1 ) deg1=0; |
---|
637 | else return 0; // found 2nd poly with deg > 1 |
---|
638 | } |
---|
639 | } |
---|
640 | return 1; |
---|
641 | } |
---|
642 | |
---|
643 | |
---|
644 | // select an item from PS for irras |
---|
645 | CFList |
---|
646 | select( const ListCFList & PS) |
---|
647 | { |
---|
648 | return PS.getFirst(); |
---|
649 | } |
---|
650 | |
---|
651 | // divide list ppi in elems having length <= and > length |
---|
652 | void |
---|
653 | select( const ListCFList & ppi, int length, ListCFList & ppi1, ListCFList & ppi2) |
---|
654 | { |
---|
655 | CFList elem; |
---|
656 | for ( ListCFListIterator i=ppi ; i.hasItem(); i++ ) |
---|
657 | { |
---|
658 | elem = i.getItem(); |
---|
659 | if ( ! elem.isEmpty() ) |
---|
660 | if ( length <= elem.length() ){ ppi2.append(elem); } |
---|
661 | else { ppi1.append(elem); } |
---|
662 | } |
---|
663 | } |
---|
664 | |
---|
665 | |
---|
666 | ////////////////////////////////////////////////////////////// |
---|
667 | // help-functions for sets |
---|
668 | |
---|
669 | // is f in F ? |
---|
670 | static bool |
---|
671 | member( const CanonicalForm &f, const CFList &F) |
---|
672 | { |
---|
673 | for ( CFListIterator i=F; i.hasItem(); i++ ) |
---|
674 | if ( i.getItem() == f ) return 1; |
---|
675 | return 0; |
---|
676 | } |
---|
677 | |
---|
678 | // are list A and B the same? |
---|
679 | bool |
---|
680 | same( const CFList &A, const CFList &B ) |
---|
681 | { |
---|
682 | CFListIterator i; |
---|
683 | |
---|
684 | for (i = A; i.hasItem(); i++) |
---|
685 | if (! member(i.getItem(), B) ) return 0; |
---|
686 | for (i = B; i.hasItem(); i++) |
---|
687 | if (! member(i.getItem(), A) ) return 0; |
---|
688 | return 1; |
---|
689 | } |
---|
690 | |
---|
691 | |
---|
692 | // is List cs contained in List of lists pi? |
---|
693 | bool |
---|
694 | member( const CFList & cs, const ListCFList & pi ) |
---|
695 | { |
---|
696 | ListCFListIterator i; |
---|
697 | CFList elem; |
---|
698 | |
---|
699 | for ( i=pi; i.hasItem(); i++) |
---|
700 | { |
---|
701 | elem = i.getItem(); |
---|
702 | if ( same(cs,elem) ) return 1; |
---|
703 | } |
---|
704 | return 0; |
---|
705 | } |
---|
706 | |
---|
707 | // is PS a subset of Cset ? |
---|
708 | bool |
---|
709 | subset( const CFList &PS, const CFList &Cset ) |
---|
710 | { |
---|
711 | // CERR << "subset: called with: " << PS << " " << Cset << "\n"; |
---|
712 | for ( CFListIterator i=PS; i.hasItem(); i++ ) |
---|
713 | if ( ! member(i.getItem(), Cset) ) |
---|
714 | { |
---|
715 | // CERR << "subset: " << i.getItem() << " is not a member of " << Cset << "\n"; |
---|
716 | return 0; |
---|
717 | } |
---|
718 | return 1; |
---|
719 | } |
---|
720 | |
---|
721 | // Union of two List of Lists |
---|
722 | ListCFList |
---|
723 | MyUnion( const ListCFList & a, const ListCFList &b ) |
---|
724 | { |
---|
725 | ListCFList output; |
---|
726 | ListCFListIterator i; |
---|
727 | CFList elem; |
---|
728 | |
---|
729 | for ( i = a ; i.hasItem(); i++ ) |
---|
730 | { |
---|
731 | elem=i.getItem(); |
---|
732 | if ( (! elem.isEmpty()) && ( ! member(elem,output)) ) |
---|
733 | { |
---|
734 | output.append(elem); |
---|
735 | } |
---|
736 | } |
---|
737 | |
---|
738 | for ( i = b ; i.hasItem(); i++ ) |
---|
739 | { |
---|
740 | elem=i.getItem(); |
---|
741 | if ( (! elem.isEmpty()) && ( ! member(elem,output)) ) |
---|
742 | { |
---|
743 | output.append(elem); |
---|
744 | } |
---|
745 | } |
---|
746 | return output; |
---|
747 | } |
---|
748 | |
---|
749 | //if list b is member of the list of lists remove b and return the rest |
---|
750 | ListCFList |
---|
751 | MyDifference( const ListCFList & a, const CFList &b) |
---|
752 | { |
---|
753 | ListCFList output; |
---|
754 | ListCFListIterator i; |
---|
755 | CFList elem; |
---|
756 | |
---|
757 | for ( i = a ; i.hasItem(); i++ ) |
---|
758 | { |
---|
759 | elem=i.getItem(); |
---|
760 | if ( (! elem.isEmpty()) && ( ! same(elem,b)) ) |
---|
761 | { |
---|
762 | output.append(elem); |
---|
763 | } |
---|
764 | } |
---|
765 | return output; |
---|
766 | } |
---|
767 | |
---|
768 | // remove all elements of b from list of lists a and return the rest |
---|
769 | ListCFList |
---|
770 | Minus( const ListCFList & a, const ListCFList & b) |
---|
771 | { |
---|
772 | ListCFList output=a; |
---|
773 | |
---|
774 | for ( ListCFListIterator i=b; i.hasItem(); i++ ) |
---|
775 | output = MyDifference(output, i.getItem() ); |
---|
776 | |
---|
777 | return output; |
---|
778 | } |
---|
779 | |
---|
780 | #if 0 |
---|
781 | static CanonicalForm alg_lc(const CanonicalForm &f, const CFList as) |
---|
782 | { |
---|
783 | for(CFListIterator i=as; i.hasItem(); i++) |
---|
784 | { |
---|
785 | if (f.mvar()==i.getItem().mvar()) return f; |
---|
786 | } |
---|
787 | if (f.level()>0) |
---|
788 | { |
---|
789 | return alg_lc(f.LC(),as); |
---|
790 | } |
---|
791 | return CanonicalForm(1); |
---|
792 | } |
---|
793 | #endif |
---|
794 | |
---|
795 | CanonicalForm alg_gcd(const CanonicalForm & fff, const CanonicalForm &ggg, |
---|
796 | const CFList &as) |
---|
797 | { |
---|
798 | CanonicalForm f=fff; |
---|
799 | CanonicalForm g=ggg; |
---|
800 | f=Prem(f,as); |
---|
801 | g=Prem(g,as); |
---|
802 | if ( f.isZero() ) |
---|
803 | { |
---|
804 | if ( g.lc().sign() < 0 ) return -g; |
---|
805 | else return g; |
---|
806 | } |
---|
807 | else if ( g.isZero() ) |
---|
808 | { |
---|
809 | if ( f.lc().sign() < 0 ) return -f; |
---|
810 | else return f; |
---|
811 | } |
---|
812 | //out_cf("alg_gcd(",fff," , "); |
---|
813 | //out_cf("",ggg,")\n"); |
---|
814 | CanonicalForm res; |
---|
815 | // does as appear in f and g ? |
---|
816 | bool has_alg_var=false; |
---|
817 | for ( CFListIterator j=as;j.hasItem(); j++ ) |
---|
818 | { |
---|
819 | Variable v=j.getItem().mvar(); |
---|
820 | if (hasVar(f,v)) {has_alg_var=true; /*break;*/} |
---|
821 | if (hasVar(g,v)) {has_alg_var=true; /*break;*/} |
---|
822 | //out_cf("as:",j.getItem(),"\n"); |
---|
823 | } |
---|
824 | if (!has_alg_var) |
---|
825 | { |
---|
826 | if ((hasAlgVar(f)) |
---|
827 | || (hasAlgVar(g))) |
---|
828 | { |
---|
829 | Varlist ord; |
---|
830 | for ( CFListIterator j=as;j.hasItem(); j++ ) |
---|
831 | ord.append(j.getItem().mvar()); |
---|
832 | res=algcd(f,g,as,ord); |
---|
833 | } |
---|
834 | else |
---|
835 | res=gcd(f,g); |
---|
836 | //out_cf("gcd=",res,"\n"); |
---|
837 | //out_cf("of f=",fff," , "); |
---|
838 | //out_cf("and g=",ggg,"\n"); |
---|
839 | |
---|
840 | return res; |
---|
841 | } |
---|
842 | |
---|
843 | int mvf=f.level(); |
---|
844 | int mvg=g.level(); |
---|
845 | if (mvg > mvf) |
---|
846 | { |
---|
847 | CanonicalForm tmp=f; f=g; g=tmp; |
---|
848 | int tmp2=mvf; mvf=mvg; mvg=tmp2; |
---|
849 | } |
---|
850 | if (g.inBaseDomain() || f.inBaseDomain()) |
---|
851 | { |
---|
852 | //printf("const\n"); |
---|
853 | //out_cf("of f=",fff," , "); |
---|
854 | //out_cf("and g=",ggg,"\n"); |
---|
855 | return CanonicalForm(1); |
---|
856 | } |
---|
857 | |
---|
858 | // gcd of all coefficients: |
---|
859 | CFIterator i=f; |
---|
860 | CanonicalForm c_gcd=i.coeff(); i++; |
---|
861 | while( i.hasTerms()) |
---|
862 | { |
---|
863 | c_gcd=alg_gcd(i.coeff(),c_gcd,as); |
---|
864 | if (c_gcd.inBaseDomain()) break; |
---|
865 | i++; |
---|
866 | } |
---|
867 | //printf("f.mvar=%d (%d), g.mvar=%d (%d)\n",f.level(),mvf,g.level(),mvg); |
---|
868 | if (mvf!=mvg) // => mvf > mvg |
---|
869 | { |
---|
870 | res=alg_gcd(g,c_gcd,as); |
---|
871 | //out_cf("alg_gcd1=",res,"\n"); |
---|
872 | //out_cf("of f=",fff," , "); |
---|
873 | //out_cf("and g=",ggg,"\n"); |
---|
874 | return res; |
---|
875 | } |
---|
876 | // now: mvf==mvg, f.level()==g.level() |
---|
877 | if (!c_gcd.inBaseDomain()) |
---|
878 | { |
---|
879 | i=g; |
---|
880 | while( i.hasTerms()) |
---|
881 | { |
---|
882 | c_gcd=alg_gcd(i.coeff(),c_gcd,as); |
---|
883 | if (c_gcd.inBaseDomain()) break; |
---|
884 | i++; |
---|
885 | } |
---|
886 | } |
---|
887 | |
---|
888 | //f/=c_gcd; |
---|
889 | //g/=c_gcd; |
---|
890 | if (!c_gcd.isOne()) |
---|
891 | { |
---|
892 | f=divide(f,c_gcd,as); |
---|
893 | g=divide(g,c_gcd,as); |
---|
894 | } |
---|
895 | |
---|
896 | CFList gg; |
---|
897 | CanonicalForm r=1; |
---|
898 | while (1) |
---|
899 | { |
---|
900 | //printf("f.mvar=%d, g.mvar=%d\n",f.level(),g.level()); |
---|
901 | gg=as; |
---|
902 | if (!g.inCoeffDomain()) gg.append(g); |
---|
903 | //out_cf("Prem(",f," , "); |
---|
904 | //out_cf("",g,")\n"); |
---|
905 | if (g.inCoeffDomain()|| g.isZero()) |
---|
906 | { |
---|
907 | //printf("in coeff domain:"); |
---|
908 | if (g.isZero()) { //printf("0\n"); |
---|
909 | i=f; |
---|
910 | CanonicalForm f_gcd=i.coeff(); i++; |
---|
911 | while( i.hasTerms()) |
---|
912 | { |
---|
913 | f_gcd=alg_gcd(i.coeff(),f_gcd,as); |
---|
914 | if (f_gcd.inBaseDomain()) break; |
---|
915 | i++; |
---|
916 | } |
---|
917 | //out_cf("g=0 -> f:",f,"\n"); |
---|
918 | //out_cf("f_gcd:",f_gcd,"\n"); |
---|
919 | //out_cf("c_gcd:",c_gcd,"\n"); |
---|
920 | //f/=f_gcd; |
---|
921 | f=divide(f,f_gcd,as); |
---|
922 | //out_cf("f/f_gcd:",f,"\n"); |
---|
923 | f*=c_gcd; |
---|
924 | //out_cf("f*c_gcd:",f,"\n"); |
---|
925 | CanonicalForm r_lc=alg_lc(f); |
---|
926 | //out_cf("r_lc:",r_lc,"\n"); |
---|
927 | //f/=r_lc; |
---|
928 | f=divide(f,r_lc,as); |
---|
929 | //out_cf(" -> gcd:",f,"\n"); |
---|
930 | return f; |
---|
931 | } |
---|
932 | else { //printf("c\n"); |
---|
933 | return c_gcd;} |
---|
934 | } |
---|
935 | else if (g.level()==f.level()) r=Prem(f,gg,as); |
---|
936 | else |
---|
937 | { |
---|
938 | //printf("diff. level: %d, %d\n", f.level(), g.level()); |
---|
939 | // g and f have different levels |
---|
940 | //out_cf("c_gcd=",c_gcd,"\n"); |
---|
941 | //out_cf("of f=",fff," , "); |
---|
942 | //out_cf("and g=",ggg,"\n"); |
---|
943 | return c_gcd; |
---|
944 | } |
---|
945 | //out_cf("->",r,"\n"); |
---|
946 | f=g; |
---|
947 | g=r; |
---|
948 | } |
---|
949 | if (degree(f,Variable(mvg))==0) |
---|
950 | { |
---|
951 | // remark: mvf == mvg == f.level() ==g.level() |
---|
952 | //out_cf("c_gcd=",c_gcd,"\n"); |
---|
953 | //out_cf("of f=",fff," , "); |
---|
954 | //out_cf("and g=",ggg,"\n"); |
---|
955 | return c_gcd; |
---|
956 | } |
---|
957 | //out_cf("f=",f,"\n"); |
---|
958 | i=f; |
---|
959 | CanonicalForm k=i.coeff(); i++; |
---|
960 | //out_cf("k=",k,"\n"); |
---|
961 | while( i.hasTerms()) |
---|
962 | { |
---|
963 | if (k.inCoeffDomain()) break; |
---|
964 | k=alg_gcd(i.coeff(),k,as); |
---|
965 | //out_cf("k=",k,"\n"); |
---|
966 | i++; |
---|
967 | } |
---|
968 | //out_cf("end-k=",k,"\n"); |
---|
969 | f/=k; |
---|
970 | //out_cf("f/k=",f,"\n"); |
---|
971 | res=c_gcd*f; |
---|
972 | CanonicalForm r_lc=alg_lc(res); |
---|
973 | res/=r_lc; |
---|
974 | //CanonicalForm r_lc=alg_lc(res,as); |
---|
975 | //res/=r_lc; |
---|
976 | //out_cf("alg_gcd2=",res,"\n"); |
---|
977 | // out_cf("of f=",fff," , "); |
---|
978 | // out_cf("and g=",ggg,"\n"); |
---|
979 | //return res; |
---|
980 | //if (res.level()<fff.level() && res.level() < ggg.level()) |
---|
981 | // return alg_gcd(alg_gcd(fff,res,as),ggg,as); |
---|
982 | //else |
---|
983 | return res; |
---|
984 | } |
---|