effspm 0.2.8__cp39-cp39-win_amd64.whl → 0.3.3__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- effspm/_effspm.cp39-win_amd64.pyd +0 -0
- effspm/_effspm.cpp +961 -210
- effspm/btminer/src/build_mdd.cpp +42 -17
- effspm/btminer/src/build_mdd.hpp +13 -19
- effspm/btminer/src/freq_miner.cpp +134 -49
- effspm/btminer/src/freq_miner.hpp +16 -0
- effspm/btminer/src/load_inst.cpp +211 -126
- effspm/btminer/src/load_inst.hpp +22 -4
- effspm/btminer/src/main.cpp +83 -0
- effspm/btminer/src/utility.cpp +26 -41
- effspm/btminer/src/utility.hpp +6 -30
- effspm/freq_miner.hpp +2 -1
- effspm/htminer/src/build_mdd.cpp +46 -124
- effspm/htminer/src/build_mdd.hpp +56 -49
- effspm/htminer/src/freq_miner.cpp +341 -307
- effspm/htminer/src/freq_miner.hpp +39 -40
- effspm/htminer/src/load_inst.cpp +287 -336
- effspm/htminer/src/load_inst.hpp +23 -6
- effspm/htminer/src/main.cpp +97 -0
- effspm/htminer/src/utility.cpp +38 -57
- effspm/htminer/src/utility.hpp +9 -64
- effspm/largebm/src/build_mdd.cpp +69 -110
- effspm/largebm/src/build_mdd.hpp +22 -37
- effspm/largebm/src/freq_miner.cpp +241 -291
- effspm/largebm/src/freq_miner.hpp +25 -36
- effspm/largebm/src/load_inst.cpp +20 -26
- effspm/largebm/src/load_inst.hpp +24 -34
- effspm/largebm/src/main.cpp +95 -0
- effspm/largebm/src/utility.cpp +11 -21
- effspm/largebm/src/utility.hpp +7 -10
- effspm/largehm/src/build_mdd.cpp +75 -110
- effspm/largehm/src/build_mdd.hpp +53 -73
- effspm/largehm/src/freq_miner.cpp +134 -191
- effspm/largehm/src/freq_miner.hpp +37 -60
- effspm/largehm/src/load_inst.cpp +137 -174
- effspm/largehm/src/load_inst.hpp +13 -50
- effspm/largehm/src/main.cpp +95 -0
- effspm/largehm/src/utility.cpp +46 -28
- effspm/largehm/src/utility.hpp +18 -16
- effspm/largepp/src/freq_miner.cpp +184 -156
- effspm/largepp/src/freq_miner.hpp +11 -36
- effspm/largepp/src/load_inst.cpp +32 -12
- effspm/largepp/src/load_inst.hpp +15 -9
- effspm/largepp/src/main.cpp +108 -0
- effspm/largepp/src/pattern.hpp +31 -0
- effspm/load_inst.cpp +8 -8
- effspm/load_inst.hpp +1 -1
- effspm/main.cpp +103 -0
- {effspm-0.2.8.dist-info → effspm-0.3.3.dist-info}/METADATA +1 -1
- effspm-0.3.3.dist-info/RECORD +60 -0
- effspm-0.2.8.dist-info/RECORD +0 -53
- {effspm-0.2.8.dist-info → effspm-0.3.3.dist-info}/WHEEL +0 -0
- {effspm-0.2.8.dist-info → effspm-0.3.3.dist-info}/licenses/LICENSE +0 -0
- {effspm-0.2.8.dist-info → effspm-0.3.3.dist-info}/top_level.txt +0 -0
|
@@ -2,59 +2,58 @@
|
|
|
2
2
|
|
|
3
3
|
#include "load_inst.hpp"
|
|
4
4
|
#include "build_mdd.hpp"
|
|
5
|
+
#include <vector>
|
|
5
6
|
|
|
6
7
|
namespace htminer {
|
|
8
|
+
|
|
9
|
+
using std::vector;
|
|
10
|
+
|
|
7
11
|
void Freq_miner();
|
|
8
12
|
|
|
9
13
|
class Pattern {
|
|
10
14
|
public:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
freq = 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
15
|
+
vector<int> seq;
|
|
16
|
+
vector<unsigned int> str_pnt;
|
|
17
|
+
vector<int> list;
|
|
18
|
+
unsigned long long int freq;
|
|
19
|
+
|
|
20
|
+
Pattern(int item) {
|
|
21
|
+
seq.push_back(item);
|
|
22
|
+
freq = 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
Pattern(size_t _pnt, bool /*_res*/) {
|
|
26
|
+
str_pnt.reserve(_pnt);
|
|
27
|
+
freq = 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
Pattern() {
|
|
31
|
+
freq = 0;
|
|
32
|
+
}
|
|
33
33
|
};
|
|
34
34
|
|
|
35
35
|
class VPattern {
|
|
36
36
|
public:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
37
|
+
unsigned long long int ass_patt;
|
|
38
|
+
vector<int> str_pnt;
|
|
39
|
+
vector<unsigned int> seq_ID;
|
|
40
|
+
|
|
41
|
+
VPattern(unsigned long long int _patt) {
|
|
42
|
+
ass_patt = _patt;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
VPattern(size_t _pnt, bool /*a*/) {
|
|
46
|
+
str_pnt.reserve(_pnt);
|
|
47
|
+
ass_patt = 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
VPattern() {
|
|
51
|
+
ass_patt = 0;
|
|
52
|
+
}
|
|
52
53
|
};
|
|
53
54
|
|
|
54
|
-
|
|
55
55
|
extern unsigned long long int num_patt;
|
|
56
56
|
extern vector<Pattern> DFS;
|
|
57
57
|
extern vector<VPattern> VDFS;
|
|
58
58
|
|
|
59
|
-
}
|
|
60
|
-
|
|
59
|
+
} // namespace htminer
|