-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEqclass.h
282 lines (253 loc) · 5.28 KB
/
Eqclass.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#ifndef _EQCLASS_H
#define _EQCLASS_H
#include <iostream>
#include <errno.h>
#include "Lists.h"
#include "Itemset.h"
#define EQCTYP1 1
#define EQCTYP2 2
#define EQCTYP3 3
class EqGrNode;
class Eqclass {
private:
Lists<Itemset *> *theList;
int Iset_size;
unsigned int seqTemplate;
Lists<Itemset *> *theList2;
unsigned int seqTemplate2;
int Eqtype;
public:
Eqclass(int iset_sz, int eqt);
~Eqclass();
int templ_sz()
{
return Iset_size;
}
int eqtype()
{
return Eqtype;
}
Lists<Itemset *> * list()
{
return theList;
}
Lists<Itemset *> * list2()
{
return theList2;
}
unsigned int templ()
{
return seqTemplate;
}
unsigned int templ2()
{
return seqTemplate2;
}
void set_templ(unsigned int val)
{
seqTemplate = val;
}
void set_templ2(unsigned int val)
{
seqTemplate2 = val;
}
void set_list(Lists<Itemset *> * ll)
{
theList = ll;
}
void append(Itemset *it)
{
theList->append(it);
}
void append2(Itemset *it)
{
theList2->append(it);
}
void prepend(Itemset *it)
{
theList->prepend(it);
}
void prepend2(Itemset *it)
{
theList2->prepend(it);
}
void print_template1();
void print_template2();
void print_template();
void print_list(Lists<Itemset *> *ll);
Itemset * uniqsorted(Itemset *it, CMP_FUNC func);
int subseq(Itemset *it);
};
class FreqIt{
public:
int *seq;
int seqsz;
unsigned int templ;
FreqIt(int sz, unsigned int tpl)
{
templ = tpl;
seqsz = sz;
seq = new int[sz];
}
FreqIt(int *ary, int sz, unsigned int tpl)
{
templ = tpl;
seqsz = sz;
seq = new int[sz];
for (int i=0; i < sz; i++) seq[i] = ary[i];
}
~FreqIt()
{
if (seq) delete [] seq;
}
int compare(Itemset *iset, unsigned int itpl);
int compare(FreqIt *fit, int recursive);
friend ostream& operator << (ostream& outputStream, FreqIt& freq)
{
outputStream << "FREQ : ";
for (int i=0; i < freq.seqsz; i++)
outputStream << " " << freq.seq[i];
outputStream << " --- " << freq.templ << endl;
return outputStream;
}
};
class EqGrNode {
private:
Array *theElements;
//int numElements;
//int totElements;
Array *stheElements;
//int snumElements;
//int stotElements;
FreqIt **freqArray; //frequent seq from this class
int freqArraySz;
Lists<int *> *theCoverL;
Lists<Array *> *theCliqueL;
Lists<Itemset *> *theLargeL;
int theFlg; //indicates if class is in memory
public:
static int bsearch(int min, int max, FreqIt **freqArray,
FreqIt &fit, int recursive);
static int bsearch(int min, int max, int *itary, int it);
EqGrNode(int sz);
~EqGrNode();
FreqIt **freqarray()
{
return freqArray;
}
int freqarraysz()
{
return freqArraySz;
}
void set_freqarray(FreqIt **fit, int sz)
{
freqArray = fit;
freqArraySz = sz;
}
int find_freqarray(FreqIt &fit, int recursive);
int getflg()
{
return theFlg;
}
void setflg(int val)
{
theFlg=val;
}
Lists<Array *> *clique()
{
return theCliqueL;
}
Lists<Itemset *> *largelist()
{
return theLargeL;
}
Lists<int *> * cover()
{
return theCoverL;
}
Array * elements()
{
return theElements;
}
int num_elements()
{
if (theElements)
return theElements->size();
else return 0;
}
void add_element(int el)
{
//theElements[numElements] = el;
//numElements++;
theElements->add(el);
}
void add_element(int el, int pos)
{
theElements->setitem(pos,el);
}
int get_element(int pos)
{
return (*theElements)[pos];
}
//void remove_el(int pos)
//{
// for (int i=pos; i < numElements-1; i++)
// theElements[i] = theElements[i+1];
// numElements--;
//}
void seqsetelements(Array *ary)
{
stheElements = ary;
//stotElements = sz;
//MEMUSED += sz*sizeof(int);
}
Array * seqelements()
{
return stheElements;
}
int seqnum_elements()
{
if (stheElements)
return stheElements->size();
else return 0;
}
void seqadd_element(int el)
{
stheElements->add( el);
//snumElements++;
}
void seqadd_element(int el, int pos)
{
stheElements->setitem(pos,el);
}
int seqget_element(int pos)
{
return (*stheElements)[pos];
}
void add_cover(int *eq)
{
theCoverL->append(eq);
}
int find(int it)
{
if (theElements){
//for (int i=0; i < theElements->size(); i++)
// if ((*theElements)[i] == it) return 1;
return bsearch(0, theElements->size()-1, theElements->array(), it);
}
return 0;
}
int seqfind(int it)
{
if (stheElements){
//for (int i=0; i < stheElements->size(); i++)
// if ((*stheElements)[i] == it) return 1;
return bsearch(0, stheElements->size()-1, stheElements->array(), it);
}
return 0;
}
friend ostream& operator << (ostream& outputStream, EqGrNode& EQ);
};
extern void eq_insert(Lists<Eqclass *> &EQC, Itemset *it);
extern void eq_print(Eqclass *LargeEqclass);
#endif