Changeset a88544 in git for kernel/polys.h
- Timestamp:
- Jul 26, 2008, 12:04:55 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- e5dcf2e9b0937447ac576a41bc6bf66d961d5419
- Parents:
- eacd64ccb21811d46e2c3e1f042a74e36c3b0abf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.h
reacd64 ra88544 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: polys.h,v 1.1 8 2008-07-26 09:40:41Singular Exp $ */6 /* $Id: polys.h,v 1.19 2008-07-26 10:04:55 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT - all basic methods to manipulate polynomials of the … … 359 359 #define pNSet(n) p_NSet(n,currRing) 360 360 //#define pOne() pISet(1) 361 inline poly p One()361 inline poly p_One(const ring r) 362 362 { 363 poly rc = p Init();364 pSetCoeff0(rc, nInit(1));363 poly rc = p_Init(r); 364 pSetCoeff0(rc,r->cf->nInit(1)); 365 365 return rc; 366 366 } 367 #define pOne() p_One(currRing) 367 368 368 369 void pContent(poly p);
Note: See TracChangeset
for help on using the changeset viewer.