Changeset aa450d in git
- Timestamp:
- Apr 19, 2011, 2:32:23 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 41dde6b1c6fa91b5086d46e439ddf7068a0061f6
- Parents:
- a60e0bcaf232de789a31ddc8325ce60313cdf87e
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-19 14:32:23+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:19+01:00
- Location:
- libpolys/polys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/p_polys.h
ra60e0b raa450d 389 389 extern pLDegProc pLDeg; 390 390 extern pFDegProc pFDeg; 391 392 static inline long p_FDeg(const poly p, const ring r) { return r->pFDeg(p,r); } 393 static inline long p_LDeg(const poly p, int *l, const ring r) { return r->pLDeg(p,l,r); } 394 391 395 long p_WFirstTotalDegree(poly p, ring r); 392 396 long p_WTotaldegree(poly p, const ring r); … … 1833 1837 1834 1838 1839 1840 /*----------------------------------------------------*/ 1841 int p_Var(poly mi,const ring r); 1842 1843 1835 1844 #endif // P_POLYS_H 1836 1845 -
libpolys/polys/polys.h
ra60e0b raa450d 242 242 * 243 243 ***************************************************************/ 244 static inline long pFDeg(const poly p, const ring r) { return r->pFDeg(p,r); }245 static inline long pLDeg(const poly p, int *l, const ring r) { return r->pLDeg(p,l,r); }246 244 #define pWeight(c) p_Weight(c,currRing) 247 245 #define pDeg(p) p_Deg(p,currRing) … … 332 330 /*-----------type conversions ----------------------------*/ 333 331 void pVec2Polys(poly v, polyset *p, int *len); 334 int p_Var(poly mi,const ring r);335 332 #define pVar(m) p_Var(m,currRing) 336 333
Note: See TracChangeset
for help on using the changeset viewer.