Changeset 1a20e5 in git for kernel/polys.h
- Timestamp:
- Sep 8, 2011, 9:04:15 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 7e6bfe4dfd3d23ed105e01efcc0429e77ab42915
- Parents:
- 1450c9e719fe8c5b3cefb712a0bb457fdd4c2776
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-08 21:04:15+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:36+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.h
r1450c9 r1a20e5 307 307 // component == comp and *p of all other monoms *lq == pLength(*q) 308 308 // On return all components pf *q == 0 309 void pTakeOutComp(poly *p, long comp, poly *q, int *lq); 309 inline void pTakeOutComp(poly *p, long comp, poly *q, int *lq, const ring R = currRing) 310 { 311 return p_TakeOutComp(p, comp, q, lq, R); 312 } 313 310 314 311 315 // This is something weird -- Don't use it, unless you know what you are doing 312 poly pTakeOutComp(poly * p, int k); 316 inline poly pTakeOutComp(poly * p, int k, const ring R = currRing) 317 { 318 return p_TakeOutComp(p, k, R); 319 } 320 313 321 /* old spielwiese 314 322 #define pTakeOutComp(p,k,q,lq) p_TakeOutComp(p,k,q,lq,currRing)
Note: See TracChangeset
for help on using the changeset viewer.