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 132 133 134 135 136 137 138 139 140 141 142 143 144
|
#include "common.hpp"
#include "sdsl/bit_vectors.hpp"
#include "sdsl/select_support.hpp"
#include "gtest/gtest.h"
#include <string>
using namespace sdsl;
using namespace std;
string test_file;
string temp_file;
string temp_dir;
namespace
{
template<class T>
class select_support_test : public ::testing::Test { };
using testing::Types;
#ifdef FULL_TEST_SUITE
typedef Types<
select_support_mcl<>,
select_support_sd<1>,
select_support_sd<0>,
select_0_support_sd<>,
select_support_il<1, 512>,
select_support_mcl<0>,
select_support_il<0, 512>,
select_support_mcl<01,2>,
select_support_mcl<10,2>,
select_support_mcl<00,2>,
select_support_mcl<11,2>,
select_support_rrr<1, 256>,
select_support_rrr<1, 129>,
select_support_rrr<1, 192>,
select_support_rrr<1, 255>,
select_support_rrr<1, 15>,
select_support_rrr<1, 31>,
select_support_rrr<1, 63>,
select_support_rrr<1, 127>,
select_support_rrr<1, 128>,
select_support_il<1, 256>,
select_support_il<1, 1024>,
select_support_rrr<0, 256>,
select_support_rrr<0, 15>,
select_support_rrr<0, 31>,
select_support_rrr<0, 63>,
select_support_rrr<0, 127>,
select_support_il<0, 256>,
select_support_il<0, 1024>
> Implementations;
#else
typedef Types<
select_support_mcl<>,
select_support_rrr<>,
select_support_sd<1>,
select_support_sd<0>,
select_0_support_sd<>,
select_support_il<1, 512>,
select_support_mcl<0>,
select_support_rrr<0>,
select_support_il<0, 512>,
select_support_mcl<01,2>,
select_support_mcl<10,2>,
select_support_mcl<00,2>,
select_support_mcl<11,2>
> Implementations;
#endif
TYPED_TEST_CASE(select_support_test, Implementations);
//! Test the select method
TYPED_TEST(select_support_test, select_method)
{
static_assert(sdsl::util::is_regular<TypeParam>::value, "Type is not regular");
bit_vector bvec;
ASSERT_TRUE(load_from_file(bvec, test_file));
typename TypeParam::bit_vector_type bv(bvec);
TypeParam ss(&bv);
for (uint64_t j=0, select=0; j < bvec.size(); ++j) {
bool found = (j >= TypeParam::bit_pat_len-1);
for (uint8_t k=0; found and k < TypeParam::bit_pat_len; ++k) {
found &= bvec[j-k] == ((TypeParam::bit_pat>>k)&1);
}
if (found) {
++select;
ASSERT_EQ(j, ss.select(select));
}
}
}
#if SDSL_HAS_CEREAL
template <typename in_archive_t, typename out_archive_t, typename TypeParam>
void do_serialisation(TypeParam const & l, typename TypeParam::bit_vector_type const & bv)
{
{
std::ofstream os{temp_file, std::ios::binary};
out_archive_t oarchive{os};
oarchive(l);
}
{
TypeParam in_l{};
std::ifstream is{temp_file, std::ios::binary};
in_archive_t iarchive{is};
iarchive(in_l);
in_l.set_vector(&bv);
EXPECT_EQ(l, in_l);
}
}
TYPED_TEST(select_support_test, cereal)
{
if (temp_dir != "@/")
{
bit_vector bvec;
ASSERT_TRUE(load_from_file(bvec, test_file));
typename TypeParam::bit_vector_type bv(bvec);
TypeParam rs(&bv);
do_serialisation<cereal::BinaryInputArchive, cereal::BinaryOutputArchive> (rs, bv);
do_serialisation<cereal::PortableBinaryInputArchive, cereal::PortableBinaryOutputArchive>(rs, bv);
do_serialisation<cereal::JSONInputArchive, cereal::JSONOutputArchive> (rs, bv);
do_serialisation<cereal::XMLInputArchive, cereal::XMLOutputArchive> (rs, bv);
}
}
#endif // SDSL_HAS_CEREAL
}// end namespace
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
if ( init_2_arg_test(argc, argv, "SELECT_SUPPORT", test_file, temp_dir, temp_file) != 0 ) {
return 1;
}
return RUN_ALL_TESTS();
}
|