Changeset 5948a8 in git for libpolys/polys/monomials/monomials.h
- Timestamp:
- Mar 30, 2011, 4:50:13 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- bb6c8a5b9ffdd315338acd9b7d6eb2fd40522955
- Parents:
- 0ceb74fb301333567c3206509584432bc130b144
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-30 16:50:13+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:15+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/monomials.h
r0ceb74 r5948a8 27 27 unsigned long exp[1]; // make sure that exp is aligned 28 28 }; 29 30 31 /***************************************************************32 *33 * Macros for access/iteration34 *35 ***************************************************************/36 // #define pNext(p) ((p)->next)37 // #define pIter(p) ((p) = (p)->next)38 39 // coeff40 //#define pGetCoeff(p) ((p)->coef)41 //#define pSetCoeff0(p,n) (p)->coef=n42 43 #define __p_GetComp(p, r) (p)->exp[r->pCompIndex]44 #define p_GetComp(p, r) ((long) (r->pCompIndex >= 0 ? __p_GetComp(p, r) : 0))45 29 46 30 /***************************************************************
Note: See TracChangeset
for help on using the changeset viewer.