-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk2bp_build.cpp
71 lines (53 loc) · 1.7 KB
/
k2bp_build.cpp
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
// std includes
#include <iostream>
#include <utility>
#include <set>
// local includes
#include "k2tree_bp_sdsl.hpp"
//#include "k2tree_bp_sdsl_intL.hpp"
int main(int argc, char** argv) {
if(argc < 3) {
std::cerr << "At least three arguments:" << endl;
std::cerr << " ./k2bp_build.x <path file matrix> <size of squared matrix> <amount of ones>" << endl;
exit(1);
}
if((argc - 1) % 3) {
std::cerr << "The arguments should be of group of 3:" << endl;
std::cerr << " ./k2bp_build.x <matrix1> <size1> <#ones1> ... <matrixn> <sizen> <#onesn>" << endl;
exit(1);
}
for(uint64_t i = 1; i < argc; i += 3) {
cerr << "Getting parameters..." << endl;
std::string matrix = argv[i];
uint64_t size = std::stoi(argv[i + 1]);
uint64_t m = std::stoi(argv[i + 2]);
vector< pair< uint64_t, uint64_t > > ones;
ifstream ones_txt;
ones_txt.open(matrix);
if(!ones_txt.is_open()) {
cerr << "Error opening file. Check if the file exists or the path is writed correctly" << endl;
exit(1);
}
cerr << "Reading ones..." << endl;
for(uint64_t i = 0; i < m; i++) {
uint64_t x, y;
ones_txt >> x >> y;
ones.push_back({x, y});
}
sort(ones.begin(), ones.end());
ones_txt.close();
cout << ones.size() << endl;
cerr << "Building k2tree..." << endl;
k2tree_bp_sdsl<2, rrr_vector<127>> k2tree(ones, size);
cerr << "Checking if it is correct..." << endl;
auto check = k2tree.get_pos_ones();
sort(check.begin(), check.end());
assert(check == ones);
cerr << "Writing file..." << endl;
ofstream k2_file;
k2_file.open(matrix + ".k2bp");
k2tree.write(k2_file);
k2_file.close();
}
return 0;
}