effspm 0.2.8__cp311-cp311-macosx_11_0_arm64.whl → 0.3.2__cp311-cp311-macosx_11_0_arm64.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.
Files changed (54) hide show
  1. effspm/_effspm.cpp +850 -210
  2. effspm/_effspm.cpython-311-darwin.so +0 -0
  3. effspm/btminer/src/build_mdd.cpp +42 -17
  4. effspm/btminer/src/build_mdd.hpp +13 -19
  5. effspm/btminer/src/freq_miner.cpp +134 -49
  6. effspm/btminer/src/freq_miner.hpp +16 -0
  7. effspm/btminer/src/load_inst.cpp +202 -126
  8. effspm/btminer/src/load_inst.hpp +22 -4
  9. effspm/btminer/src/main.cpp +83 -0
  10. effspm/btminer/src/utility.cpp +26 -41
  11. effspm/btminer/src/utility.hpp +6 -30
  12. effspm/freq_miner.hpp +2 -1
  13. effspm/htminer/src/build_mdd.cpp +46 -124
  14. effspm/htminer/src/build_mdd.hpp +56 -49
  15. effspm/htminer/src/freq_miner.cpp +341 -307
  16. effspm/htminer/src/freq_miner.hpp +39 -40
  17. effspm/htminer/src/load_inst.cpp +287 -336
  18. effspm/htminer/src/load_inst.hpp +23 -6
  19. effspm/htminer/src/main.cpp +97 -0
  20. effspm/htminer/src/utility.cpp +38 -57
  21. effspm/htminer/src/utility.hpp +9 -64
  22. effspm/largebm/src/build_mdd.cpp +69 -110
  23. effspm/largebm/src/build_mdd.hpp +22 -37
  24. effspm/largebm/src/freq_miner.cpp +241 -291
  25. effspm/largebm/src/freq_miner.hpp +25 -36
  26. effspm/largebm/src/load_inst.cpp +20 -26
  27. effspm/largebm/src/load_inst.hpp +24 -34
  28. effspm/largebm/src/main.cpp +95 -0
  29. effspm/largebm/src/utility.cpp +11 -21
  30. effspm/largebm/src/utility.hpp +7 -10
  31. effspm/largehm/src/build_mdd.cpp +75 -110
  32. effspm/largehm/src/build_mdd.hpp +53 -73
  33. effspm/largehm/src/freq_miner.cpp +134 -191
  34. effspm/largehm/src/freq_miner.hpp +37 -60
  35. effspm/largehm/src/load_inst.cpp +137 -174
  36. effspm/largehm/src/load_inst.hpp +13 -50
  37. effspm/largehm/src/main.cpp +95 -0
  38. effspm/largehm/src/utility.cpp +46 -28
  39. effspm/largehm/src/utility.hpp +18 -16
  40. effspm/largepp/src/freq_miner.cpp +184 -156
  41. effspm/largepp/src/freq_miner.hpp +11 -36
  42. effspm/largepp/src/load_inst.cpp +32 -12
  43. effspm/largepp/src/load_inst.hpp +15 -9
  44. effspm/largepp/src/main.cpp +108 -0
  45. effspm/largepp/src/pattern.hpp +31 -0
  46. effspm/load_inst.cpp +8 -8
  47. effspm/load_inst.hpp +1 -1
  48. effspm/main.cpp +103 -0
  49. {effspm-0.2.8.dist-info → effspm-0.3.2.dist-info}/METADATA +1 -1
  50. effspm-0.3.2.dist-info/RECORD +60 -0
  51. effspm-0.2.8.dist-info/RECORD +0 -53
  52. {effspm-0.2.8.dist-info → effspm-0.3.2.dist-info}/WHEEL +0 -0
  53. {effspm-0.2.8.dist-info → effspm-0.3.2.dist-info}/licenses/LICENSE +0 -0
  54. {effspm-0.2.8.dist-info → effspm-0.3.2.dist-info}/top_level.txt +0 -0
