1 | /**************************************** |
---|
2 | * Computer Algebra System SINGULAR * |
---|
3 | ****************************************/ |
---|
4 | /* $Id: f5lists.h,v 1.13 2009-03-01 20:31:55 ederc Exp $ */ |
---|
5 | /* |
---|
6 | * ABSTRACT: list interface |
---|
7 | */ |
---|
8 | #include "f5data.h" |
---|
9 | #ifndef F5LISTS_HEADER |
---|
10 | #define F5LISTS_HEADER |
---|
11 | |
---|
12 | #ifdef HAVE_F5 |
---|
13 | /* |
---|
14 | ============================ |
---|
15 | ============================ |
---|
16 | classes for lists used in F5 |
---|
17 | ============================ |
---|
18 | ============================ |
---|
19 | */ |
---|
20 | class LNode; |
---|
21 | class LList; |
---|
22 | class LTagNode; |
---|
23 | class LTagList; |
---|
24 | class CNode; |
---|
25 | class CList; |
---|
26 | class RList; |
---|
27 | class RNode; |
---|
28 | class RTagNode; |
---|
29 | class RTagList; |
---|
30 | |
---|
31 | |
---|
32 | /* |
---|
33 | ======================================= |
---|
34 | class LNode (nodes for lists of LPolys) |
---|
35 | ======================================= |
---|
36 | */ |
---|
37 | class LNode { |
---|
38 | private: |
---|
39 | LPoly* data; |
---|
40 | LNode* next; |
---|
41 | public: |
---|
42 | // generating new list elements from the labeled / classical polynomial view |
---|
43 | LNode(); |
---|
44 | LNode(LPoly* lp); |
---|
45 | LNode(LPoly* lp, LNode* l); |
---|
46 | LNode(poly t, int i, poly p, Rule* r=NULL); |
---|
47 | LNode(poly t, int i, poly p, Rule* r, LNode* l); |
---|
48 | LNode(LNode* ln); |
---|
49 | ~LNode(); |
---|
50 | void deleteAll(); |
---|
51 | // insert new elements to the list at the end from the labeled / classical polynomial view |
---|
52 | // needed for gPrev |
---|
53 | LNode* insert(LPoly* lp); |
---|
54 | LNode* insert(poly t, int i, poly p, Rule* r); |
---|
55 | // insert new elements to the list in front from the labeled / classical polynomial view |
---|
56 | // needed for sPolyList |
---|
57 | LNode* insertSP(LPoly* lp); |
---|
58 | LNode* insertSP(poly t, int i, poly p, Rule* r); |
---|
59 | // insert new elements to the list with resp. to increasing labels |
---|
60 | // only used for the S-polys to be reduced (TopReduction building new S-polys with higher label) |
---|
61 | LNode* insertByLabel(poly t, int i, poly p, Rule* r); |
---|
62 | // deletes the first elements of the list with the same degree |
---|
63 | // get next & prev from current LNode |
---|
64 | LNode* getNext(); |
---|
65 | LNode* getPrev(); |
---|
66 | // only used for the S-polys, which are already sorted by increasing degree by CList |
---|
67 | LNode* deleteByDeg(); |
---|
68 | // get the LPoly* out of LNode* |
---|
69 | LPoly* getLPoly(); |
---|
70 | // get the data from the LPoly saved in LNode |
---|
71 | poly getPoly(); |
---|
72 | poly getTerm(); |
---|
73 | int getIndex(); |
---|
74 | Rule* getRule(); |
---|
75 | // set the data from the LPoly saved in LNode |
---|
76 | void setPoly(poly p); |
---|
77 | void setTerm(poly t); |
---|
78 | void setIndex(int i); |
---|
79 | void setNext(LNode* l); |
---|
80 | // test if for any list element the polynomial part of the data is equal to *p |
---|
81 | bool polyTest(poly* p); |
---|
82 | LNode* getNext(LNode* l); |
---|
83 | void print(); |
---|
84 | }; |
---|
85 | |
---|
86 | |
---|
87 | /* |
---|
88 | ============================ |
---|
89 | class LList(lists of LPolys) |
---|
90 | ============================ |
---|
91 | */ |
---|
92 | class LList { |
---|
93 | private: |
---|
94 | LNode* first; |
---|
95 | LNode* last; |
---|
96 | int length; |
---|
97 | public: |
---|
98 | LList(); |
---|
99 | LList(LPoly* lp); |
---|
100 | LList(poly t,int i,poly p, Rule* r = NULL); |
---|
101 | ~LList(); |
---|
102 | // insertion at the end of the list |
---|
103 | // needed for gPrev |
---|
104 | void insert(LPoly* lp); |
---|
105 | void insert(poly t,int i, poly p, Rule* r = NULL); |
---|
106 | // insertion in front of the list |
---|
107 | // needed for sPolyList |
---|
108 | void insertSP(LPoly* lp); |
---|
109 | void insertSP(poly t,int i, poly p, Rule* r = NULL); |
---|
110 | void insertByLabel(poly t, int i, poly p, Rule* r = NULL); |
---|
111 | void insertByLabel(LNode* l); |
---|
112 | void deleteByDeg(); |
---|
113 | bool polyTest(poly* p); |
---|
114 | LNode* getFirst(); |
---|
115 | LNode* getLast(); |
---|
116 | int getLength(); |
---|
117 | void setFirst(LNode* l); |
---|
118 | void print(); |
---|
119 | }; |
---|
120 | |
---|
121 | |
---|
122 | |
---|
123 | /* |
---|
124 | ============================================== |
---|
125 | class LtagNode (nodes for lists of LPoly tags) |
---|
126 | ============================================== |
---|
127 | */ |
---|
128 | class LTagNode { |
---|
129 | private: |
---|
130 | LNode* data; |
---|
131 | LTagNode* next; |
---|
132 | public: |
---|
133 | LTagNode(); |
---|
134 | LTagNode(LNode* l); |
---|
135 | LTagNode(LNode* l, LTagNode* n); |
---|
136 | ~LTagNode(); |
---|
137 | // declaration with first as parameter due to sorting of LTagList |
---|
138 | LTagNode* insert(LNode* l); |
---|
139 | LNode* getLNode(); |
---|
140 | LTagNode* getNext(); |
---|
141 | LNode* get(int i, int length); |
---|
142 | }; |
---|
143 | |
---|
144 | |
---|
145 | /* |
---|
146 | ========================================================================= |
---|
147 | class LTagList(lists of LPoly tags, i.e. first elements of a given index) |
---|
148 | ========================================================================= |
---|
149 | */ |
---|
150 | class LTagList { |
---|
151 | private: |
---|
152 | LTagNode* first; |
---|
153 | LNode* firstCurrentIdx; |
---|
154 | int length; |
---|
155 | public: |
---|
156 | LTagList(); |
---|
157 | LTagList(LNode* l); |
---|
158 | ~LTagList(); |
---|
159 | // declaration with first as parameter in LTagNode due to sorting of LTagList |
---|
160 | void insert(LNode* l); |
---|
161 | void setFirstCurrentIdx(LNode* l); |
---|
162 | LNode* get(int idx); |
---|
163 | LNode* getFirst(); |
---|
164 | LNode* getFirstCurrentIdx(); |
---|
165 | }; |
---|
166 | |
---|
167 | LNode* getGPrevRedCheck(); |
---|
168 | LNode* getcompletedRedCheck(); |
---|
169 | |
---|
170 | |
---|
171 | /* |
---|
172 | ====================================================================================== |
---|
173 | class TopRed(return values of subalgorithm TopRed in f5gb.cc), i.e. the first elements |
---|
174 | of the lists LList* completed & LList* sPolyList |
---|
175 | ====================================================================================== |
---|
176 | */ |
---|
177 | class TopRed { |
---|
178 | private: |
---|
179 | LList* _completed; |
---|
180 | LList* _toDo; |
---|
181 | public: |
---|
182 | TopRed(); |
---|
183 | TopRed(LList* c, LList* t); |
---|
184 | LList* getCompleted(); |
---|
185 | LList* getToDo(); |
---|
186 | }; |
---|
187 | |
---|
188 | |
---|
189 | /* |
---|
190 | ======================================= |
---|
191 | class CNode (nodes for lists of CPairs) |
---|
192 | ======================================= |
---|
193 | */ |
---|
194 | class CNode { |
---|
195 | private: |
---|
196 | CPair* data; |
---|
197 | CNode* next; |
---|
198 | public: |
---|
199 | CNode(); |
---|
200 | CNode(CPair* c); |
---|
201 | CNode(CPair* c, CNode* n); |
---|
202 | ~CNode(); |
---|
203 | CNode* insert(CPair* c, CNode* last); |
---|
204 | CNode* getMinDeg(); |
---|
205 | CPair* getData(); |
---|
206 | CNode* getNext(); |
---|
207 | LPoly* getAdLp1(); |
---|
208 | LPoly* getAdLp2(); |
---|
209 | poly getLp1Poly(); |
---|
210 | poly getLp2Poly(); |
---|
211 | poly getLp1Term(); |
---|
212 | poly getLp2Term(); |
---|
213 | poly getT1(); |
---|
214 | poly* getAdT1(); |
---|
215 | poly getT2(); |
---|
216 | poly* getAdT2(); |
---|
217 | int getLp1Index(); |
---|
218 | int getLp2Index(); |
---|
219 | Rule* getTestedRule(); |
---|
220 | void print(); |
---|
221 | }; |
---|
222 | |
---|
223 | |
---|
224 | /* |
---|
225 | ============================ |
---|
226 | class CList(lists of CPairs) |
---|
227 | ============================ |
---|
228 | */ |
---|
229 | class CList { |
---|
230 | private: |
---|
231 | CNode* first; |
---|
232 | // last alway has data=NULL and next=NULL, for initialization purposes used |
---|
233 | CNode* last; |
---|
234 | public: |
---|
235 | // for initialization of CLists, last element alwas has data=NULL and next=NULL |
---|
236 | CList(); |
---|
237 | CList(CPair* c); |
---|
238 | ~CList(); |
---|
239 | CNode* getFirst(); |
---|
240 | void insert(CPair* c); |
---|
241 | CNode* getMinDeg(); |
---|
242 | void print(); |
---|
243 | }; |
---|
244 | |
---|
245 | |
---|
246 | /* |
---|
247 | ====================================== |
---|
248 | class RNode (nodes for lists of Rules) |
---|
249 | ====================================== |
---|
250 | */ |
---|
251 | class RNode { |
---|
252 | private: |
---|
253 | Rule* data; |
---|
254 | RNode* next; |
---|
255 | public: |
---|
256 | RNode(); |
---|
257 | RNode(Rule* r); |
---|
258 | ~RNode(); |
---|
259 | RNode* insert(Rule* r); |
---|
260 | RNode* insert(int i, poly t); |
---|
261 | RNode* getNext(); |
---|
262 | Rule* getRule(); |
---|
263 | int getRuleIndex(); |
---|
264 | poly getRuleTerm(); |
---|
265 | }; |
---|
266 | |
---|
267 | /* |
---|
268 | ============================ |
---|
269 | class RList (lists of Rules) |
---|
270 | ============================ |
---|
271 | */ |
---|
272 | class RList { |
---|
273 | private: |
---|
274 | RNode* first; |
---|
275 | // last alway has data=NULL and next=NULL, for initialization purposes used |
---|
276 | RNode* last; |
---|
277 | public: |
---|
278 | RList(); |
---|
279 | RList(Rule* r); |
---|
280 | ~RList(); |
---|
281 | void insert(Rule* r); |
---|
282 | void insert(int i, poly t); |
---|
283 | RNode* getFirst(); |
---|
284 | Rule* getRule(); |
---|
285 | }; |
---|
286 | |
---|
287 | |
---|
288 | |
---|
289 | /* |
---|
290 | ============================================= |
---|
291 | class RtagNode (nodes for lists of Rule tags) |
---|
292 | ============================================= |
---|
293 | */ |
---|
294 | class RTagNode { |
---|
295 | private: |
---|
296 | RNode* data; |
---|
297 | RTagNode* next; |
---|
298 | public: |
---|
299 | RTagNode(); |
---|
300 | RTagNode(RNode* r); |
---|
301 | RTagNode(RNode* r, RTagNode* n); |
---|
302 | ~RTagNode(); |
---|
303 | // declaration with first as parameter due to sorting of LTagList |
---|
304 | RTagNode* insert(RNode* r); |
---|
305 | RNode* getRNode(); |
---|
306 | RNode* get(int idx, int length); |
---|
307 | void set(RNode*); |
---|
308 | void print(); |
---|
309 | }; |
---|
310 | |
---|
311 | |
---|
312 | /* |
---|
313 | ======================================================================== |
---|
314 | class RTagList(lists of Rule tags, i.e. first elements of a given index) |
---|
315 | ======================================================================== |
---|
316 | */ |
---|
317 | class RTagList { |
---|
318 | private: |
---|
319 | RTagNode* first; |
---|
320 | int length; |
---|
321 | public: |
---|
322 | RTagList(); |
---|
323 | RTagList(RNode* r); |
---|
324 | ~RTagList(); |
---|
325 | // declaration with first as parameter in LTagNode due to sorting of LTagList |
---|
326 | void insert(RNode* r); |
---|
327 | RNode* getFirst(); |
---|
328 | RNode* get(int idx); |
---|
329 | void setFirst(RNode* r); |
---|
330 | void print(); |
---|
331 | int getLength(); |
---|
332 | }; |
---|
333 | #endif |
---|
334 | #endif |
---|