Changeset ce41efa in git
- Timestamp:
- Jan 22, 2013, 3:47:31 PM (10 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- b770bfdbb226b2a3128f6e2799e672f60ee9be55
- Parents:
- a60b8bed450e0ed0680beff9febf2b8c0daf5140
- git-author:
- Martin Lee <martinlee84@web.de>2013-01-22 15:47:31+01:00
- git-committer:
- Martin Lee <martinlee84@web.de>2013-02-18 15:13:02+01:00
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gcd_smallp.cc
ra60b8b rce41efa 4381 4381 4382 4382 CFList evaluation; 4383 long termEstimate= size (U); 4383 4384 for (int i= A.min(); i <= A.max(); i++) 4385 { 4386 if (!A[i].isZero()) 4387 { 4388 termEstimate *= degree (U,i)*2; 4389 termEstimate /= 3; 4390 } 4384 4391 evaluation.append (A [i]); 4392 } 4393 if (termEstimate/getNumVars(U) > 500) 4394 return -1; 4385 4395 CFList UEval; 4386 4396 CanonicalForm shiftedU= myShift2Zero (U, UEval, evaluation); -
factory/fac_ezgcd.cc
ra60b8b rce41efa 296 296 297 297 CFList evaluation; 298 long termEstimate= size (U); 298 299 for (int i= A.min(); i <= A.max(); i++) 300 { 301 if (!A[i].isZero()) 302 { 303 termEstimate *= degree (U,i)*2; 304 termEstimate /= 3; 305 } 299 306 evaluation.append (A [i]); 307 } 308 if (termEstimate/getNumVars(U) > 500) 309 return -1; 300 310 CFList UEval; 301 311 CanonicalForm shiftedU= myShift2Zero (U, UEval, evaluation); … … 425 435 int degF, degG, delta, t, count, maxeval; 426 436 REvaluation bt; 427 bool gcdfound = false;437 int gcdfound = 0; 428 438 Variable x = Variable(1); 429 439 count= 0;
Note: See TracChangeset
for help on using the changeset viewer.