@@ -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
- // ───── public entry points ───────────────────────────────────────
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
- // ───── shared state (defined once in load_inst.cpp) ──────────────
17
- extern vector<vector<int>> items; // encoded database
18
- extern string out_file;
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; // # sequences
24
- extern double theta; // support threshold
25
- extern unsigned long long E; // total entries
26
- extern clock_t start_time;
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
- cout << "\nPreprocess done in " << give_time(clock() - kk) << " seconds\n\n";
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
- cout << "\nMDD Database built in " << give_time(clock() - kk) << " seconds\n\n";
53
-
54
- cout << "Found " << N << " sequence, with max line len " << M << ", and " << L << " items, and " << E << " enteries\n";
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
- cout << "Original number of items: " << L << " Reduced to: " << real_L << endl;
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
- class Pattern;
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
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: effspm
3
- Version: 0.2.8
3
+ Version: 0.3.2
4
4
  Summary: Prefix‑Projection and other sequential pattern mining algorithms
5
5
  Author: Yeswanth Vootla
6
6
  Author-email: yeshu999 <vootlayeswanth20@gmail.com>
@@ -0,0 +1,60 @@
1
+ effspm/utility.hpp,sha256=Y_MQVk9AmJWjguKyuyk0LraTi_6VzZFg0StsmVOCkNc,744
2
+ effspm/_effspm.cpython-311-darwin.so,sha256=-0VqxdA8qW7GB5cEvAnkXxaFgcIzUdl-jqlOyszeb9o,563792
3
+ effspm/_core.cpp,sha256=S6UsUcl0HQLMQUTy2tMJxcrbLGJo8tjkLskyHqESYyI,3675
4
+ effspm/load_inst.hpp,sha256=VF0o_Ur-mO5xhdWWn1KHrFLu9_bTbd8wcURCVF0A0dM,907
5
+ effspm/__init__.py,sha256=_BkZ8cFlB_l1haxTzxJMgFHhO6LEmF3pIY-nmPTPMj8,246
6
+ effspm/freq_miner.cpp,sha256=9K-nO_c-vVzbFlmh511vmvypA2fu1TXpiJhyx03owDU,4642
7
+ effspm/_effspm.cpp,sha256=JC4CPqjV4nyyHRv7EhQPQvXOb7Pj0Ge8Prxo0WCsCAg,47255
8
+ effspm/load_inst.cpp,sha256=h9pjtvRCIrtqIAt8W1r8SxOb1YViW1pCR52tbxbPdh0,4591
9
+ effspm/freq_miner.hpp,sha256=XDhydwUFmute6slWwZcFuiBjGZs4Kv5-UvAmcI_IMwI,786
10
+ effspm/utility.cpp,sha256=luWwBNy7OVWRmam9gz2RjhtrRmx6c37oOobFJaDWqcA,1403
11
+ effspm/main.cpp,sha256=aMyPwuTn5dPIlLAZ_XfWL8Z6cXfQS7EaJ0tEQPqpA8I,2558
12
+ effspm/htminer/src/build_mdd.cpp,sha256=TcHZ9BhY_s9A4ZiH1rs1WW8T74x8efhCaLQ0KFKaY3c,3911
13
+ effspm/htminer/src/utility.hpp,sha256=q3a9YEkk3-ZOH2lT1z8OWjg3vUNiBjIhA9rvefcsm7U,470
14
+ effspm/htminer/src/load_inst.hpp,sha256=mrADPOTlVUTIw-utqk83uYBYyy-mzJV7cCQkGS-kkj4,807
15
+ effspm/htminer/src/freq_miner.cpp,sha256=lrUPd6Oi3ZsBc5-nF0TLxcD68mmus1YLuWpCp10Qji0,14038
16
+ effspm/htminer/src/load_inst.cpp,sha256=KigZtjHOEyB7EizQ8VdmL_PRGYsODKrVo947yk1y6Wg,9945
17
+ effspm/htminer/src/freq_miner.hpp,sha256=Vclu-KuqHBiRHIwZknpgiZZMV_-zrL-6I_SJY5hQWys,990
18
+ effspm/htminer/src/build_mdd.hpp,sha256=VP7w5JYZJVddDqRwG9Cy41RMTta7WZTVuDbFqu0JEfU,1152
19
+ effspm/htminer/src/utility.cpp,sha256=PWIyHOQBnU9XM1jsgKeadzmi9KjndTFhUoAogX2lEW8,1253
20
+ effspm/htminer/src/main.cpp,sha256=AQlwQNAZPZ9usrLFgffd9GSsAK9Xc5Z7wcRtDIXYGWI,2207
21
+ effspm/largepp/src/utility.hpp,sha256=i06elLVb7qWGwkalC1t03bfuQ7c06Eu3QFt3I92FnG8,736
22
+ effspm/largepp/src/load_inst.hpp,sha256=m-gGw92sDKqnT1DjkACZjl5iGjoHHONWSdermWvPB-w,907
23
+ effspm/largepp/src/pattern.hpp,sha256=t7O8N86Hi985gR4on0e8xdyskcJ_XLh-LpqCGPFB1Z4,639
24
+ effspm/largepp/src/freq_miner.cpp,sha256=G6Kg1m-4jqeJBQELNAdn4wpdio85nhEh9RgWaTVLmkk,7234
25
+ effspm/largepp/src/load_inst.cpp,sha256=BMCsSs7xeoQdog1dKlK3szl7RtO_Pg6Dy8Smi3RhVU0,8107
26
+ effspm/largepp/src/freq_miner.hpp,sha256=JS1Kgq5Pjqnr2WnCsB7YZdXXffEHDvGnp0HJsv_y4l0,399
27
+ effspm/largepp/src/utility.cpp,sha256=Hbn49pUWCf1ixWyhiMBxXCW2a7uttkSNwc5gPgA1vqA,954
28
+ effspm/largepp/src/main.cpp,sha256=2y_xGXSHo2wyrHJh86VrD1GMDHaEDMBqvUmt5Rb03oI,2696
29
+ effspm/largehm/src/build_mdd.cpp,sha256=xlTZUdNZBy5_Ms-EfRfY-rCmjkw3My2-2FcZbnOyhCo,4444
30
+ effspm/largehm/src/utility.hpp,sha256=y3qI5dVP-hjTycrnvoGz9PRJTUUB-dqlBbYk8wlBXr4,716
31
+ effspm/largehm/src/load_inst.hpp,sha256=HV_lfjGCvDI0ZKmz7DVlNKZ_xOd-37YJOpy06O7PP-8,500
32
+ effspm/largehm/src/freq_miner.cpp,sha256=aWLVUnq_bdz3RIeQaPsNWw8qw9sdUnUaQcCw57M6AWw,14053
33
+ effspm/largehm/src/load_inst.cpp,sha256=VfUFDGrJJZS2GYecM9RCLzF6iTlq9VHbNxpiTJPn0tY,8308
34
+ effspm/largehm/src/freq_miner.hpp,sha256=PjAFrLSrhZG8cWReHsv-EJnc0HHqry0mQE-g-Lff9tQ,897
35
+ effspm/largehm/src/build_mdd.hpp,sha256=ZalJUY80miPvy0bIMRKTT4SRFnK9fxD_HD3dVksTRnQ,1280
36
+ effspm/largehm/src/utility.cpp,sha256=l0itd9GvZ_YWqwD1s-hN00j67wvbLf7k2QajK94euVk,1495
37
+ effspm/largehm/src/main.cpp,sha256=I9vYzBtok-6z_GefCWH7mCfLYtebdxZYr0LoOjEeORs,2142
38
+ effspm/largebm/src/build_mdd.cpp,sha256=laELkRB3S1gF22GSvElcRIU8fYqDw0cOij34mxmuoFM,2584
39
+ effspm/largebm/src/utility.hpp,sha256=wAOWyxrpazA8uOK82aMOXBkYsM7flbdICggGHrikOCM,413
40
+ effspm/largebm/src/load_inst.hpp,sha256=DcvCmsRh5kD2iCBKHyhDsldIwNvC17Y03EG3HXQdjv8,1158
41
+ effspm/largebm/src/freq_miner.cpp,sha256=UBeEHqUq4PuE1DxW2X6QnbZrPjWTeGPjSKusX4qwIvo,10913
42
+ effspm/largebm/src/load_inst.cpp,sha256=yOHemF_S-OhhIYfM4r2KAqq7752cdidXWun99HBnfh0,6820
43
+ effspm/largebm/src/freq_miner.hpp,sha256=wxqwP1YuukL2gp3cdOi6EFvEWqEDhv_o1P7ESmeXc3Y,874
44
+ effspm/largebm/src/build_mdd.hpp,sha256=-rUlWW2qDc5xrkxD_5_EzXpqlL5ZsX0CFGgCZTgqd_c,859
45
+ effspm/largebm/src/utility.cpp,sha256=wr8PAW_dODVIeBSDPOmcdmguj8ovAIjm7Kh2nU_fPzo,1049
46
+ effspm/largebm/src/main.cpp,sha256=fcGqsLCmnCPOyrMglSMjG8yC0QoGXdmfH6G2Jm5jycU,2083
47
+ effspm/btminer/src/build_mdd.cpp,sha256=7J5KMNNB3DngB4Bkn1h-zMfAgRvRiXP4MEkPbd3C-ZE,2209
48
+ effspm/btminer/src/utility.hpp,sha256=5m34T2ATvYY_32Sz6h0Zro4kLolosPwASJF0TiDKhhI,312
49
+ effspm/btminer/src/load_inst.hpp,sha256=Fj72XjlR7ppGi76vc0PMZZAkj_-JklTVuIqzbsZcTAw,987
50
+ effspm/btminer/src/freq_miner.cpp,sha256=sTA-bkUZqgFU9tVtSsUUfaVj7BU8MiFZm3scwRsxMeg,9192
51
+ effspm/btminer/src/load_inst.cpp,sha256=yRHso99ban7sQNe2SpZpXeNUXu0NDVNq4-rt1yZVoso,8083
52
+ effspm/btminer/src/freq_miner.hpp,sha256=sS2CGdNT0zSGtSz0evZZlUkuiKyWlSvrR3-M2YXP7-Q,1055
53
+ effspm/btminer/src/build_mdd.hpp,sha256=p0pEcNZMD-WqV0UB1WtOn-Soe0105gEL071Ht5okgJM,627
54
+ effspm/btminer/src/utility.cpp,sha256=YmwdNPCUHFjydwrUAyBLEkFqUecyg7r4HbPdgoD-j3s,1194
55
+ effspm/btminer/src/main.cpp,sha256=Jh9M5nsZUL3i-iENn7Jh--TOY0F5dnu6CvqZ7udWU3A,2678
56
+ effspm-0.3.2.dist-info/RECORD,,
57
+ effspm-0.3.2.dist-info/WHEEL,sha256=qxQkdhERtGxJzqnVOBnucx1aUmU2n3HmuzYdln_LyOw,109
58
+ effspm-0.3.2.dist-info/top_level.txt,sha256=2O-AuI0nw0pDmJMo2jzM1wvV2rj48AmkjskkAnsuuQk,7
59
+ effspm-0.3.2.dist-info/METADATA,sha256=JfNcmGZRF3qJbQKDXloeRbOHMw0R8tQNb-80p9KNjW0,14227
60
+ effspm-0.3.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
@@ -1,53 +0,0 @@
1
- effspm/utility.hpp,sha256=Y_MQVk9AmJWjguKyuyk0LraTi_6VzZFg0StsmVOCkNc,744
2
- effspm/_effspm.cpython-311-darwin.so,sha256=wXc7usLE4_Vd3xhq98ybTMA50VmLzctcRGAhJXdx9J8,567552
3
- effspm/_core.cpp,sha256=S6UsUcl0HQLMQUTy2tMJxcrbLGJo8tjkLskyHqESYyI,3675
4
- effspm/load_inst.hpp,sha256=CyLvoIMLWxcyP4RmEKvPUJ5FkZo1-FSy_eZrqjZaAd8,906
5
- effspm/__init__.py,sha256=_BkZ8cFlB_l1haxTzxJMgFHhO6LEmF3pIY-nmPTPMj8,246
6
- effspm/freq_miner.cpp,sha256=9K-nO_c-vVzbFlmh511vmvypA2fu1TXpiJhyx03owDU,4642
7
- effspm/_effspm.cpp,sha256=B6Kp5bGhrOqONnlZQpTgk8JZt41heb8g3ONzaft1QZY,24047
8
- effspm/load_inst.cpp,sha256=804fvkfdtYqFMP9Jla6dM2romWWPJmSeCwLm0wEZE5M,4517
9
- effspm/freq_miner.hpp,sha256=UH7eGk-rFerN2cJMaVMsri_iTKpjBG3rXi5aBH8ci9Q,793
10
- effspm/utility.cpp,sha256=luWwBNy7OVWRmam9gz2RjhtrRmx6c37oOobFJaDWqcA,1403
11
- effspm/htminer/src/build_mdd.cpp,sha256=3uh8NQyDgEI6UkDQ4pW7XDVdAHD_nS6Wc2mMExdI2wg,8871
12
- effspm/htminer/src/utility.hpp,sha256=737-iMuDE5Sm5GGSYnAtgO6cC5O6bFvqHEftV5dGrKM,3573
13
- effspm/htminer/src/load_inst.hpp,sha256=Cs_zpT4lM5j4sqoY1f6R0LKjkrTFMg9myGPYcDat0bE,455
14
- effspm/htminer/src/freq_miner.cpp,sha256=5WbdTmQ4O-_U8UR-cbx1iqqEYDEXoBIi8lC2LHeoVIQ,10590
15
- effspm/htminer/src/load_inst.cpp,sha256=enxuhSWzYwse92NKWVTXScdpmn3U74mRxX9lLFKnyEE,10925
16
- effspm/htminer/src/freq_miner.hpp,sha256=8cVfeJknsgZo63Fp2iG7ndOop3BA-74y_vsjNQnJ9dY,765
17
- effspm/htminer/src/build_mdd.hpp,sha256=GDFkmrjPyOfgkHOTwIjVH_dWrSXWB7OA_GAZ2GXzMpo,1328
18
- effspm/htminer/src/utility.cpp,sha256=WZU9XAmZX86ihWuU6F_SSMSmCwl8h0t9SswAfi5ndcc,2375
19
- effspm/largepp/src/utility.hpp,sha256=i06elLVb7qWGwkalC1t03bfuQ7c06Eu3QFt3I92FnG8,736
20
- effspm/largepp/src/load_inst.hpp,sha256=PT6vX8ty29WCHNizwIhVcpB1CSc93pzh5qLmX4acBrY,986
21
- effspm/largepp/src/freq_miner.cpp,sha256=yC55sBfuMOagmDwHkaJpEkOvSkoEMQXP96Xux8TDGCQ,3960
22
- effspm/largepp/src/load_inst.cpp,sha256=910i6wUOPxZtAj_BOy9ieUffxUv6TNLTYFALeJZBWUM,6799
23
- effspm/largepp/src/freq_miner.hpp,sha256=GmKUub-pED6kM39wxO0hssWkXDzaSNl2vLO4oGYDbzo,678
24
- effspm/largepp/src/utility.cpp,sha256=Hbn49pUWCf1ixWyhiMBxXCW2a7uttkSNwc5gPgA1vqA,954
25
- effspm/largehm/src/build_mdd.cpp,sha256=d3Ro-YtIz6bfkOg8oFhkOjB32kMBobb21o8kBd7WPPU,5916
26
- effspm/largehm/src/utility.hpp,sha256=cjPJ6KYC37CFAMVNNygNMH1HiLTUHjMukImSIuY-S60,692
27
- effspm/largehm/src/load_inst.hpp,sha256=sBvJhT6ibvR1R09YGiSgQYxNRc4jE89tcXvcVVR4-_4,1628
28
- effspm/largehm/src/freq_miner.cpp,sha256=ZHfDRgJjUqhq8KrYAPBYhILQ0xFFKEfJlk2pTzEQPGs,16288
29
- effspm/largehm/src/load_inst.cpp,sha256=vPCz5SqxgSzye54Pt6wqpwNu0-EOdOWap8XbU7edxAI,10263
30
- effspm/largehm/src/freq_miner.hpp,sha256=fnuS6SIbbQYbP5llUez2WSnBzd6XujdG-IiCwRpU1QM,2351
31
- effspm/largehm/src/build_mdd.hpp,sha256=zV0hhPq9HYFLsOJaaRAnrX4vbN49YsStwIca9kxpvLU,2787
32
- effspm/largehm/src/utility.cpp,sha256=K0THrMKa_7cwAEJXbPXOdOwKBrC0gNt8oj1KOHECdJA,960
33
- effspm/largebm/src/build_mdd.cpp,sha256=QAPj_cjGCo-u3wk5Pch1zmWlJmw772O5bqYEvWSn2TQ,4948
34
- effspm/largebm/src/utility.hpp,sha256=S18kyrS5ulJj4to8RndypR35ImPQuGoAVMh6_KnMhaA,350
35
- effspm/largebm/src/load_inst.hpp,sha256=inptC_vdkRPUnGHh4LcDPyGlD9Px2PSU64Xe26BWts8,1880
36
- effspm/largebm/src/freq_miner.cpp,sha256=kxE0UbYH_QfbEAqu7HEq7ptotKH7RWOt6tl6M29LjFA,13596
37
- effspm/largebm/src/load_inst.cpp,sha256=HmumfXv5o_Jdd1E4XQ7BtQSN7aOJiFFNg5-moRoj0lw,7339
38
- effspm/largebm/src/freq_miner.hpp,sha256=Rjuhzbr7W9raV_5jPxtQl4lbCPDxvNO6fldBBoQeKQU,892
39
- effspm/largebm/src/build_mdd.hpp,sha256=R0M0p1gJqA1LdjPzlgpn410cX5-Ak8ebuvgL5kTZS2E,636
40
- effspm/largebm/src/utility.cpp,sha256=5yIPUtgMXVqZwPnwKyTJMMdDRvZe3sBDmZpeXAoLWO4,1167
41
- effspm/btminer/src/build_mdd.cpp,sha256=LWfH_23cTExfOeK3evO46C8Di2_hmu7uCbmutOxj4Fw,1727
42
- effspm/btminer/src/utility.hpp,sha256=ew4pclVwtKZp4bn7HrnaaWHSPZ-yMcsXYDiTmSs_MYM,937
43
- effspm/btminer/src/load_inst.hpp,sha256=pojP8ClGglVhx6GuwEqCvwURPMtBpnHBeCVTGSsCiyA,462
44
- effspm/btminer/src/freq_miner.cpp,sha256=PN8Ksetb5S_akEVjY71mwBP9YEVxlnphTz0zYCDAlaU,6557
45
- effspm/btminer/src/load_inst.cpp,sha256=FudIgA4N7GNlEm34jHMDoQLfyY5NLZENC2CI-cVJoV4,5359
46
- effspm/btminer/src/freq_miner.hpp,sha256=x-c7BpMdNqYiDFM49I7VDJXeb1tIruTOeD-3MXJ2g0A,626
47
- effspm/btminer/src/build_mdd.hpp,sha256=CvowY9TxxnMh3_bIy0HZ9eZmnCm45z5A6Xz5hxHcwfg,567
48
- effspm/btminer/src/utility.cpp,sha256=P-CwwWx5QG7U3DsqzZrFNbYxKqaoapR37P_J69qYVz8,2112
49
- effspm-0.2.8.dist-info/RECORD,,
50
- effspm-0.2.8.dist-info/WHEEL,sha256=qxQkdhERtGxJzqnVOBnucx1aUmU2n3HmuzYdln_LyOw,109
51
- effspm-0.2.8.dist-info/top_level.txt,sha256=2O-AuI0nw0pDmJMo2jzM1wvV2rj48AmkjskkAnsuuQk,7
52
- effspm-0.2.8.dist-info/METADATA,sha256=-2k23FR3Fbo4x9ow93VAvRI8tRbagM_nngzKCxT_p8Q,14227
53
- effspm-0.2.8.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
File without changes