Changeset 09723d in git
- Timestamp:
- Sep 21, 2011, 11:12:10 AM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 7d24a2e881df0cf42900979491d6c617a9c71141
- Parents:
- 327efa20e70d58adf952cceee8f24ae2a24079c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFqFactorize.cc
r327efa2 r09723d 1972 1972 { 1973 1973 CFList result; 1974 CanonicalForm tmp; 1974 CanonicalForm tmp, tmp2; 1975 CanonicalForm G= F; 1975 1976 for (CFListIterator i= factors; i.hasItem(); i++) 1976 1977 { 1977 tmp= i.getItem() / content (i.getItem(), 1); 1978 if (fdivides (tmp, F)) 1978 tmp= i.getItem()/content (i.getItem(), 1); 1979 if (fdivides (tmp, G, tmp2)) 1980 { 1981 G= tmp2; 1979 1982 result.append (tmp); 1983 } 1980 1984 } 1981 1985 return result;
Note: See TracChangeset
for help on using the changeset viewer.