Changeset fb82895 in git for kernel/polys.h
- Timestamp:
- Jun 22, 2010, 6:29:47 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 0398e1a2da70828a8f9d960d4942585db16f2a73
- Parents:
- 963057da7a809bc812a86897df7ddc609e67a449
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.h
r963057 rfb82895 84 84 * 85 85 * Allocation/Initalization/Deletion 86 * except for p DeleteLm and pHead, all polys must be != NULL86 * except for pHead, all polys must be != NULL 87 87 * 88 88 ***************************************************************/ … … 97 97 // p might be NULL 98 98 #define pHead(p) p_Head(p, currRing) 99 // if *p_ptr != NULL, delete p_ptr->coef, *p_ptr, and set *p_ptr to100 // pNext(*p_ptr)101 static inline void pDeleteLm(poly *p) {p_DeleteLm(p, currRing);}102 // if (p!=NULL) delete p-coef and p103 static inline void pDeleteLm(poly p) {p_DeleteLm(p, currRing);}104 99 // frees the space of the monomial m, assumes m != NULL 105 100 // coef is not freed, m is not advanced
Note: See TracChangeset
for help on using the changeset viewer.