Changeset 7e67625 in git for kernel/kutil.cc
- Timestamp:
- Apr 8, 2009, 7:32:57 PM (14 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- f2b1ce61cdfede9548e35b96cfaf871abe893ba9
- Parents:
- b1c0a9e98fc3aee487e8cd43be67cb47d4352fe7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kutil.cc
rb1c0a9 r7e67625 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.13 2 2009-04-08 17:21:58motsak Exp $ */4 /* $Id: kutil.cc,v 1.133 2009-04-08 17:32:57 motsak Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 3082 3082 { 3083 3083 int j; 3084 const int iCompH = pGetComp(h); 3084 3085 3085 3086 for (j=0; j<=k; j++) 3086 3087 { 3087 if ((pGetComp(h)==pGetComp(strat->S[j])) 3088 || (0==pGetComp(strat->S[j]))) 3088 const int iCompSj = pGetComp(strat->S[j]); 3089 if ((iCompH==iCompSj) 3090 || (0==iCompH) // TODO: what about this case??? 3091 || (0==iCompSj)) 3089 3092 { 3090 3093 enterOnePairSpecial(j,h,ecart,strat, atR);
Note: See TracChangeset
for help on using the changeset viewer.