Changeset a539ad in git for kernel/kstd1.cc
- Timestamp:
- Feb 6, 2008, 10:12:47 AM (16 years ago)
- Branches:
- (u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
- Children:
- 8f2bd1fc11ce18b5be7a734f75309011e212a4d3
- Parents:
- 4dcfc0f02d5040e014133baff89ccfc1bbc383ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstd1.cc
r4dcfc0f ra539ad 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd1.cc,v 1.3 0 2007-11-09 11:31:52 SingularExp $ */4 /* $Id: kstd1.cc,v 1.31 2008-02-06 09:12:46 wienand Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 748 748 if (pNext(strat->L[j].p) == strat->tail) 749 749 { 750 pLmFree(strat->L[j].p); /*deletes the short spoly and computes*/ 750 #ifdef HAVE_RINGS 751 if (rField_is_Ring(currRing)) 752 pLmDelete(strat->L[j].p); /*deletes the short spoly and computes*/ 753 else 754 #else 755 pLmFree(strat->L[j].p); /*deletes the short spoly and computes*/ 756 #endif 751 757 strat->L[j].p = NULL; 752 758 poly m1 = NULL, m2 = NULL;
Note: See TracChangeset
for help on using the changeset viewer.