-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathSelectSupportTest.cpp
More file actions
132 lines (115 loc) · 4.43 KB
/
Copy pathSelectSupportTest.cpp
File metadata and controls
132 lines (115 loc) · 4.43 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include "sdsl/int_vector.hpp"
#include "sdsl/select_support_mcl.hpp" // for select_support_mcl
#include "sdsl/bit_vector_interleaved.hpp" // for rank_support_interleaved
#include "sdsl/rrr_vector.hpp" // for rrr_select_support
#include "sdsl/sd_vector.hpp" // for sd_select_support
#include "sdsl/gap_vector.hpp" // for gap_select_suport
#include "sdsl/bitmagic.hpp"
#include "gtest/gtest.h"
#include <vector>
#include <cstdlib> // for rand()
namespace
{
typedef sdsl::int_vector<>::size_type size_type;
typedef sdsl::bit_vector bit_vector;
template<class T>
class SelectSupportTest : public ::testing::Test
{
protected:
static const size_t n = 40;
SelectSupportTest() {
// You can do set-up work for each test here
}
virtual ~SelectSupportTest() {
// You can do clean-up work that doesn't throw exceptions here.
}
// If the constructor and destructor are not enough for setting up
// and cleaning up each test, you can define the following methods:
virtual void SetUp() {
srand(13);
// crafted small examples
bs[0] = bit_vector(32,0);
bs[0][1] = bs[0][4] = bs[0][7] = bs[0][18] =
bs[0][24] = bs[0][26] = bs[0][30] = bs[0][31] = 1;
bs[1] = bit_vector(1,0);
bs[2] = bit_vector(1000000,0);
bs[3] = bit_vector(1000000,1);
bs[4] = bit_vector(0);
for (size_type i=5; i<14; ++i) {
bs[i] = bit_vector(i, i%2);
}
// dense vectors of different sizes
for (size_type i=14; i<n-4; ++i) {
bs[i] = bit_vector(rand() % (8<< (i-14)));
for (size_type j=0; j < bs[i].size(); ++j) {
if (rand() % 2)
bs[i][j] = 1;
}
}
size_type last_size = 1000000;
bs[n-4] = bit_vector(last_size, 1);
bs[n-3] = bit_vector(last_size, 0);
// populate vectors with some other bits
for (size_type i=0; i<last_size/1000; ++i) {
size_type x = rand()%last_size;
bs[n-4][x] = 0;
bs[n-3][x] = 1;
}
bs[n-2] = bit_vector(last_size, 1);
bs[n-1] = bit_vector(last_size, 0);
// populate vectors with some blocks of other bits
for (size_type i=0; i<last_size/1000; ++i) {
size_type x = rand()%last_size;
size_type len = rand()%1000;
for (size_type j=x; j<x+len and j<last_size; ++j) {
bs[n-2][j] = 0;
bs[n-1][j] = 1;
}
}
}
virtual void TearDown() {
// Code here will be called immediately after each test (right
// before the destructor).
}
// Objects declared here can be used by all tests in the test case for Foo.
bit_vector bs[n];
};
using testing::Types;
typedef Types<sdsl::select_support_mcl<>,
sdsl::rrr_select_support<1, 256>,
sdsl::rrr_select_support<1, 129>,
sdsl::rrr_select_support<1, 192>,
sdsl::rrr_select_support<1, 255>,
sdsl::rrr_select_support<1, 15>,
sdsl::rrr_select_support<1, 31>,
sdsl::rrr_select_support<1, 63>,
sdsl::rrr_select_support<1, 127>,
sdsl::rrr_select_support<1, 128>,
sdsl::sd_select_support<>,
sdsl::gap_select_support<>,
sdsl::select_support_interleaved<1, 256>,
sdsl::select_support_interleaved<1, 512>,
sdsl::select_support_interleaved<1, 1024>
> Implementations;
TYPED_TEST_CASE(SelectSupportTest, Implementations);
//! Test the select method
TYPED_TEST(SelectSupportTest, SelectMethod)
{
for (size_type i=0; i<this->n; ++i) {
typename TypeParam::bit_vector_type bv(this->bs[i]);
TypeParam ss(&bv);
for (size_type j=0, select=0; j < (this->bs[i]).size(); ++j) {
if (this->bs[i][j]) {
++select;
// EXPECT_EQ(ss.select(select), j) << " at query "<<select<<" of vector "<<i<<" of length "<<(this->bs[i]).size();
ASSERT_EQ(ss.select(select), j) << " at query "<<select<<" of vector "<<i<<" of length "<<(this->bs[i]).size();
}
}
}
}
}// end namespace
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}