Changeset 2b87ac9 in git
- Timestamp:
- Jan 15, 2009, 11:33:24 AM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 81733986448f9a0d2629201f6509a9ea8f70fb38
- Parents:
- 2f2bb21b64b1321056a44c8c3cd372675d55ea9b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.cc
r2f2bb21 r2b87ac9 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys.cc,v 1.3 4 2008-07-25 14:37:55Singular Exp $ */4 /* $Id: polys.cc,v 1.35 2009-01-15 10:33:24 Singular Exp $ */ 5 5 6 6 /* … … 465 465 466 466 if (q==NULL) return NULL; 467 BOOLEAN use_setmcomp=rOrd_SetCompRequiresSetm(currRing); 467 468 if (pGetComp(q)==k) 468 469 { … … 471 472 { 472 473 pSetComp(q,0); 473 pSetmComp(q);474 if (use_setmcomp) pSetmComp(q); 474 475 qq = q; 475 476 pIter(q); … … 483 484 { 484 485 pDecrComp(q); 485 pSetmComp(q);486 if (use_setmcomp) pSetmComp(q); 486 487 } 487 488 poly pNext_q; … … 503 504 pNext(qq) =NULL; 504 505 pSetComp(qq,0); 505 pSetmComp(qq);506 if (use_setmcomp) pSetmComp(qq); 506 507 } 507 508 else … … 511 512 { 512 513 pDecrComp(q); 513 pSetmComp(q);514 if (use_setmcomp) pSetmComp(q); 514 515 } 515 516 }
Note: See TracChangeset
for help on using the changeset viewer.