Changeset ba0fc3 in git for libpolys/polys/polys.h
- Timestamp:
- Mar 22, 2011, 10:36:05 AM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- c462b558d2bcc56ce39d2181b2f9d9cd1b82345b
- Parents:
- f550e863b5113c076c1fa29a44f2bde2146f14cf
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-03-22 10:36:05+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:09+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/polys.h
rf550e86 rba0fc3 317 317 #define pNorm(p) p_Norm(p,currRing) 318 318 #define pSubst(p,n,e) p_Subst(p,n.e,currRing) 319 poly ppJet(poly p, int m); 320 poly pJet(poly p, int m); 321 poly ppJetW(poly p, int m, short * iv); 322 poly pJetW(poly p, int m, short * iv); 323 int pMinDeg(poly p,intvec *w=NULL); 319 #define ppJet(p,m) pp_Jet(p,m,currRing) 320 #define pJet(p,m) p_Jet(p,m,currRing) 321 #define ppJetW(p,m,iv) pp_JetW(p,m,iv,currRing) 322 #define pJetW(p,m,iv) p_JetW(p,m,iv,currRing) 323 #define pMinDeg(p,w) p_MinDeg(p,w,currRing) 324 324 poly pSeries(int n,poly p,poly u=NULL,intvec *w=NULL); 325 325 poly pInvers(int n, poly p,intvec *w=NULL); 326 326 // maximum weigthed degree of all monomials of p, w is indexed from 327 327 // 1..pVariables 328 long pDegW(poly p, const short *w); 328 #define pDegW(p,w) p_DegW(p,w,currRing) 329 329 330 330 /*-----------type conversions ----------------------------*/
Note: See TracChangeset
for help on using the changeset viewer.