Changeset f5d749 in git
- Timestamp:
- Dec 5, 2000, 2:01:11 PM (22 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- e6243c52793c81123253d462d4029d506b6c7456
- Parents:
- 9f9b9a1a665602bf82b5e271e8cc596d26f25203
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/pInline1.h
r9f9b9a1 rf5d749 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: pInline1.h,v 1.1 3 2000-11-03 14:50:19obachman Exp $9 * Version: $Id: pInline1.h,v 1.14 2000-12-05 13:01:11 obachman Exp $ 10 10 *******************************************************************/ 11 11 #ifndef PINLINE1_H … … 99 99 omTypeAlloc0Bin(poly, p, bin); 100 100 p_MemAdd_NegWeightAdjust(p, r); 101 p_SetRingOf Poly(p, r);101 p_SetRingOfLm(p, r); 102 102 return p; 103 103 } … … 112 112 poly np; 113 113 omTypeAllocBin(poly, np, r->PolyBin); 114 p_SetRingOf Poly(np, r);114 p_SetRingOfLm(np, r); 115 115 p_ExpVectorCopy(np, p, r); 116 116 _pNext(np) = NULL; … … 146 146 poly np; 147 147 omTypeAllocBin(poly, np, r->PolyBin); 148 p_SetRingOf Poly(np, r);148 p_SetRingOfLm(np, r); 149 149 p_ExpVectorCopy(np, p, r); 150 150 _pNext(np) = NULL; -
Singular/pInline2.h
r9f9b9a1 rf5d749 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: pInline2.h,v 1.2 1 2000-12-05 12:14:32obachman Exp $9 * Version: $Id: pInline2.h,v 1.22 2000-12-05 13:01:11 obachman Exp $ 10 10 *******************************************************************/ 11 11 #ifndef PINLINE2_H … … 216 216 poly p; 217 217 omTypeAllocBin(poly, p, bin); 218 p_SetRingOf Poly(p, r);218 p_SetRingOfLm(p, r); 219 219 return p; 220 220 } -
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.