Changeset 9e26458 in git
- Timestamp:
- Feb 29, 2012, 7:12:06 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- fc27468621ec9097867dc720d52d6c16471de8d3
- Parents:
- daaa28acdf47b75683f8dc1e94ecd45b15550c36
- git-author:
- Martin Lee <martinlee84@web.de>2012-02-29 19:12:06+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-05 16:52:12+01:00
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
rdaaa28 r9e26458 5141 5141 // module is 0 ---> integers ringtype = 4; 5142 5142 // we have an exponent 5143 if (modExponent > 1 )5143 if (modExponent > 1 && cf == NULL) 5144 5144 { 5145 5145 if ((mpz_cmp_ui(modBase, 2) == 0) && (modExponent <= 8*sizeof(NATNUMBER))) … … 5157 5157 } 5158 5158 // just a module m > 1 5159 else 5159 else if (cf == NULL) 5160 5160 { 5161 5161 ringtype = 2; -
libpolys/polys/monomials/p_polys.cc
rdaaa28 r9e26458 3549 3549 n_Normalize(n, dst->cf); 3550 3550 3551 p_GetCoeff(qq, dst) = n; 3552 // coef may be zero: 3553 p_Test(qq, dst);3551 p_GetCoeff(qq, dst) = n;// Note: n can be a ZERO!!! 3552 // coef may be zero: 3553 // p_Test(qq, dst); 3554 3554 } 3555 3555 else
Note: See TracChangeset
for help on using the changeset viewer.