Changeset 883ea0b in git
- Timestamp:
- Jun 25, 2010, 4:33:08 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 8870729ee18e8dd1840de7c1b4c2714167248b11
- Parents:
- cedebce21b0dc12678683874874cce5b35d8c23d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFqFactorize.cc
rcedebc r883ea0b 505 505 506 506 int factorNums= 5; 507 if (factorNums < (int) ceil (log (totaldegree (A))))508 factorNums= (int) ceil (log (totaldegree (A)));507 if (factorNums < (int) ilog2 (totaldegree (A))) 508 factorNums= (int) ilog2 (totaldegree (A)); 509 509 for (int i= 0; i < factorNums; i++) 510 510 { … … 1774 1774 CanonicalForm evalPoly; 1775 1775 int lift, bufLift; 1776 if (factorNums < (int) ceil (log (totaldegree (A))))1777 factorNums= (int) ceil (log (totaldegree (A)));1776 if (factorNums < (int) ilog2 (totaldegree (A))) 1777 factorNums= (int) ilog2 (totaldegree (A)); 1778 1778 // several bivariate factorizations 1779 1779 for (int i= 0; i < factorNums; i++)
Note: See TracChangeset
for help on using the changeset viewer.