Changeset f16a76d in git for kernel/f5lists.cc
- Timestamp:
- May 7, 2009, 10:48:36 AM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- eaa679265a6d72561ceafe956d9fe10d64554d89
- Parents:
- c90b43f4f0347c206b2e154eab7e2a6464218d42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/f5lists.cc
rc90b43 rf16a76d 162 162 } 163 163 164 inline LNode* LNode::insertFirst(LNode* l) { 165 l->next = this; 166 return l; 167 } 168 164 169 inline LNode* LNode::insertByLabel(LNode* l) { 165 Print("ADDING SOLYS TO THE LIST\n");170 //Print("ADDING SOLYS TO THE LIST\n"); 166 171 //Print("new element: "); 167 172 //pWrite(t); … … 291 296 Print("Poly: "); 292 297 pWrite(temp->getPoly()); 293 Print("%p\n",temp-> next);298 Print("%p\n",temp->getPoly()); 294 299 Print("DELETE? %d\n",temp->getDel()); 295 300 temp = temp->next; … … 385 390 void LList::insertByLabel(poly t, int i, poly p, Rule* r) { 386 391 first = first->insertByLabel(t,i,p,r); 392 length++; 393 //Print("LENGTH %d\n",length); 394 } 395 396 void LList::insertFirst(LNode* l) { 397 first = first->insertFirst(l); 387 398 length++; 388 399 //Print("LENGTH %d\n",length); … … 761 772 Print("___________________List of critical pairs______________________:\n"); 762 773 while(NULL != temp) { 774 pWrite(ppMult_qq(temp->getT1(),temp->getLp1Term())); 763 775 Print("LP1 Index: %d\n",temp->getLp1Index()); 764 776 Print("T1: ");
Note: See TracChangeset
for help on using the changeset viewer.