Changeset 715f30 in git
- Timestamp:
- Dec 2, 2010, 4:31:20 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- c3005ea46d9ce4dea15139c365c248317f216023
- Parents:
- 4e75784f0d5e941b4a716274f7236f53348703e1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys0.cc
r4e7578 r715f30 146 146 } 147 147 148 #if !defined(__OPTIMIZE__) || defined(KDEBUG) 148 149 /*2 149 150 *the standard debugging output: … … 169 170 } 170 171 } 171 //#if !defined(__OPTIMIZE__) || defined(KDEBUG): used in list1 172 #if 1 172 #endif 173 173 void p_wrp(poly p, ring lmRing, ring tailRing) 174 174 { … … 189 189 } 190 190 } 191 #else192 // this is for use with buckets193 void p_wrp(poly p, ring lmRing, ring tailRing)194 {195 poly r;196 197 if (p==NULL) PrintS("NULL");198 else if (pNext(p)==NULL) p_Write0(p, lmRing);199 else200 {201 r = pNext(p);202 pNext(p) = NULL;203 p_Write0(p, lmRing, tailRing);204 pNext(p) = r;205 }206 }207 #endif208 //#endif
Note: See TracChangeset
for help on using the changeset viewer.