-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_file.cpp
69 lines (51 loc) · 1.95 KB
/
test_file.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
#include <iostream>
#include <fstream>
#include <vector>
#include <utility>
#include <string>
#include "k2tree_bp_sdsl.hpp"
#include "k2tree_bp_sdsl_idems.hpp"
#include <sdsl/rrr_vector.hpp>
using namespace std;
int main(int argc, char** argv) {
for(uint64_t i = 1; i < argc; i += 2) {
string n = argv[i];
ifstream file;
file.open(argv[i + 1]);
uint64_t amount = 0;
vector< pair< uint64_t, uint64_t > > ones;
cout << "Reading file " << argv[i + 1] << endl;
assert(file.is_open());
while(!file.eof()) {
uint64_t a, b;
file >> a >> b;
if(file.eof()) break;
ones.push_back({a, b});
amount++;
}
sort(ones.begin(), ones.end());
file.close();
cout << amount << endl;
k2tree_bp_sdsl<2> k2tree(ones, stoi(n));
uint64_t amount_bits = k2tree.size_in_bits();
cout << amount_bits << " " << (double) amount_bits / amount << " " << (double) amount_bits / k2tree.nodes() << endl;
auto ret = k2tree.get_pos_ones();
//
//sort(ret.begin(), ret.end());
//assert(ret.size() == ones.size());
// k2tree_bp_sdsl_idems<2,
// rrr_vector<127>, rank_support_rrr<1, 127>,
// rrr_vector<127>, rank_support_rrr<1, 127>, rank_support_rrr<0, 127>,
// select_support_rrr<1, 127>, select_support_rrr<0, 127>> k2tree_idems(k2tree);
k2tree_bp_sdsl_idems<2,
sd_vector<>, rank_support_sd<>,
sd_vector<>, rank_support_sd<>, rank_support_sd<0>,
select_support_sd<1>, select_support_sd<0>> k2tree_idems(k2tree);
uint64_t amount_bits_ = k2tree_idems.size_in_bits();
cout << amount_bits_ << " " << (double) amount_bits_ / amount << " " << (double) amount_bits_ / k2tree.nodes() << endl;
//ret = k2tree.get_pos_ones();
//sort(ret.begin(), ret.end());
//assert(ret.size() == ones.size());
}
return 0;
}