effspm 0.2.7__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.7.dist-info → effspm-0.3.3.dist-info}/METADATA +1 -1
- effspm-0.3.3.dist-info/RECORD +60 -0
- effspm-0.2.7.dist-info/RECORD +0 -53
- {effspm-0.2.7.dist-info → effspm-0.3.3.dist-info}/WHEEL +0 -0
- {effspm-0.2.7.dist-info → effspm-0.3.3.dist-info}/licenses/LICENSE +0 -0
- {effspm-0.2.7.dist-info → effspm-0.3.3.dist-info}/top_level.txt +0 -0
effspm/largepp/src/load_inst.hpp
CHANGED
|
@@ -6,23 +6,29 @@
|
|
|
6
6
|
#include <map>
|
|
7
7
|
#include <pybind11/pybind11.h>
|
|
8
8
|
|
|
9
|
+
#include "largepp/src/pattern.hpp" // ← ensure Pattern is a complete type here
|
|
10
|
+
|
|
9
11
|
namespace largepp {
|
|
10
12
|
using namespace std;
|
|
11
13
|
|
|
12
|
-
//
|
|
13
|
-
bool Load_instance(string& items_file, double thresh);
|
|
14
|
+
// public entry points
|
|
15
|
+
bool Load_instance(std::string& items_file, double thresh);
|
|
14
16
|
void Load_py(const pybind11::object& py_data, double thresh);
|
|
15
17
|
|
|
16
|
-
//
|
|
17
|
-
extern vector<vector<int>> items;
|
|
18
|
-
extern string
|
|
18
|
+
// shared state (defined in load_inst.cpp)
|
|
19
|
+
extern std::vector<std::vector<int>> items;
|
|
20
|
+
extern std::string out_file;
|
|
19
21
|
|
|
20
22
|
extern bool b_disp, b_write, use_dic, just_build, ovr_count, pre_pro;
|
|
23
|
+
extern bool use_list;
|
|
21
24
|
|
|
22
25
|
extern unsigned int M, L, time_limit;
|
|
23
|
-
extern unsigned long long N;
|
|
24
|
-
extern double theta;
|
|
25
|
-
extern unsigned long long E;
|
|
26
|
-
extern clock_t
|
|
26
|
+
extern unsigned long long N;
|
|
27
|
+
extern double theta;
|
|
28
|
+
extern unsigned long long E;
|
|
29
|
+
extern std::clock_t start_time;
|
|
30
|
+
|
|
31
|
+
// DFS queue of potential patterns to extend
|
|
32
|
+
extern std::vector<largepp::Pattern> DFS;
|
|
27
33
|
|
|
28
34
|
} // namespace largepp
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <time.h>
|
|
3
|
+
#include <string.h>
|
|
4
|
+
#include <string>
|
|
5
|
+
#include "load_inst.hpp"
|
|
6
|
+
#include "freq_miner.hpp"
|
|
7
|
+
#include "utility.hpp"
|
|
8
|
+
|
|
9
|
+
namespace largepp // ← BEGIN namespacing
|
|
10
|
+
{
|
|
11
|
+
using namespace std;
|
|
12
|
+
|
|
13
|
+
string out_file;
|
|
14
|
+
|
|
15
|
+
bool b_disp = 0, b_write = 0, use_dic = 0, just_build = 0, ovr_count = 0, pre_pro = 0;
|
|
16
|
+
|
|
17
|
+
unsigned int time_limit = 10 * 3600;
|
|
18
|
+
|
|
19
|
+
clock_t start_time;
|
|
20
|
+
|
|
21
|
+
int main(int argc, char* argv[]) {
|
|
22
|
+
|
|
23
|
+
double thresh = 0;
|
|
24
|
+
string VV, folder;
|
|
25
|
+
for (int i = 1; i < argc; ++i){
|
|
26
|
+
if (argv[i][0] !='-')
|
|
27
|
+
continue;
|
|
28
|
+
else if (strcmp(argv[i], "-thr") == 0)
|
|
29
|
+
thresh = stof(argv[i + 1]);
|
|
30
|
+
else if (strcmp(argv[i], "-file") == 0)
|
|
31
|
+
VV = argv[i + 1];
|
|
32
|
+
else if (strcmp(argv[i], "-folder") == 0)
|
|
33
|
+
folder = argv[i + 1];
|
|
34
|
+
else if (strcmp(argv[i], "-time") == 0)
|
|
35
|
+
time_limit = stoi(argv[i + 1]);
|
|
36
|
+
else if (strcmp(argv[i], "-jbuild") == 0)
|
|
37
|
+
just_build = 1;
|
|
38
|
+
else if (strcmp(argv[i], "-npre") == 0)
|
|
39
|
+
pre_pro = 0;
|
|
40
|
+
else if (strcmp(argv[i], "-ovrc") == 0)
|
|
41
|
+
ovr_count = 1;
|
|
42
|
+
else if (strcmp(argv[i], "-dic") == 0)
|
|
43
|
+
use_dic = 1;
|
|
44
|
+
else if (strcmp(argv[i], "-out") == 0){
|
|
45
|
+
if (i + 1 == argc || argv[i + 1][0] == '-')
|
|
46
|
+
b_disp = 1;
|
|
47
|
+
else if (argv[i + 1][0] == '+') {
|
|
48
|
+
b_disp = 1;
|
|
49
|
+
b_write = 1;
|
|
50
|
+
out_file = argv[i + 1];
|
|
51
|
+
out_file = out_file.substr(1,out_file.size()-1);
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
b_write = 1;
|
|
55
|
+
out_file = argv[i + 1];
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
else
|
|
59
|
+
cout << "Command " << argv[i] << " not recognized and skipped.\n";
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (thresh == 0){
|
|
63
|
+
cout << "No Threshold given, using threshold deafult of 1%\n";
|
|
64
|
+
thresh = 0.01;
|
|
65
|
+
}
|
|
66
|
+
if (folder.back() != '/'){
|
|
67
|
+
folder += '/';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
cout << "\n********************** " << VV << "**********************\n";
|
|
72
|
+
|
|
73
|
+
string item_file = folder + VV + ".txt";
|
|
74
|
+
//out_file = folder + VV + "_result.txt";
|
|
75
|
+
cout << "loading instances...\n";
|
|
76
|
+
|
|
77
|
+
start_time = clock();
|
|
78
|
+
|
|
79
|
+
if(!Load_instance(item_file, thresh)){
|
|
80
|
+
cout << "Files invalid, exiting.\n";
|
|
81
|
+
return 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
cout << "Instances loaded\n";
|
|
85
|
+
|
|
86
|
+
if (!just_build && give_time(clock() - start_time) < time_limit) {
|
|
87
|
+
cout << "\nRunning mining algorithm...\n";
|
|
88
|
+
Freq_miner();
|
|
89
|
+
if (give_time(clock() - start_time) >= time_limit)
|
|
90
|
+
cout << "TIME LIMIT REACHED\n";
|
|
91
|
+
cout << "Mining Complete\n\nFound a total of " << num_patt << " patterns\n";
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
cout << "Total CPU time is: ";
|
|
95
|
+
cout << give_time(clock() - start_time) << "\n";
|
|
96
|
+
|
|
97
|
+
if (b_write){
|
|
98
|
+
ofstream file;
|
|
99
|
+
file.open(out_file, std::ios::app);
|
|
100
|
+
file << "\nMining completed in " << give_time(clock() - start_time) << " seconds\n";
|
|
101
|
+
//file << "Found a total of " << num_max_patt << " maximal patterns\n";
|
|
102
|
+
file.close();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
return 0;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#pragma once
|
|
2
|
+
#include <vector>
|
|
3
|
+
|
|
4
|
+
namespace largepp {
|
|
5
|
+
|
|
6
|
+
class Pattern {
|
|
7
|
+
public:
|
|
8
|
+
std::vector<int> seq;
|
|
9
|
+
std::vector<unsigned int> str_pnt;
|
|
10
|
+
std::vector<unsigned long long> seq_ID;
|
|
11
|
+
|
|
12
|
+
std::vector<int> slist;
|
|
13
|
+
std::vector<int> ilist;
|
|
14
|
+
|
|
15
|
+
unsigned long long freq;
|
|
16
|
+
|
|
17
|
+
Pattern() : freq(0) {}
|
|
18
|
+
|
|
19
|
+
explicit Pattern(int item) : freq(0) {
|
|
20
|
+
seq.push_back(item);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
Pattern(std::vector<int>& _seq, int item) : freq(0) {
|
|
24
|
+
seq.reserve(_seq.size() + 1);
|
|
25
|
+
for (int i = 0; i < static_cast<int>(_seq.size()); ++i)
|
|
26
|
+
seq.push_back(_seq[i]);
|
|
27
|
+
seq.push_back(item);
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
} // namespace largepp
|
effspm/load_inst.cpp
CHANGED
|
@@ -25,8 +25,8 @@ bool Load_instance(string &items_file, double thresh) {
|
|
|
25
25
|
if (pre_pro) {
|
|
26
26
|
if(!Preprocess(items_file, thresh))
|
|
27
27
|
return 0;
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
if (b_disp)
|
|
29
|
+
cout << "\nPreprocess done in " << give_time(clock() - kk) << " seconds\n\n";
|
|
30
30
|
|
|
31
31
|
DFS.reserve(L);
|
|
32
32
|
for (int i = 0; i < L; ++i)
|
|
@@ -48,10 +48,10 @@ bool Load_instance(string &items_file, double thresh) {
|
|
|
48
48
|
else
|
|
49
49
|
theta = thresh;
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
51
|
+
if (b_disp)
|
|
52
|
+
cout << "\nMDD Database built in " << give_time(clock() - kk) << " seconds\n\n";
|
|
53
|
+
if (b_disp)
|
|
54
|
+
cout << "Found " << N << " sequence, with max line len " << M << ", and " << L << " items, and " << E << " enteries\n";
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
return 1;
|
|
@@ -108,8 +108,8 @@ bool Preprocess(string &inst, double thresh) {
|
|
|
108
108
|
if (freq[i] >= theta)
|
|
109
109
|
item_dic[i] = ++real_L;
|
|
110
110
|
}
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
if (b_disp)
|
|
112
|
+
cout << "Original number of items: " << L << " Reduced to: " << real_L << endl;
|
|
113
113
|
|
|
114
114
|
L = real_L;
|
|
115
115
|
N = 0;
|
effspm/load_inst.hpp
CHANGED
|
@@ -11,7 +11,7 @@ using namespace std;
|
|
|
11
11
|
|
|
12
12
|
// ------------------------------------------------------------
|
|
13
13
|
// forward declare Pattern (defined in freq_miner.hpp)
|
|
14
|
-
|
|
14
|
+
struct Pattern;
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
// Main entrypoint: load your file on disk into 'items', build DFS, theta, etc.
|
effspm/main.cpp
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
#include <iostream>
|
|
2
|
+
#include <time.h>
|
|
3
|
+
#include <string.h>
|
|
4
|
+
#include <string>
|
|
5
|
+
#include "load_inst.hpp"
|
|
6
|
+
#include "freq_miner.hpp"
|
|
7
|
+
#include "utility.hpp"
|
|
8
|
+
|
|
9
|
+
using namespace std;
|
|
10
|
+
|
|
11
|
+
string out_file;
|
|
12
|
+
|
|
13
|
+
bool b_disp = 0, b_write = 0, use_dic = 0, use_list = 0, pre_pro = 0;
|
|
14
|
+
|
|
15
|
+
unsigned int time_limit = 10 * 3600;
|
|
16
|
+
|
|
17
|
+
clock_t start_time;
|
|
18
|
+
|
|
19
|
+
int main(int argc, char* argv[]) {
|
|
20
|
+
|
|
21
|
+
double thresh = 0;
|
|
22
|
+
string VV, folder;
|
|
23
|
+
for (int i = 1; i < argc; ++i){
|
|
24
|
+
if (argv[i][0] !='-')
|
|
25
|
+
continue;
|
|
26
|
+
else if (strcmp(argv[i], "-thr") == 0)
|
|
27
|
+
thresh = stof(argv[i + 1]);
|
|
28
|
+
else if (strcmp(argv[i], "-file") == 0)
|
|
29
|
+
VV = argv[i + 1];
|
|
30
|
+
else if (strcmp(argv[i], "-folder") == 0)
|
|
31
|
+
folder = argv[i + 1];
|
|
32
|
+
else if (strcmp(argv[i], "-time") == 0)
|
|
33
|
+
time_limit = stoi(argv[i + 1]);
|
|
34
|
+
else if (strcmp(argv[i], "-uselist") == 0)
|
|
35
|
+
use_list = 1;
|
|
36
|
+
else if (strcmp(argv[i], "-preproc") == 0)
|
|
37
|
+
pre_pro = 1;
|
|
38
|
+
else if (strcmp(argv[i], "-dic") == 0)
|
|
39
|
+
use_dic = 1;
|
|
40
|
+
else if (strcmp(argv[i], "-out") == 0){
|
|
41
|
+
if (i + 1 == argc || argv[i + 1][0] == '-')
|
|
42
|
+
b_disp = 1;
|
|
43
|
+
else if (argv[i + 1][0] == '+') {
|
|
44
|
+
b_disp = 1;
|
|
45
|
+
b_write = 1;
|
|
46
|
+
out_file = argv[i + 1];
|
|
47
|
+
out_file = out_file.substr(1,out_file.size()-1);
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
b_write = 1;
|
|
51
|
+
out_file = argv[i + 1];
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
else
|
|
55
|
+
cout << "Command " << argv[i] << " not recognized and skipped.\n";
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (thresh == 0){
|
|
59
|
+
cout << "No Threshold given, using threshold deafult of 1%\n";
|
|
60
|
+
thresh = 0.01;
|
|
61
|
+
}
|
|
62
|
+
if (folder.back() != '/'){
|
|
63
|
+
folder += '/';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
cout << "\n********************** " << VV << "**********************\n";
|
|
68
|
+
|
|
69
|
+
string item_file = folder + VV + ".txt";
|
|
70
|
+
//out_file = folder + VV + "_result.txt";
|
|
71
|
+
cout << "loading instances...\n";
|
|
72
|
+
|
|
73
|
+
start_time = clock();
|
|
74
|
+
|
|
75
|
+
if(!Load_instance(item_file, thresh)){
|
|
76
|
+
cout << "Files invalid, exiting.\n";
|
|
77
|
+
return 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
cout << "Instances loaded\n";
|
|
81
|
+
|
|
82
|
+
if (give_time(clock() - start_time) < time_limit) {
|
|
83
|
+
cout << "\nRunning mining algorithm...\n";
|
|
84
|
+
Freq_miner();
|
|
85
|
+
if (give_time(clock() - start_time) >= time_limit)
|
|
86
|
+
cout << "TIME LIMIT REACHED\n";
|
|
87
|
+
cout << "Mining Complete\n\nFound a total of " << num_patt << " patterns\n";
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
cout << "Total CPU time is: ";
|
|
91
|
+
cout << give_time(clock() - start_time) << "\n";
|
|
92
|
+
|
|
93
|
+
if (b_write){
|
|
94
|
+
ofstream file;
|
|
95
|
+
file.open(out_file, std::ios::app);
|
|
96
|
+
file << "\nMining completed in " << give_time(clock() - start_time) << " seconds\n";
|
|
97
|
+
//file << "Found a total of " << num_max_patt << " maximal patterns\n";
|
|
98
|
+
file.close();
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
return 0;
|
|
103
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
effspm/__init__.py,sha256=SRhZaFwKFWVneO_TCS9_ld5akH3rq3XtHcinJlAvjPw,257
|
|
2
|
+
effspm/_core.cpp,sha256=JzUCIVmmDMVfRIjIsmXtVkSMkRMprE3wpOrx-jYhAQU,3781
|
|
3
|
+
effspm/_effspm.cp39-win_amd64.pyd,sha256=5nSqKqetsCZrQ02dx1RaK7xAt2eYTPeCyXn2drZjYDc,384000
|
|
4
|
+
effspm/_effspm.cpp,sha256=uKk-aYHRClqqrI0H2NPX-HCahK-vu_fkJenY5ZhSiLI,52386
|
|
5
|
+
effspm/freq_miner.cpp,sha256=qQDFPoPKY3ICaH2brm1CUKwNBhCy0-0dUWEoV_3FwME,4785
|
|
6
|
+
effspm/freq_miner.hpp,sha256=Ni4ayFci6zPnpwbLBQ6FU5MSvLjgn6jk2_GQ45HHtgo,835
|
|
7
|
+
effspm/load_inst.cpp,sha256=RxqvG3e2fIuIdhejORboISTC38sYR7vtGinGxRbtukQ,4843
|
|
8
|
+
effspm/load_inst.hpp,sha256=S8NvO3KCU6dGcDX8a24SE6uhD1cSAL0jCo0XYFnrwKE,938
|
|
9
|
+
effspm/main.cpp,sha256=CbH7oZ1BKKpmqUXSqazxRlkqHgi0KEMT-mQwbHZ3Av4,2661
|
|
10
|
+
effspm/utility.cpp,sha256=OD5K0K0jQKgqVGJm91pSofImXOEVkDnqQvFh1qytvpA,1458
|
|
11
|
+
effspm/utility.hpp,sha256=hECSm-ORd20QJMundbOLkZvo9nj-I2pXd5AokagyGqQ,773
|
|
12
|
+
effspm/btminer/src/build_mdd.cpp,sha256=t4Exn5vJTekl5nyRg77p898pwjC9NxECAgL4DKgwpR4,2297
|
|
13
|
+
effspm/btminer/src/build_mdd.hpp,sha256=3HDZdQ8k_sJR9UNPvO-48mdnjJGfFaE0vorp86DsQIU,661
|
|
14
|
+
effspm/btminer/src/freq_miner.cpp,sha256=GjttxpUpJpvKugXcKJ2utKG6IeZKVEyiv2RI-nE9jM0,9456
|
|
15
|
+
effspm/btminer/src/freq_miner.hpp,sha256=REbDhYzn7PG1XKjLqaMnk_PzUwwCQKiBGD0DPx3DBI4,1110
|
|
16
|
+
effspm/btminer/src/load_inst.cpp,sha256=j4oZN7mJvwquoDtQ2dXzkksDsz9-EHdvAUTkH5dZ45c,8651
|
|
17
|
+
effspm/btminer/src/load_inst.hpp,sha256=n47RjtvkBuBSb5OLxSuqvUQpPFd7ukMQTD0AIHiYIfw,1030
|
|
18
|
+
effspm/btminer/src/main.cpp,sha256=vfxRTArsjo0sgHaLazs7IHzWhbMAGeATcg4b4TSnTnA,2761
|
|
19
|
+
effspm/btminer/src/utility.cpp,sha256=5at1rTDLS3Jw90tENm0V3W1fEc7q_HhtIG6TyrKYKgg,1244
|
|
20
|
+
effspm/btminer/src/utility.hpp,sha256=ite_7AY33HJKZiFRENhQ3xjNmak5yKy_hE8Ku6-9q2Y,328
|
|
21
|
+
effspm/htminer/src/build_mdd.cpp,sha256=Tvqg9BuKRjTLhMiz-EebX_8_QyW0PbzF82A9IMJDtMc,4025
|
|
22
|
+
effspm/htminer/src/build_mdd.hpp,sha256=zvFhnBniosumIG_rJdgQk-j4U5aLHs3NN_4X1DF7fh8,1223
|
|
23
|
+
effspm/htminer/src/freq_miner.cpp,sha256=odYP3TyLGkLrM42us3S3mEixK6FI-s3g7d1rTU8wHLU,14422
|
|
24
|
+
effspm/htminer/src/freq_miner.hpp,sha256=wNrqMW6m_NZwcFaatqOIuALW_rh8ntp0bxsT-MPP_cM,1049
|
|
25
|
+
effspm/htminer/src/load_inst.cpp,sha256=dRJNSUgUqaicT4eoNCSq4omsWsAY2Q4MNo3uDwWjxyw,10290
|
|
26
|
+
effspm/htminer/src/load_inst.hpp,sha256=-Aaj34a8QIrKI9fnlQJDhfIZSkSlq1LqkLZHRQpiyjA,847
|
|
27
|
+
effspm/htminer/src/main.cpp,sha256=Cq1frpRZH-Et2Ahr2pE-7BBbS90Dt5ECluf9mG9ceEU,2303
|
|
28
|
+
effspm/htminer/src/utility.cpp,sha256=gE4JWPMHzzZQ4xSYnExsU1C793fcV9_nuR9kiItQi9I,1306
|
|
29
|
+
effspm/htminer/src/utility.hpp,sha256=Y_vrZzo5k1DjcBf3_TKn_5bRIAIaDW2tQtDSMSi_dT8,492
|
|
30
|
+
effspm/largebm/src/build_mdd.cpp,sha256=7rFfsKMsmVPWpeawgAKhIT1g7IFJDAGND8Ru7E4nnFg,2680
|
|
31
|
+
effspm/largebm/src/build_mdd.hpp,sha256=ie7EYt7Cu8-04-f4QRrboVyxjstor1OB3V6eGAtBQiA,891
|
|
32
|
+
effspm/largebm/src/freq_miner.cpp,sha256=A6DcQRHJoJECbQPLeGpXmQhZtMQdZ8fOcvxlmJxJdRQ,11212
|
|
33
|
+
effspm/largebm/src/freq_miner.hpp,sha256=EaU1SL3K4ZB_7CFhCIv8pS5UkefqGWzr9iTjrDd23XY,911
|
|
34
|
+
effspm/largebm/src/load_inst.cpp,sha256=_Ym6viWbn6XyE8Mo1kMWujj7ud40egkw2M_eMY9lViE,7044
|
|
35
|
+
effspm/largebm/src/load_inst.hpp,sha256=ujfHWuK2W2ptQ8Pal2Z9ZEkwfImbSlZCspdHAg0BsJA,1193
|
|
36
|
+
effspm/largebm/src/main.cpp,sha256=llo0mmqmHdeige42NkhiDRjAzgbDMzfBfS3K9_5ksFU,2177
|
|
37
|
+
effspm/largebm/src/utility.cpp,sha256=QfgLD5mss5FIWgWwPzIEPNzTIzEnTTYBzkznYrcGz-M,1084
|
|
38
|
+
effspm/largebm/src/utility.hpp,sha256=CZ70tPKMA5qZnqLGTRdgaqfdWzBb1Gfrc7rKniLOHAo,428
|
|
39
|
+
effspm/largehm/src/build_mdd.cpp,sha256=TzpYNJECnq4No8np-L_ua82iJFAYBOsG0wPnq2gUjOM,4583
|
|
40
|
+
effspm/largehm/src/build_mdd.hpp,sha256=cvjxmNKfZcdR82gAq7Fr_mCnebkbXsPGxKrYd199joM,1353
|
|
41
|
+
effspm/largehm/src/freq_miner.cpp,sha256=Rx9Mb1jrTd_shUD2m5ahY2J_XeU4mO_TXxkNnXORKco,14441
|
|
42
|
+
effspm/largehm/src/freq_miner.hpp,sha256=dQf4GXdLxbBlYOB-TjAjn-PZJ0twTB_leEEAj-yCzqU,951
|
|
43
|
+
effspm/largehm/src/load_inst.cpp,sha256=oPL_7gQ1RSW0iA7NupS3Lp9kcwgTFzESfhqs788Dx3g,8628
|
|
44
|
+
effspm/largehm/src/load_inst.hpp,sha256=Ky9BGmtIZj_Fyisi3t51fWpLFIAY2K01jS4rSH6UBJM,527
|
|
45
|
+
effspm/largehm/src/main.cpp,sha256=8ZQMPBCqbdSfTnip67IVk0iUVLpvIcxP2x8QJw0SdDM,2237
|
|
46
|
+
effspm/largehm/src/utility.cpp,sha256=zCf-DQUGBJRpnNE-Tx9RgqrrBk8jXZezKb5hW0dhBPA,1551
|
|
47
|
+
effspm/largehm/src/utility.hpp,sha256=q_9R_wmF78bW1AXPnJ_XgqzFyqYxainGTj23ZRctBTI,747
|
|
48
|
+
effspm/largepp/src/freq_miner.cpp,sha256=wep14Yt0ld_Y76LG1fwYw0zvoB3Vd29enx8GwOQBwDA,7432
|
|
49
|
+
effspm/largepp/src/freq_miner.hpp,sha256=achRvRSVUloeeAbRVhPK0M05pnf4DxSdYTBV8YvOz7w,417
|
|
50
|
+
effspm/largepp/src/load_inst.cpp,sha256=VKnrp5ua-Z7JC_53qQn35et6cCCWho4Ge_MHOt_Mfdg,8346
|
|
51
|
+
effspm/largepp/src/load_inst.hpp,sha256=fDvtWFTiHTIpjA-5n62OAbcS3cFP8XQ_rK1TlVhdpgw,941
|
|
52
|
+
effspm/largepp/src/main.cpp,sha256=uM1zwBC4w4fLC-8rtcATtqyTNGTak3PQ_ztXicxDeRQ,2803
|
|
53
|
+
effspm/largepp/src/pattern.hpp,sha256=UNaO53pDLnEoN5Vdyka4Dg9dFrt7ANH51oRXgdpiarA,670
|
|
54
|
+
effspm/largepp/src/utility.cpp,sha256=YzdLehjqe2arQCiAdkdLUZODLYooy_gWltJGhBAHtyc,988
|
|
55
|
+
effspm/largepp/src/utility.hpp,sha256=6zYJWHSqUL3deyvvNqfKQxabtLtRS5Kh52No5zZ78VQ,757
|
|
56
|
+
effspm-0.3.3.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
57
|
+
effspm-0.3.3.dist-info/METADATA,sha256=-8NyIXTGm8q8ojkGtJlyKm6fTe57hrgPpKMEIPNidzg,14464
|
|
58
|
+
effspm-0.3.3.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
|
|
59
|
+
effspm-0.3.3.dist-info/top_level.txt,sha256=2O-AuI0nw0pDmJMo2jzM1wvV2rj48AmkjskkAnsuuQk,7
|
|
60
|
+
effspm-0.3.3.dist-info/RECORD,,
|
effspm-0.2.7.dist-info/RECORD
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
effspm/__init__.py,sha256=SRhZaFwKFWVneO_TCS9_ld5akH3rq3XtHcinJlAvjPw,257
|
|
2
|
-
effspm/_core.cpp,sha256=JzUCIVmmDMVfRIjIsmXtVkSMkRMprE3wpOrx-jYhAQU,3781
|
|
3
|
-
effspm/_effspm.cp39-win_amd64.pyd,sha256=W3qsLNp2CtYHrDBSzHf3SSc0ZjkAQXNdH6sIIoPbjS4,387072
|
|
4
|
-
effspm/_effspm.cpp,sha256=llu3ixkkxpJGp6QG3kYeiNES0GXP4g7lc1aVzmiflno,24655
|
|
5
|
-
effspm/freq_miner.cpp,sha256=qQDFPoPKY3ICaH2brm1CUKwNBhCy0-0dUWEoV_3FwME,4785
|
|
6
|
-
effspm/freq_miner.hpp,sha256=4ajoxis6TQl3uZxx4Zpr-sAR3e3cNB2Wlq3sQlLD1xM,841
|
|
7
|
-
effspm/load_inst.cpp,sha256=kTEucQ5YU7xPdRjcM9ixAPk49cLJ8H8YN9gJsTrm7mM,4769
|
|
8
|
-
effspm/load_inst.hpp,sha256=fSTQccExQPvLNy5GiGhtqxP4RV0HGYR0VBHc-7ZseAE,937
|
|
9
|
-
effspm/utility.cpp,sha256=OD5K0K0jQKgqVGJm91pSofImXOEVkDnqQvFh1qytvpA,1458
|
|
10
|
-
effspm/utility.hpp,sha256=hECSm-ORd20QJMundbOLkZvo9nj-I2pXd5AokagyGqQ,773
|
|
11
|
-
effspm/btminer/src/build_mdd.cpp,sha256=uDN0SCR86q-zJ4LoqcL3l0cFe8HTmM30-q1U_MLUlzc,1790
|
|
12
|
-
effspm/btminer/src/build_mdd.hpp,sha256=l2NJ2Wxgcm5vSs9DRlFzvCKYMjimOb-FAV4CwWHu2h8,606
|
|
13
|
-
effspm/btminer/src/freq_miner.cpp,sha256=MjxgFvUgTAeV9fmEOtqPluOd2brS-sLO70l2F4ptTOw,6736
|
|
14
|
-
effspm/btminer/src/freq_miner.hpp,sha256=0SoNEFdRYKVy13YWjtRb65816nY8Ro7ONzNpeNZgfEg,665
|
|
15
|
-
effspm/btminer/src/load_inst.cpp,sha256=EEFqMeMctdok4l1w6ZgjR75cq1jWN8VqDbT6wX8idZk,5559
|
|
16
|
-
effspm/btminer/src/load_inst.hpp,sha256=UM778fTixcQwhvJjEpEfPkMpRBmCyjpQ32C85EgHZBA,487
|
|
17
|
-
effspm/btminer/src/utility.cpp,sha256=21O6dLkmV9bipGhxHCQM2goCLmmnVXCG6riJj3X-7rM,2177
|
|
18
|
-
effspm/btminer/src/utility.hpp,sha256=NX3HK8mVo1HTHRIErVHZdoLJY91I4uC0t56QSpuAIDI,977
|
|
19
|
-
effspm/htminer/src/build_mdd.cpp,sha256=85mx2W-ERs6-3aTrXuWlYIgCYvuLdZMyJZVASShop8Q,9063
|
|
20
|
-
effspm/htminer/src/build_mdd.hpp,sha256=h-Tp4Qeg1drRQkYqJ0cm33XUPT4yV4e-IYdifgPK1jk,1392
|
|
21
|
-
effspm/htminer/src/freq_miner.cpp,sha256=GzjM4V61nxp9Qtlx9mi8qSAfjNuvOXs0PNAkZBw3XYc,10940
|
|
22
|
-
effspm/htminer/src/freq_miner.hpp,sha256=dOR9wXwMBhnK3yHat6r_8WuehcgPTewb_XCUVM-JTNU,825
|
|
23
|
-
effspm/htminer/src/load_inst.cpp,sha256=jJhijLbsC3mGFH6fSBVXo3fkvKbZouL069jlv-dWbrA,11319
|
|
24
|
-
effspm/htminer/src/load_inst.hpp,sha256=mKC4b0Ji6-WDNP82jcvIi6X4PEVgjmyCp5BSj9VngiE,477
|
|
25
|
-
effspm/htminer/src/utility.cpp,sha256=uVvXQqyeVjJXcdLj8wHL1SLZh0fFda1P428_IgAGWrk,2446
|
|
26
|
-
effspm/htminer/src/utility.hpp,sha256=-tNvJdj6Poz0Vd_em0SYllBR32tqMH8Hmy_SakHeUfk,3650
|
|
27
|
-
effspm/largebm/src/build_mdd.cpp,sha256=lSnce2pSWz4K873olcqgOfbhmjlBkG9yCCmwwDEiozI,5085
|
|
28
|
-
effspm/largebm/src/build_mdd.hpp,sha256=YJE0iAP4DOCfruktdTUW20gCjEyF8SSEyPEuDk_diYQ,682
|
|
29
|
-
effspm/largebm/src/freq_miner.cpp,sha256=MupB78nU0CyBMQ-ehstDrPqlSsWTIih6C_FlJeu3_Zc,13945
|
|
30
|
-
effspm/largebm/src/freq_miner.hpp,sha256=6QmFOGWI4e-0vxPftPIgQ3UlGlJcFCITM6pb5TLSrYU,940
|
|
31
|
-
effspm/largebm/src/load_inst.cpp,sha256=_gol8H-k-Ny7cNvpTq9QuLTfyPRk7lQyLWSAL_F00A0,7569
|
|
32
|
-
effspm/largebm/src/load_inst.hpp,sha256=wK91wbovFKOiR8tykVvuw5NIygf_FWldqLZemvgrBYk,1925
|
|
33
|
-
effspm/largebm/src/utility.cpp,sha256=luZ13z0V9qm_EAeN6XMRRhkAMON09RWB1OJ4dkj70HY,1212
|
|
34
|
-
effspm/largebm/src/utility.hpp,sha256=LgvJUOzIaI5RZRuGoPAlYRa3MJOOdoeyjBcuzqk5w8M,367
|
|
35
|
-
effspm/largehm/src/build_mdd.cpp,sha256=lev0YbLDfOzVAIJai0MOwtPYBVPJV9DGwU-QaLH_qDY,6090
|
|
36
|
-
effspm/largehm/src/build_mdd.hpp,sha256=HnBzd82X4C-DMoPa7A8vP0_9TxX23_RQ_qm8GkJ-h38,2880
|
|
37
|
-
effspm/largehm/src/freq_miner.cpp,sha256=RRVJkO1AMuFBeI1zRdD1k7ivze3KUaTdYUnz-1exW1w,16733
|
|
38
|
-
effspm/largehm/src/freq_miner.hpp,sha256=w-IhZj-k_z3__dikNwvNseapZ1fTAXrFgnPv7o3nzG4,2428
|
|
39
|
-
effspm/largehm/src/load_inst.cpp,sha256=e6cYzPV_3ca9fLGtFacZ4XZ-4-AltphEcGmuWybOAj0,10620
|
|
40
|
-
effspm/largehm/src/load_inst.hpp,sha256=7pFao_lo0fRvK1Hn_1nDXvmYleirI153992J7uZKNM0,1692
|
|
41
|
-
effspm/largehm/src/utility.cpp,sha256=jmlLXjOSIFl9p5LWNSmFUuTk6kFXei08xh0qHJNVZ9c,997
|
|
42
|
-
effspm/largehm/src/utility.hpp,sha256=F7qvWtZVqzz9VEBvduouG8pvt5ZHreAtGtXkCWgiafY,720
|
|
43
|
-
effspm/largepp/src/freq_miner.cpp,sha256=n0AIGCt1ogPLPYbBIJ7fdp5bPMawbFqyQ15hAfN23Ko,4130
|
|
44
|
-
effspm/largepp/src/freq_miner.hpp,sha256=2XzJZmU1qoGJdCJoHKlmYt2zhsMH68apWP3_MHoAwJM,720
|
|
45
|
-
effspm/largepp/src/load_inst.cpp,sha256=4N0SzvmrCfFUg15z6phfOrwbpsAx9icRyZ1lgwWm6hI,7018
|
|
46
|
-
effspm/largepp/src/load_inst.hpp,sha256=m9QFDxJAHRiH0p742o580dFqD5UGgyROwaeQVp5q9ZU,1014
|
|
47
|
-
effspm/largepp/src/utility.cpp,sha256=YzdLehjqe2arQCiAdkdLUZODLYooy_gWltJGhBAHtyc,988
|
|
48
|
-
effspm/largepp/src/utility.hpp,sha256=6zYJWHSqUL3deyvvNqfKQxabtLtRS5Kh52No5zZ78VQ,757
|
|
49
|
-
effspm-0.2.7.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
50
|
-
effspm-0.2.7.dist-info/METADATA,sha256=d-hx-Nv2kkMcMXhIsFByNOmEPTUdMbJGA0wByXkqQDw,14464
|
|
51
|
-
effspm-0.2.7.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
|
|
52
|
-
effspm-0.2.7.dist-info/top_level.txt,sha256=2O-AuI0nw0pDmJMo2jzM1wvV2rj48AmkjskkAnsuuQk,7
|
|
53
|
-
effspm-0.2.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|