Changeset 9f73e80 in git
- Timestamp:
- May 9, 2011, 12:54:47 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- bbcf1d285769ac69638e4d28453a5e8c223fdaa4
- Parents:
- 3fe9579a442aa732988c0f2c6fd500203ed4dc4d
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/p_polys.cc
r3fe957 r9f73e80 541 541 if (r->firstwv==NULL) return p_Totaldegree(p, r); 542 542 p_LmCheckPolyRing(p, r); 543 int i , k;543 int i; 544 544 long j =0; 545 545 -
kernel/polys.cc
r3fe957 r9f73e80 54 54 void pSetGlobals(const ring r, BOOLEAN complete) 55 55 { 56 int i;57 56 if (ppNoether!=NULL) pDelete(&ppNoether); 58 57 pVariables = r->N; -
kernel/polys1.cc
r3fe957 r9f73e80 158 158 { 159 159 number x, y; 160 int i;161 160 162 161 y = pGetCoeff(p); … … 164 163 n_Delete(&y,r); 165 164 pSetCoeff0(p,x); 166 //for (i =pVariables; i!=0; i--)165 //for (int i=pVariables; i!=0; i--) 167 166 //{ 168 167 // pAddExp(p,i, pGetExp(q,i)); … … 179 178 { 180 179 number x; 181 int i;182 180 poly r = p_Init(rr); 183 181 … … 469 467 void pEnlargeSet(polyset *p, int l, int increment) 470 468 { 471 int i;472 469 polyset h; 473 470 … … 1458 1455 poly pJetW(poly p, int m, short *w) 1459 1456 { 1460 poly t=NULL;1461 1457 while((p!=NULL) && (totaldegreeWecart_IV(p,currRing,w)>m)) pLmDelete(&p); 1462 1458 if (p==NULL) return NULL; … … 1712 1708 { 1713 1709 number n,nn; 1714 int i;1715 1710 pAssume(p1 != NULL && p2 != NULL); 1716 1711
Note: See TracChangeset
for help on using the changeset viewer.