Changeset f5d749 in git for Singular/p_kBucketSetLm__Template.cc
- Timestamp:
- Dec 5, 2000, 2:01:11 PM (23 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e6243c52793c81123253d462d4029d506b6c7456
- Parents:
- 9f9b9a1a665602bf82b5e271e8cc596d26f25203
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/p_kBucketSetLm__Template.cc
r9f9b9a1 rf5d749 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: p_kBucketSetLm__Template.cc,v 1. 1 2000-11-28 11:50:56obachman Exp $9 * Version: $Id: p_kBucketSetLm__Template.cc,v 1.2 2000-12-05 13:01:11 obachman Exp $ 10 10 *******************************************************************/ 11 11 … … 29 29 { 30 30 p = bucket->buckets[j]; 31 if (j == 0) goto Greater; 31 if (j == 0) 32 { 33 if (p != NULL) goto Greater; 34 j = i; 35 goto Continue; 36 } 37 assume(p != NULL); 32 38 p_MemCmp(bucket->buckets[i]->exp, p->exp, length, ordsgn, goto Equal, goto Greater, goto Continue); 33 39 34 40 Greater: 35 41 { 36 if ( j > 0 && p != NULL &&n_IsZero(pGetCoeff(p), r))42 if (n_IsZero(pGetCoeff(p), r)) 37 43 { 38 44 n_Delete(&pGetCoeff(p), r);
Note: See TracChangeset
for help on using the changeset viewer.