Changeset fcb8022 in git for kernel/f5data.cc
- Timestamp:
- Feb 8, 2009, 8:17:54 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 35d0d1a7256e75184cea2fe4d2e02762b243b544
- Parents:
- 9bb97ef0a0e640ba336498902b874a16dc7b978e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/f5data.cc
r9bb97e rfcb8022 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: f5data.cc,v 1. 3 2009-02-06 20:12:35ederc Exp $ */4 /* $Id: f5data.cc,v 1.4 2009-02-08 19:17:54 ederc Exp $ */ 5 5 /* 6 6 * ABSTRACT: lpolynomial definition … … 30 30 ================================================================ 31 31 */ 32 LPoly::LPoly(poly t,int i,poly p ,bool d) {33 set(t,i,p ,d);32 LPoly::LPoly(poly t,int i,poly p) { 33 set(t,i,p); 34 34 } 35 35 … … 46 46 } 47 47 48 void LPoly::setDel(bool b) {49 del = b;50 }51 52 48 poly LPoly::getPoly() { 53 49 return polynomial; … … 62 58 } 63 59 64 bool LPoly::getDel() const { 65 return del; 66 } 67 68 void LPoly::set(poly t, int i, poly p, bool d) { 60 void LPoly::set(poly t, int i, poly p) { 69 61 this->setTerm(t); 70 62 this->setIndex(i); 71 63 this->setPoly(p); 72 this->setDel(d);73 64 } 74 65 … … 169 160 return origin; 170 161 } 162 163 void Rule::setOrigin(LPoly* l) { 164 origin = l; 165 } 171 166 #endif
Note: See TracChangeset
for help on using the changeset viewer.