Changeset 18ef40 in git
- Timestamp:
- Dec 8, 2008, 11:00:44 AM (15 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 6b84331e2b20793ec5e9a095f67e337bc2a04e8b
- Parents:
- 8d14d6727730a17792390dffc7ccbaa20400a1d9
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kstd1.cc
r8d14d67 r18ef40 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kstd1.cc,v 1.4 1 2008-12-04 14:13:37wienand Exp $ */4 /* $Id: kstd1.cc,v 1.42 2008-12-08 10:00:44 wienand Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 951 951 } 952 952 #endif 953 return;954 953 if ((!strat->kHEdgeFound) || (strat->kNoether!=NULL)) HEckeTest(p.p,strat); 955 954 if (strat->kHEdgeFound) … … 1226 1225 { 1227 1226 /*- deletes the short spoly and computes -*/ 1228 #ifdef HAVE_RINGS 1227 #ifdef HAVE_RINGS_LOC 1229 1228 if (rField_is_Ring(currRing)) 1230 1229 pLmDelete(strat->P.p); … … 1286 1285 enterT(strat->P,strat); 1287 1286 // build new pairs 1288 #ifdef HAVE_RINGS 1287 #ifdef HAVE_RINGS_LOC 1289 1288 if (rField_is_Ring(currRing)) 1290 1289 superenterpairs(strat->P.p,strat->sl,strat->P.ecart,0,strat, strat->tl); … … 1302 1301 // clear strat->P 1303 1302 if (strat->P.lcm!=NULL) 1304 #ifdef HAVE_RINGS 1303 #ifdef HAVE_RINGS_LOC 1305 1304 pLmDelete(strat->P.lcm); 1306 1305 #else -
kernel/kutil.cc
r8d14d67 r18ef40 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: kutil.cc,v 1.11 3 2008-12-04 14:13:37wienand Exp $ */4 /* $Id: kutil.cc,v 1.114 2008-12-08 10:00:44 wienand Exp $ */ 5 5 /* 6 6 * ABSTRACT: kernel: utils for kStd … … 315 315 poly p = L->GetLmTailRing(); 316 316 317 #ifdef HAVE_RINGS 317 #ifdef HAVE_RINGS_LOC 318 318 // Leading coef have to be a unit 319 319 if ( !(nIsUnit(p_GetCoeff(p, r))) ) return; … … 5091 5091 if (!pIsVector((*p).p) && ((*p).ecart != 0)) 5092 5092 { 5093 #ifdef HAVE_RINGS 5093 #ifdef HAVE_RINGS_LOC 5094 5094 // Leading coef have to be a unit 5095 5095 if ( !(nIsUnit(p_GetCoeff((*p).p, r))) ) return; … … 5106 5106 (*p).ecart = 0; 5107 5107 (*p).length = 1; 5108 #ifdef HAVE_RINGS 5108 #ifdef HAVE_RINGS_LOC 5109 5109 (*p).pLength = 1; // Why wasn't this set already? 5110 5110 #endif
Note: See TracChangeset
for help on using the changeset viewer.