Changeset 01e7a1d in git
- Timestamp:
- Jun 8, 2010, 2:30:00 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- c3d17527305d0cf9da8226a23b8fc95f6e3f37d0
- Parents:
- 3fe3da09eab8a6391fc94a35a383eec9d32886d7
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-06-08 14:30:00+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:02+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/structs.h
r3fe3da0 r01e7a1d 160 160 typedef int * int_ptr; 161 161 typedef ip_sring * ring; 162 typedef polyrec * poly;163 162 typedef poly * polyset; 164 163 -
polys/pInline1.h
r3fe3da0 r01e7a1d 309 309 ev[j] = p_GetExp(p, j, r); 310 310 311 ev[0] = _p_GetComp(p, r);311 ev[0] = p_GetComp(p, r); 312 312 } 313 313 PINLINE1 void p_SetExpV(poly p, int *ev, const ring r) -
polys/polys-impl.h
r3fe3da0 r01e7a1d 17 17 ***************************************************************/ 18 18 #include <omalloc.h> 19 #include <coeffs.h> 19 20 20 21 /*************************************************************** … … 30 31 unsigned long exp[1]; // make sure that exp is aligned 31 32 }; 33 typedef struct spolyrec * poly; 34 32 35 #define POLYSIZE (sizeof(poly) + sizeof(number)) 33 36 #define POLYSIZEW (POLYSIZE / sizeof(long)) … … 212 215 213 216 #define __p_GetComp(p, r) (p)->exp[r->pCompIndex] 214 #define _p_GetComp(p, r) ((long) (r->pCompIndex >= 0 ? __p_GetComp(p, r) : 0))217 #define p_GetComp(p, r) ((long) (r->pCompIndex >= 0 ? __p_GetComp(p, r) : 0)) 215 218 216 219 /***************************************************************
Note: See TracChangeset
for help on using the changeset viewer.