Changeset 4e803e in git for kernel/lpolynomial.h
- Timestamp:
- Nov 27, 2008, 6:19:22 PM (15 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 8c66fb0e0dc173c2eb5aff1e988308a8527bc045
- Parents:
- 244ed5b722de4df004fddd3ed09ac68c69199316
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/lpolynomial.h
r244ed5 r4e803e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: lpolynomial.h,v 1. 1 2008-11-22 20:47:27ederc Exp $ */4 /* $Id: lpolynomial.h,v 1.2 2008-11-27 17:19:22 ederc Exp $ */ 5 5 /* 6 * ABSTRACT: f5gbinterface6 * ABSTRACT: labeled polynomial interface 7 7 */ 8 8 #ifndef LPOLYNOMIAL_HEADER … … 13 13 14 14 // class of a labeled polynomial 15 class lpoly15 class LPoly 16 16 { 17 17 private: … … 20 20 poly polynomial; //standard polynomial data 21 21 bool del; //for deletion in TopReduction Subalgorithm 22 lpoly *next; //pointer on the next labeled polynomial in the list22 LPoly *next; //pointer on the next labeled polynomial in the list 23 23 public: 24 24 void setPoly(poly p); … … 30 30 void setDel(bool b); 31 31 bool getDel(); 32 void setNext(lpoly *l); 33 lpoly *getNext(); 32 void setNext(LPoly *l); 33 LPoly *getNext(); 34 int compare(const LPoly& lp); 35 void get(); 34 36 }; 35 37 … … 38 40 struct critpair 39 41 { 40 lpoly *cp1; // first component41 lpoly *cp2; // second component42 LPoly *cp1; // first component 43 LPoly *cp2; // second component 42 44 critpair *next; // next critical pair 43 45 };
Note: See TracChangeset
for help on using the changeset viewer.