Changeset 31f1850 in git for kernel/ideals.cc
- Timestamp:
- Jan 10, 2012, 4:20:10 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 930ea815182bc9bf3182f1c57876006af26295b2
- Parents:
- a74143eec598021f060c389b66230f8f035cc1c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ideals.cc
ra74143 r31f1850 1224 1224 for(i=IDELEMS(Q)-1;i>=0;i--) 1225 1225 if(w==NULL) 1226 N=si_max(N,p Deg(Q->m[i]));1226 N=si_max(N,p_Deg(Q->m[i],currRing)); 1227 1227 else 1228 1228 N=si_max(N,pDegW(Q->m[i],w)); … … 1251 1251 p=pJetW(pSub(p,ppMult_mm(Q->m[j],p0)),N,w); 1252 1252 pNormalize(p); 1253 if((w==NULL)&&(p Deg(p0)>n)||(w!=NULL)&&(pDegW(p0,w)>n))1253 if((w==NULL)&&(p_Deg(p0,currRing)>n)||(w!=NULL)&&(pDegW(p0,w)>n)) 1254 1254 p_Delete(&p0,currRing); 1255 1255 else … … 1264 1264 pIter(p); 1265 1265 pNext(p0)=NULL; 1266 if(((w==NULL)&&(p Deg(p0)>n))1266 if(((w==NULL)&&(p_Deg(p0,currRing)>n)) 1267 1267 ||((w!=NULL)&&(pDegW(p0,w)>n))) 1268 1268 p_Delete(&p0,currRing); … … 2133 2133 if (p!=NULL) 2134 2134 { 2135 d = p Deg(p);2135 d = p_Deg(p,currRing); 2136 2136 k= pGetComp(p); 2137 2137 if (slength>0) k--;
Note: See TracChangeset
for help on using the changeset viewer.