Changeset fb82895 in git for kernel/pInline2.h


Ignore:
Timestamp:
Jun 22, 2010, 6:29:47 PM (14 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
0398e1a2da70828a8f9d960d4942585db16f2a73
Parents:
963057da7a809bc812a86897df7ddc609e67a449
Message:
pDeleteLm ->pLmDelete

git-svn-id: file:///usr/local/Singular/svn/trunk@12897 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/pInline2.h

    r963057 rfb82895  
    347347}
    348348
    349 PINLINE2 void p_DeleteLm(poly *p, ring r)
    350 {
    351   pIfThen2(*p != NULL, p_LmCheckPolyRing2(*p, r));
    352   poly h = *p;
    353   if (h != NULL)
    354   {
    355     n_Delete(&_pGetCoeff(h), r);
    356     *p = _pNext(h);
    357     omFreeBinAddr(h);
    358   }
    359 }
    360 PINLINE2 void p_DeleteLm(poly p, ring r)
    361 {
    362   pIfThen2(p != NULL, p_LmCheckPolyRing2(p, r));
    363   if (p != NULL)
    364   {
    365     n_Delete(&_pGetCoeff(p), r);
    366     omFreeBinAddr(p);
    367   }
    368 }
    369349PINLINE2 void p_LmFree(poly p, ring r)
    370350{
Note: See TracChangeset for help on using the changeset viewer.