@@ -435,8 +435,6 @@ diophantineHensel (const CanonicalForm & F, const CFList& factors,
435435 k.getItem () += g.mapinto ()*modulus;
436436 e -= mulNTL (g.mapinto ()*modulus, l.getItem (), b);
437437 e= b (e);
438- DEBOUTLN (cerr, " mod (e, power (y, i + 1))= " <<
439- mod (e, power (y, i + 1 )));
440438 }
441439 }
442440 modulus *= p;
@@ -633,8 +631,6 @@ diophantineHenselQa (const CanonicalForm & F, const CanonicalForm& G,
633631 e -= mulNTL (g.mapinto ()*modulus, l.getItem (), b);
634632 }
635633 e= b (e);
636- DEBOUTLN (cerr, " mod (e, power (y, i + 1))= " <<
637- mod (e, power (y, i + 1 )));
638634 }
639635 }
640636 modulus *= p;
@@ -1198,7 +1194,7 @@ multiRecDiophantine (const CanonicalForm& F, const CFList& factors,
11981194 j= p;
11991195 for (CFListIterator i= result; i.hasItem (); i++, j++)
12001196 test += mod (i.getItem ()*j.getItem (), power (y, d));
1201- DEBOUTLN (cerr, " test= " << test);
1197+ DEBOUTLN (cerr, " test in multiRecDiophantine = " << test);
12021198#endif
12031199 return result;
12041200}
@@ -1228,7 +1224,7 @@ henselStep (const CanonicalForm& F, const CFList& factors, CFArray& bufFactors,
12281224 CanonicalForm test2= mod (F-test, xToJ);
12291225
12301226 test2= mod (test2, MOD);
1231- DEBOUTLN (cerr, " test= " << test2);
1227+ DEBOUTLN (cerr, " test in henselStep = " << test2);
12321228#endif
12331229 }
12341230 else
@@ -1245,7 +1241,7 @@ henselStep (const CanonicalForm& F, const CFList& factors, CFArray& bufFactors,
12451241 test= mod (test, power (x, j));
12461242 test= mod (test, MOD);
12471243 CanonicalForm test2= mod (F, power (x, j - 1 )) - mod (test, power (x, j-1 ));
1248- DEBOUTLN (cerr, " test= " << test2);
1244+ DEBOUTLN (cerr, " test in henselStep = " << test2);
12491245#endif
12501246
12511247 if (degree (Pi [factors.length () - 2 ], x) > 0 )
@@ -1980,7 +1976,7 @@ nonMonicHenselStep (const CanonicalForm& F, const CFList& factors,
19801976 test= mod (test, power (x, j));
19811977 test= mod (test, MOD);
19821978 CanonicalForm test2= mod (F, power (x, j - 1 )) - mod (test, power (x, j-1 ));
1983- DEBOUTLN (cerr, " test= " << test2);
1979+ DEBOUTLN (cerr, " test in nonMonicHenselStep = " << test2);
19841980#endif
19851981
19861982 if (degree (Pi [factors.length () - 2 ], x) > 0 )
0 commit comments