Changeset aa450d in git


Ignore:
Timestamp:
Apr 19, 2011, 2:32:23 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
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
Message:
FIX: move some minor functions from polys.h -> p_polys.h
Location:
libpolys/polys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/p_polys.h

    ra60e0b raa450d  
    389389extern pLDegProc pLDeg;
    390390extern pFDegProc pFDeg;
     391
     392static inline long  p_FDeg(const poly p, const ring r)  { return r->pFDeg(p,r); }
     393static inline long  p_LDeg(const poly p, int *l, const ring r)  { return r->pLDeg(p,l,r); }
     394
    391395long p_WFirstTotalDegree(poly p, ring r);
    392396long p_WTotaldegree(poly p, const ring r);
     
    18331837
    18341838
     1839
     1840/*----------------------------------------------------*/
     1841int   p_Var(poly mi,const ring r);
     1842
     1843
    18351844#endif // P_POLYS_H
    18361845
  • libpolys/polys/polys.h

    ra60e0b raa450d  
    242242 *
    243243 ***************************************************************/
    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); }
    246244#define pWeight(c) p_Weight(c,currRing)
    247245#define pDeg(p)    p_Deg(p,currRing)
     
    332330/*-----------type conversions ----------------------------*/
    333331void  pVec2Polys(poly v, polyset *p, int *len);
    334 int   p_Var(poly mi,const ring r);
    335332#define   pVar(m) p_Var(m,currRing)
    336333
Note: See TracChangeset for help on using the changeset viewer.