Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
76
3party/succinct/test_darray.cpp
Normal file
76
3party/succinct/test_darray.cpp
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
#define BOOST_TEST_MODULE darray
|
||||
#include "test_common.hpp"
|
||||
#include "test_rank_select_common.hpp"
|
||||
|
||||
#include <cstdlib>
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
#include "mapper.hpp"
|
||||
#include "darray.hpp"
|
||||
|
||||
void test_darray(std::vector<bool> const& v, const char* test_name)
|
||||
{
|
||||
succinct::bit_vector bv(v);
|
||||
succinct::darray1 d1(bv);
|
||||
succinct::darray0 d0(bv);
|
||||
|
||||
size_t cur_rank = 0;
|
||||
size_t cur_rank0 = 0;
|
||||
for (size_t i = 0; i < v.size(); ++i) {
|
||||
if (v[i]) {
|
||||
MY_REQUIRE_EQUAL(i, d1.select(bv, cur_rank),
|
||||
"select (" << test_name << "): cur_rank = " << cur_rank << ", i = " << i << ", v[i] = " << v[i]);
|
||||
cur_rank += 1;
|
||||
} else {
|
||||
MY_REQUIRE_EQUAL(i, d0.select(bv, cur_rank0),
|
||||
"select0 (" << test_name << "): cur_rank0 = " << cur_rank0 << ", i = " << i << ", v[i] = " << v[i]);
|
||||
cur_rank0 += 1;
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_REQUIRE_EQUAL(cur_rank, d1.num_positions());
|
||||
BOOST_REQUIRE_EQUAL(cur_rank0, d0.num_positions());
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(darray)
|
||||
{
|
||||
srand(42);
|
||||
size_t N = 10000;
|
||||
|
||||
{
|
||||
// Random bitmap
|
||||
std::vector<bool> v = random_bit_vector(N);
|
||||
test_darray(v, "random");
|
||||
}
|
||||
|
||||
{
|
||||
// Empty bitmap
|
||||
std::vector<bool> v;
|
||||
test_darray(v, "empty");
|
||||
}
|
||||
|
||||
{
|
||||
// Only one value
|
||||
std::vector<bool> v(N);
|
||||
v[37] = 1;
|
||||
test_darray(v, "singleton");
|
||||
}
|
||||
|
||||
{
|
||||
// Full bitmap
|
||||
std::vector<bool> v(N, 1);
|
||||
test_darray(v, "full");
|
||||
}
|
||||
|
||||
{
|
||||
// Very sparse random bitmap
|
||||
size_t bigN = (1 << 16) * 4;
|
||||
std::vector<bool> v(bigN);
|
||||
size_t cur_pos = 0;
|
||||
while(cur_pos < bigN) {
|
||||
v[cur_pos] = 1;
|
||||
cur_pos += rand() % 1024;
|
||||
}
|
||||
test_darray(v, "sparse");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue