| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/math/gfan/files/ |
Upload File : |
--- src/padic.cpp.orig 2017-06-20 14:47:37 UTC
+++ src/padic.cpp
@@ -406,14 +406,14 @@ void pAdicBuchberger(PolynomialSet &g, int prime, Inte
for(PolynomialSet::const_iterator i=g.begin();i!=g.end();i++)
for(PolynomialSet::const_iterator j=g.begin();j!=i;j++)
{
-log2 debug<<"checking s poly\n"<<*i<<"("<<ST(*i,prime,omega,tieBreaker)<<")"<<"\n"<<*j<<"("<<ST(*j,prime,omega,tieBreaker)<<")"<<"\n";
+gfan_log2 debug<<"checking s poly\n"<<*i<<"("<<ST(*i,prime,omega,tieBreaker)<<")"<<"\n"<<*j<<"("<<ST(*j,prime,omega,tieBreaker)<<")"<<"\n";
Polynomial f=SPolynomial(*i,*j,prime,omega,tieBreaker);
// debug<<"S="<<f<<"\n";
// Enable the relatively prime criterion by uncommenting this following:
#if 1
if(relativelyPrime(ST(*i,prime,omega,tieBreaker).m.exponent,ST(*j,prime,omega,tieBreaker).m.exponent))
{
-log2 debug<<"SKIPPING\n";
+gfan_log2 debug<<"SKIPPING\n";
}
else
#endif
@@ -424,7 +424,7 @@ log2 debug<<"SKIPPING\n";
f=longDivision(f,g,prime,omega,tieBreaker,H,u);
if(!f.isZero())
{
-log2 debug<<"Adding:"<<f<<"\n";
+gfan_log2 debug<<"Adding:"<<f<<"\n";
g.push_back(f);
}
}