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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
|
// --------------------------------------------------
// (C) Copyright Jeremy Siek 2001.
// (C) Copyright Gennaro Prota 2003 - 2006.
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// -----------------------------------------------------------
//
// $Id: bitset_test.hpp 41370 2007-11-25 18:38:02Z bemandawes $
#ifndef BOOST_BITSET_TEST_HPP_GP_20040319
#define BOOST_BITSET_TEST_HPP_GP_20040319
#include "boost/config.hpp"
#if !defined (BOOST_NO_STD_LOCALE)
# include <locale>
#endif
#include <vector>
#include <fstream> // used for operator<<
#include <string> // for (basic_string and) getline()
#include <algorithm> // for std::min
#include <assert.h> // <cassert> is sometimes macro-guarded :-(
#include "boost/limits.hpp"
#include "boost/dynamic_bitset/dynamic_bitset.hpp"
#include "boost/test/minimal.hpp"
template <typename Block>
inline bool nth_bit(Block num, std::size_t n)
{
#ifdef __BORLANDC__
// Borland deduces Block as a const qualified type,
// and thus finds numeric_limits<Block> to be zero :(
// (though not directly relevant here, see also
// lib issue 559)
int block_width = sizeof(Block) * CHAR_BIT;
#else
int block_width = std::numeric_limits<Block>::digits;
#endif
assert(n < (std::size_t) block_width);
return (num >> n) & 1;
}
// A long, 'irregular', string useful for various tests
std::string get_long_string()
{
const char * const p =
// 6 5 4 3 2 1
// 3210987654321098765432109876543210987654321098765432109876543210
"1110011100011110000011110000011111110000000000000110101110000000"
"1010101000011100011101010111110000101011111000001111100011100011"
"0000000110000001000000111100000111100010101111111000000011100011"
"1111111111111111111111111111111111111111111111111111111111111100"
"1000001100000001111111111111110000000011111000111100001010100000"
"101000111100011010101110011011000000010";
return std::string(p);
}
const char * test_file_name()
{
return "boost_dynamic_bitset_tests";
}
#if defined BOOST_OLD_IOSTREAMS || defined BOOST_NO_STD_LOCALE
template <typename Stream>
bool is_one_or_zero(const Stream & /*s*/, char c)
{
return c == '1' || c == '0';
}
template <typename Stream>
bool is_white_space(const Stream & /*s*/, char c)
{
return std::isspace(c);
}
#else
template <typename Stream, typename Ch>
bool is_one_or_zero(const Stream& s, Ch c)
{
typedef typename Stream::traits_type Tr;
const Ch zero = s.widen('0');
const Ch one = s.widen('1');
return Tr::eq(c, one) || Tr::eq(c, zero);
}
template <typename Stream, typename Ch>
bool is_white_space(const Stream & s, Ch c)
{
// NOTE: the using directive is to satisfy Borland 5.6.4
// with its own library (STLport), which doesn't
// like std::isspace(c, loc)
using namespace std;
return isspace(c, s.getloc());
}
#endif // defined BOOST_OLD_IOSTREAMS
template <typename Stream>
bool has_flags(const Stream& s, std::ios::iostate flags)
{
return (s.rdstate() & flags) != std::ios::goodbit;
}
// constructors
// default (can't do this generically)
// from unsigned long
template <typename Bitset>
struct bitset_test {
typedef typename Bitset::block_type Block;
BOOST_STATIC_CONSTANT(int, bits_per_block = Bitset::bits_per_block);
static void from_unsigned_long(std::size_t sz, unsigned long num)
{
// An object of size N = sz is constructed:
// - the first M bit positions are initialized to the corresponding bit
// values in num (M being the smaller of N and the width of unsigned
// long)
//
// - if M < N remaining bit positions are initialized to zero
Bitset b(sz, num);
BOOST_CHECK(b.size() == sz);
const std::size_t ulong_width = std::numeric_limits<unsigned long>::digits;
std::size_t m = (std::min)(sz, ulong_width);
std::size_t i;
for (i = 0; i < m; ++i)
BOOST_CHECK(b.test(i) == nth_bit(num, i));
for ( ; i < sz; ++i)
BOOST_CHECK(b.test(i) == 0);
}
// from string
//
// Note: The corresponding function in dynamic_bitset (constructor
// from a string) has several default arguments. Actually we don't
// test the correct working of those defaults here (except for the
// default of num_bits). I'm not sure what to do in this regard.
//
// Note2: the default argument expression for num_bits doesn't use
// static_cast, to avoid a gcc 2.95.3 'sorry, not implemented'
//
template <typename Ch, typename Tr, typename Al>
static void from_string(const std::basic_string<Ch, Tr, Al>& str,
std::size_t pos,
std::size_t max_char,
std::size_t num_bits = (std::size_t)(-1))
{
std::size_t rlen = (std::min)(max_char, str.size() - pos);
// The resulting size N of the bitset is num_bits, if
// that is different from the default arg, rlen otherwise.
// Put M = the smaller of N and rlen, then character
// position pos + M - 1 corresponds to bit position zero.
// Subsequent decreasing character positions correspond to
// increasing bit positions.
const bool size_upon_string = num_bits == (std::size_t)(-1);
Bitset b = size_upon_string ?
Bitset(str, pos, max_char)
: Bitset(str, pos, max_char, num_bits);
const std::size_t actual_size = size_upon_string? rlen : num_bits;
BOOST_CHECK(b.size() == actual_size);
std::size_t m = (std::min)(num_bits, rlen);
std::size_t j;
for (j = 0; j < m; ++j)
BOOST_CHECK(b[j] == (str[pos + m - 1 - j] == '1'));
// If M < N, remaining bit positions are zero
for (; j < actual_size; ++j)
BOOST_CHECK(b[j] == 0);
}
static void to_block_range(const Bitset & b /*, BlockOutputIterator result*/)
{
typedef typename Bitset::size_type size_type;
Block sentinel = 0xF0;
int s = 8; // number of sentinels (must be *even*)
int offset = s/2;
std::vector<Block> v(b.num_blocks() + s, sentinel);
boost::to_block_range(b, v.begin() + offset);
assert(v.size() >= (size_type)s && (s >= 2) && (s % 2 == 0));
// check sentinels at both ends
for(int i = 0; i < s/2; ++i) {
BOOST_CHECK(v[i] == sentinel);
BOOST_CHECK(v[v.size()-1-i] == sentinel);
}
typename std::vector<Block>::const_iterator p = v.begin() + offset;
for(size_type n = 0; n < b.num_blocks(); ++n, ++p) {
typename Bitset::block_width_type i = 0;
for(; i < bits_per_block; ++i) {
size_type bit = n * bits_per_block + i;
BOOST_CHECK(nth_bit(*p, i) == (bit < b.size()? b[bit] : 0));
}
}
}
// TODO from_block_range (below) should be splitted
// PRE: std::equal(first1, last1, first2) == true
static void from_block_range(const std::vector<Block>& blocks)
{
{ // test constructor from block range
Bitset bset(blocks.begin(), blocks.end());
std::size_t n = blocks.size();
for (std::size_t b = 0; b < n; ++b) {
typename Bitset::block_width_type i = 0;
for (; i < bits_per_block; ++i) {
std::size_t bit = b * bits_per_block + i;
BOOST_CHECK(bset[bit] == nth_bit(blocks[b], i));
}
}
BOOST_CHECK(bset.size() == n * bits_per_block);
}
{ // test boost::from_block_range
const typename Bitset::size_type n = blocks.size();
Bitset bset(n * bits_per_block);
boost::from_block_range(blocks.begin(), blocks.end(), bset);
for (std::size_t b = 0; b < n; ++b) {
typename Bitset::block_width_type i = 0;
for (; i < bits_per_block; ++i) {
std::size_t bit = b * bits_per_block + i;
BOOST_CHECK(bset[bit] == nth_bit(blocks[b], i));
}
}
BOOST_CHECK(n <= bset.num_blocks());
}
}
// copy constructor (absent from std::bitset)
static void copy_constructor(const Bitset& b)
{
Bitset copy(b);
BOOST_CHECK(b == copy);
// Changes to the copy do not affect the original
if (b.size() > 0) {
std::size_t pos = copy.size() / 2;
copy.flip(pos);
BOOST_CHECK(copy[pos] != b[pos]);
}
}
// assignment operator (absent from std::bitset)
static void assignment_operator(const Bitset& lhs, const Bitset& rhs)
{
Bitset b(lhs);
b = rhs;
BOOST_CHECK(b == rhs);
// Changes to the copy do not affect the original
if (b.size() > 0) {
std::size_t pos = b.size() / 2;
b.flip(pos);
BOOST_CHECK(b[pos] != rhs[pos]);
}
}
static void swap(const Bitset& lhs, const Bitset& rhs)
{
// bitsets must be swapped
Bitset copy1(lhs);
Bitset copy2(rhs);
copy1.swap(copy2);
BOOST_CHECK(copy1 == rhs);
BOOST_CHECK(copy2 == lhs);
// references must be stable under a swap
for(typename Bitset::size_type i = 0; i < lhs.size(); ++i) {
Bitset b1(lhs);
Bitset b2(rhs);
typename Bitset::reference ref = b1[i];
bool x = ref;
if (i < b2.size())
b2[i] = !x; // make sure b2[i] is different
b1.swap(b2);
BOOST_CHECK(b2[i] == x); // now it must be equal..
b2.flip(i);
BOOST_CHECK(ref == b2[i]); // .. and ref must be into b2
BOOST_CHECK(ref == !x);
}
}
static void resize(const Bitset& lhs)
{
Bitset b(lhs);
// Test no change in size
b.resize(lhs.size());
BOOST_CHECK(b == lhs);
// Test increase in size
b.resize(lhs.size() * 2, true);
std::size_t i;
for (i = 0; i < lhs.size(); ++i)
BOOST_CHECK(b[i] == lhs[i]);
for (; i < b.size(); ++i)
BOOST_CHECK(b[i] == true);
// Test decrease in size
b.resize(lhs.size());
for (i = 0; i < lhs.size(); ++i)
BOOST_CHECK(b[i] == lhs[i]);
}
static void clear(const Bitset& lhs)
{
Bitset b(lhs);
b.clear();
BOOST_CHECK(b.size() == 0);
}
static void append_bit(const Bitset& lhs)
{
Bitset b(lhs);
b.push_back(true);
BOOST_CHECK(b.size() == lhs.size() + 1);
BOOST_CHECK(b[b.size() - 1] == true);
for (std::size_t i = 0; i < lhs.size(); ++i)
BOOST_CHECK(b[i] == lhs[i]);
b.push_back(false);
BOOST_CHECK(b.size() == lhs.size() + 2);
BOOST_CHECK(b[b.size() - 1] == false);
BOOST_CHECK(b[b.size() - 2] == true);
for (std::size_t j = 0; j < lhs.size(); ++j)
BOOST_CHECK(b[j] == lhs[j]);
}
static void append_block(const Bitset& lhs)
{
Bitset b(lhs);
Block value(128);
b.append(value);
BOOST_CHECK(b.size() == lhs.size() + bits_per_block);
for (typename Bitset::block_width_type i = 0; i < bits_per_block; ++i)
BOOST_CHECK(b[lhs.size() + i] == bool((value >> i) & 1));
}
static void append_block_range(const Bitset& lhs, const std::vector<Block>& blocks)
{
Bitset b(lhs), c(lhs);
b.append(blocks.begin(), blocks.end());
for (typename std::vector<Block>::const_iterator i = blocks.begin();
i != blocks.end(); ++i)
c.append(*i);
BOOST_CHECK(b == c);
}
// operator[] and reference members
// PRE: b[i] == bit_vec[i]
static void operator_bracket(const Bitset& lhs, const std::vector<bool>& bit_vec)
{
Bitset b(lhs);
std::size_t i, j, k;
// x = b[i]
// x = ~b[i]
for (i = 0; i < b.size(); ++i) {
bool x = b[i];
BOOST_CHECK(x == bit_vec[i]);
x = ~b[i];
BOOST_CHECK(x == !bit_vec[i]);
}
Bitset prev(b);
// b[i] = x
for (j = 0; j < b.size(); ++j) {
bool x = !prev[j];
b[j] = x;
for (k = 0; k < b.size(); ++k)
if (j == k)
BOOST_CHECK(b[k] == x);
else
BOOST_CHECK(b[k] == prev[k]);
b[j] = prev[j];
}
b.flip();
// b[i] = b[j]
for (i = 0; i < b.size(); ++i) {
b[i] = prev[i];
for (j = 0; j < b.size(); ++j) {
if (i == j)
BOOST_CHECK(b[j] == prev[j]);
else
BOOST_CHECK(b[j] == !prev[j]);
}
b[i] = !prev[i];
}
// b[i].flip()
for (i = 0; i < b.size(); ++i) {
b[i].flip();
for (j = 0; j < b.size(); ++j) {
if (i == j)
BOOST_CHECK(b[j] == prev[j]);
else
BOOST_CHECK(b[j] == !prev[j]);
}
b[i].flip();
}
}
//===========================================================================
// bitwise operators
// bitwise and assignment
// PRE: b.size() == rhs.size()
static void and_assignment(const Bitset& b, const Bitset& rhs)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs &= rhs;
// Clears each bit in lhs for which the corresponding bit in rhs is
// clear, and leaves all other bits unchanged.
for (std::size_t I = 0; I < lhs.size(); ++I)
if (rhs[I] == 0)
BOOST_CHECK(lhs[I] == 0);
else
BOOST_CHECK(lhs[I] == prev[I]);
}
// PRE: b.size() == rhs.size()
static void or_assignment(const Bitset& b, const Bitset& rhs)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs |= rhs;
// Sets each bit in lhs for which the corresponding bit in rhs is set, and
// leaves all other bits unchanged.
for (std::size_t I = 0; I < lhs.size(); ++I)
if (rhs[I] == 1)
BOOST_CHECK(lhs[I] == 1);
else
BOOST_CHECK(lhs[I] == prev[I]);
}
// PRE: b.size() == rhs.size()
static void xor_assignment(const Bitset& b, const Bitset& rhs)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs ^= rhs;
// Flips each bit in lhs for which the corresponding bit in rhs is set,
// and leaves all other bits unchanged.
for (std::size_t I = 0; I < lhs.size(); ++I)
if (rhs[I] == 1)
BOOST_CHECK(lhs[I] == !prev[I]);
else
BOOST_CHECK(lhs[I] == prev[I]);
}
// PRE: b.size() == rhs.size()
static void sub_assignment(const Bitset& b, const Bitset& rhs)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs -= rhs;
// Resets each bit in lhs for which the corresponding bit in rhs is set,
// and leaves all other bits unchanged.
for (std::size_t I = 0; I < lhs.size(); ++I)
if (rhs[I] == 1)
BOOST_CHECK(lhs[I] == 0);
else
BOOST_CHECK(lhs[I] == prev[I]);
}
static void shift_left_assignment(const Bitset& b, std::size_t pos)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs <<= pos;
// Replaces each bit at position I in lhs with the following value:
// - If I < pos, the new value is zero
// - If I >= pos, the new value is the previous value of the bit at
// position I - pos
for (std::size_t I = 0; I < lhs.size(); ++I)
if (I < pos)
BOOST_CHECK(lhs[I] == 0);
else
BOOST_CHECK(lhs[I] == prev[I - pos]);
}
static void shift_right_assignment(const Bitset& b, std::size_t pos)
{
Bitset lhs(b);
Bitset prev(lhs);
lhs >>= pos;
// Replaces each bit at position I in lhs with the following value:
// - If pos >= N - I, the new value is zero
// - If pos < N - I, the new value is the previous value of the bit at
// position I + pos
std::size_t N = lhs.size();
for (std::size_t I = 0; I < N; ++I)
if (pos >= N - I)
BOOST_CHECK(lhs[I] == 0);
else
BOOST_CHECK(lhs[I] == prev[I + pos]);
}
static void set_all(const Bitset& b)
{
Bitset lhs(b);
lhs.set();
for (std::size_t I = 0; I < lhs.size(); ++I)
BOOST_CHECK(lhs[I] == 1);
}
static void set_one(const Bitset& b, std::size_t pos, bool value)
{
Bitset lhs(b);
std::size_t N = lhs.size();
if (pos < N) {
Bitset prev(lhs);
// Stores a new value in the bit at position pos in lhs.
lhs.set(pos, value);
BOOST_CHECK(lhs[pos] == value);
// All other values of lhs remain unchanged
for (std::size_t I = 0; I < N; ++I)
if (I != pos)
BOOST_CHECK(lhs[I] == prev[I]);
} else {
// Not in range, doesn't satisfy precondition.
}
}
static void reset_all(const Bitset& b)
{
Bitset lhs(b);
// Resets all bits in lhs
lhs.reset();
for (std::size_t I = 0; I < lhs.size(); ++I)
BOOST_CHECK(lhs[I] == 0);
}
static void reset_one(const Bitset& b, std::size_t pos)
{
Bitset lhs(b);
std::size_t N = lhs.size();
if (pos < N) {
Bitset prev(lhs);
lhs.reset(pos);
// Resets the bit at position pos in lhs
BOOST_CHECK(lhs[pos] == 0);
// All other values of lhs remain unchanged
for (std::size_t I = 0; I < N; ++I)
if (I != pos)
BOOST_CHECK(lhs[I] == prev[I]);
} else {
// Not in range, doesn't satisfy precondition.
}
}
static void operator_flip(const Bitset& b)
{
Bitset lhs(b);
Bitset x(lhs);
BOOST_CHECK(~lhs == x.flip());
}
static void flip_all(const Bitset& b)
{
Bitset lhs(b);
std::size_t N = lhs.size();
Bitset prev(lhs);
lhs.flip();
// Toggles all the bits in lhs
for (std::size_t I = 0; I < N; ++I)
BOOST_CHECK(lhs[I] == !prev[I]);
}
static void flip_one(const Bitset& b, std::size_t pos)
{
Bitset lhs(b);
std::size_t N = lhs.size();
if (pos < N) {
Bitset prev(lhs);
lhs.flip(pos);
// Toggles the bit at position pos in lhs
BOOST_CHECK(lhs[pos] == !prev[pos]);
// All other values of lhs remain unchanged
for (std::size_t I = 0; I < N; ++I)
if (I != pos)
BOOST_CHECK(lhs[I] == prev[I]);
} else {
// Not in range, doesn't satisfy precondition.
}
}
// empty
static void empty(const Bitset& b)
{
BOOST_CHECK(b.empty() == (b.size() == 0));
}
// to_ulong()
static void to_ulong(const Bitset& lhs)
{
typedef unsigned long result_type;
std::size_t n = std::numeric_limits<result_type>::digits;
std::size_t sz = lhs.size();
bool will_overflow = false;
for (std::size_t i = n; i < sz; ++i) {
if (lhs.test(i) != 0) {
will_overflow = true;
break;
}
}
if (will_overflow) {
try {
(void)lhs.to_ulong();
BOOST_CHECK(false); // It should have thrown an exception
} catch (std::overflow_error & ex) {
// Good!
BOOST_CHECK(!!ex.what());
} catch (...) {
BOOST_CHECK(false); // threw the wrong exception
}
} else {
result_type num = lhs.to_ulong();
// Be sure the number is right
if (sz == 0)
BOOST_CHECK(num == 0);
else {
for (std::size_t i = 0; i < sz; ++i)
BOOST_CHECK(lhs[i] == (i < n ? nth_bit(num, i) : 0));
}
}
}
// to_string()
static void to_string(const Bitset& b)
{
std::string str;
boost::to_string(b, str);
BOOST_CHECK(str.size() == b.size());
for (std::size_t i = 0; i < b.size(); ++i)
BOOST_CHECK(str[b.size() - 1 - i] ==(b.test(i)? '1':'0'));
}
static void count(const Bitset& b)
{
std::size_t c = b.count();
std::size_t actual = 0;
for (std::size_t i = 0; i < b.size(); ++i)
if (b[i])
++actual;
BOOST_CHECK(c == actual);
}
static void size(const Bitset& b)
{
BOOST_CHECK(Bitset(b).set().count() == b.size());
}
static void any(const Bitset& b)
{
//BOOST_CHECK(b.any() == (b.count() > 0));
bool result = false;
for(std::size_t i = 0; i < b.size(); ++i)
if(b[i]) {
result = true;
break;
}
BOOST_CHECK(b.any() == result);
}
static void none(const Bitset& b)
{
bool result = true;
for(std::size_t i = 0; i < b.size(); ++i) {
if(b[i]) {
result = false;
break;
}
}
BOOST_CHECK(b.none() == result);
// sanity
BOOST_CHECK(b.none() == !b.any());
BOOST_CHECK(b.none() == (b.count() == 0));
}
static void subset(const Bitset& a, const Bitset& b)
{
BOOST_CHECK(a.size() == b.size()); // PRE
bool is_subset = true;
if (b.size()) { // could use b.any() but let's be safe
for(std::size_t i = 0; i < a.size(); ++i) {
if(a.test(i) && !b.test(i)) {
is_subset = false;
break;
}
}
}
else {
// sanity
BOOST_CHECK(a.count() == 0);
BOOST_CHECK(a.any() == false);
//is_subset = (a.any() == false);
}
BOOST_CHECK(a.is_subset_of(b) == is_subset);
}
static void proper_subset(const Bitset& a, const Bitset& b)
{
// PRE: a.size() == b.size()
BOOST_CHECK(a.size() == b.size());
bool is_proper = false;
if (b.size() != 0) {
// check it's a subset
subset(a, b);
// is it proper?
for (std::size_t i = 0; i < a.size(); ++i) {
if (!a.test(i) && b.test(i)) {
is_proper = true;
// sanity
BOOST_CHECK(a.count() < b.count());
BOOST_CHECK(b.any());
}
}
}
BOOST_CHECK(a.is_proper_subset_of(b) == is_proper);
if (is_proper)
BOOST_CHECK(b.is_proper_subset_of(a) != is_proper);// antisymmetry
}
static void intersects(const Bitset& a, const Bitset& b)
{
bool have_intersection = false;
typename Bitset::size_type m = a.size() < b.size() ? a.size() : b.size();
for(typename Bitset::size_type i = 0; i < m && !have_intersection; ++i)
if(a[i] == true && b[i] == true)
have_intersection = true;
BOOST_CHECK(a.intersects(b) == have_intersection);
// also check commutativity
BOOST_CHECK(b.intersects(a) == have_intersection);
}
static void find_first(const Bitset& b)
{
// find first non-null bit, if any
typename Bitset::size_type i = 0;
while (i < b.size() && b[i] == 0)
++i;
if (i == b.size())
BOOST_CHECK(b.find_first() == Bitset::npos); // not found;
else {
BOOST_CHECK(b.find_first() == i);
BOOST_CHECK(b.test(i) == true);
}
}
static void find_next(const Bitset& b, typename Bitset::size_type prev)
{
BOOST_CHECK(next_bit_on(b, prev) == b.find_next(prev));
}
static void operator_equal(const Bitset& a, const Bitset& b)
{
if (a == b) {
for (std::size_t I = 0; I < a.size(); ++I)
BOOST_CHECK(a[I] == b[I]);
} else {
if (a.size() == b.size()) {
bool diff = false;
for (std::size_t I = 0; I < a.size(); ++I)
if (a[I] != b[I]) {
diff = true;
break;
}
BOOST_CHECK(diff);
}
}
}
static void operator_not_equal(const Bitset& a, const Bitset& b)
{
if (a != b) {
if (a.size() == b.size()) {
bool diff = false;
for (std::size_t I = 0; I < a.size(); ++I)
if (a[I] != b[I]) {
diff = true;
break;
}
BOOST_CHECK(diff);
}
} else {
for (std::size_t I = 0; I < a.size(); ++I)
BOOST_CHECK(a[I] == b[I]);
}
}
static bool less_than(const Bitset& a, const Bitset& b)
{
// Compare from most significant to least.
// Careful, don't send unsigned int into negative territory!
if (a.size() == 0)
return false;
std::size_t I;
for (I = a.size() - 1; I > 0; --I)
if (a[I] < b[I])
return true;
else if (a[I] > b[I])
return false;
// if (a[I] = b[I]) skip to next
if (a[0] < b[0])
return true;
else
return false;
}
static typename Bitset::size_type next_bit_on(const Bitset& b, typename Bitset::size_type prev)
{
// helper function for find_next()
//
if (b.none() == true || prev == Bitset::npos)
return Bitset::npos;
++prev;
if (prev >= b.size())
return Bitset::npos;
typename Bitset::size_type i = prev;
while (i < b.size() && b[i] == 0)
++i;
return i==b.size() ? Bitset::npos : i;
}
static void operator_less_than(const Bitset& a, const Bitset& b)
{
if (less_than(a, b))
BOOST_CHECK(a < b);
else
BOOST_CHECK(!(a < b));
}
static void operator_greater_than(const Bitset& a, const Bitset& b)
{
if (less_than(a, b) || a == b)
BOOST_CHECK(!(a > b));
else
BOOST_CHECK(a > b);
}
static void operator_less_than_eq(const Bitset& a, const Bitset& b)
{
if (less_than(a, b) || a == b)
BOOST_CHECK(a <= b);
else
BOOST_CHECK(!(a <= b));
}
static void operator_greater_than_eq(const Bitset& a, const Bitset& b)
{
if (less_than(a, b))
BOOST_CHECK(!(a >= b));
else
BOOST_CHECK(a >= b);
}
static void test_bit(const Bitset& b, std::size_t pos)
{
Bitset lhs(b);
std::size_t N = lhs.size();
if (pos < N) {
BOOST_CHECK(lhs.test(pos) == lhs[pos]);
} else {
// Not in range, doesn't satisfy precondition.
}
}
static void operator_shift_left(const Bitset& lhs, std::size_t pos)
{
Bitset x(lhs);
BOOST_CHECK((lhs << pos) == (x <<= pos));
}
static void operator_shift_right(const Bitset& lhs, std::size_t pos)
{
Bitset x(lhs);
BOOST_CHECK((lhs >> pos) == (x >>= pos));
}
// operator|
static
void operator_or(const Bitset& lhs, const Bitset& rhs)
{
Bitset x(lhs);
BOOST_CHECK((lhs | rhs) == (x |= rhs));
}
// operator&
static
void operator_and(const Bitset& lhs, const Bitset& rhs)
{
Bitset x(lhs);
BOOST_CHECK((lhs & rhs) == (x &= rhs));
}
// operator^
static
void operator_xor(const Bitset& lhs, const Bitset& rhs)
{
Bitset x(lhs);
BOOST_CHECK((lhs ^ rhs) == (x ^= rhs));
}
// operator-
static
void operator_sub(const Bitset& lhs, const Bitset& rhs)
{
Bitset x(lhs);
BOOST_CHECK((lhs - rhs) == (x -= rhs));
}
//------------------------------------------------------------------------------
// I/O TESTS
// The following tests assume the results of extraction (i.e.: contents,
// state and width of is, contents of b) only depend on input (the string
// str). In other words, they don't consider "unexpected" errors such as
// stream corruption or out of memory. The reason is simple: if e.g. the
// stream buffer throws, the stream layer may eat the exception and
// transform it into a badbit. But we can't trust the stream state here,
// because one of the things that we want to test is exactly whether it
// is set correctly. Similarly for insertion.
//
// To provide for these cases would require that the test functions know
// in advance whether the stream buffer and/or allocations will fail, and
// when; that is, we should write both a special allocator and a special
// stream buffer capable of throwing "on demand" and pass them here.
// Seems overkill for these kinds of unit tests.
//-------------------------------------------------------------------------
// operator<<( [basic_]ostream,
template<typename Stream>
static void stream_inserter(const Bitset & b,
Stream & s,
const char * file_name
)
{
#if defined BOOST_OLD_IOSTREAMS
typedef char char_type;
typedef std::string string_type;
typedef ifstream corresponding_input_stream_type;
#else
typedef typename Stream::char_type char_type;
typedef std::basic_string<char_type> string_type;
typedef std::basic_ifstream<char_type> corresponding_input_stream_type;
std::ios::iostate except = s.exceptions();
#endif
typedef typename Bitset::size_type size_type;
std::streamsize w = s.width();
char_type fill_char = s.fill();
std::ios::iostate oldstate = s.rdstate();
bool stream_was_good = s.good();
bool did_throw = false;
try {
s << b;
}
#if defined BOOST_OLD_IOSTREAMS
catch(...) {
BOOST_CHECK(false);
}
#else
catch (const std::ios_base::failure &) {
BOOST_CHECK((except & s.rdstate()) != 0);
did_throw = true;
} catch (...) {
did_throw = true;
}
#endif
BOOST_CHECK(did_throw || !stream_was_good || (s.width() == 0));
if (!stream_was_good) {
BOOST_CHECK(s.good() == false);
// this should actually be oldstate == s.rdstate()
// but some implementations add badbit in the
// sentry constructor
//
BOOST_CHECK((oldstate & s.rdstate()) == oldstate);
BOOST_CHECK(s.width() == w);
}
else {
if(!did_throw)
BOOST_CHECK(s.width() == 0);
// This test require that os be an output _and_ input stream.
// Of course dynamic_bitset's operator << doesn't require that.
size_type total_len = w <= 0 || (size_type)(w) < b.size()? b.size() : w;
const string_type padding (total_len - b.size(), fill_char);
string_type expected;
boost::to_string(b, expected);
if ((s.flags() & std::ios::adjustfield) != std::ios::left)
expected = padding + expected;
else
expected = expected + padding;
assert(expected.length() == total_len);
// close, and reopen the file stream to verify contents
s.close();
corresponding_input_stream_type is(file_name);
string_type contents;
std::getline(is, contents, char_type());
BOOST_CHECK(contents == expected);
}
}
// operator>>( [basic_]istream
template<typename Stream, typename String>
static void stream_extractor(Bitset& b,
Stream& is,
String& str
)
{
// save necessary info then do extraction
//
const std::streamsize w = is.width();
Bitset a_copy(b);
bool stream_was_good = is.good();
bool did_throw = false;
#if defined BOOST_OLD_IOSTREAMS
bool has_stream_exceptions = false;
is >> b;
#else
const std::ios::iostate except = is.exceptions();
bool has_stream_exceptions = true;
try {
is >> b;
}
catch(const std::ios::failure &) {
did_throw = true;
}
// postconditions
BOOST_CHECK(except == is.exceptions()); // paranoid
#endif
//------------------------------------------------------------------
// postconditions
BOOST_CHECK(b.size() <= b.max_size());
if(w > 0)
BOOST_CHECK(b.size() <= static_cast<typename Bitset::size_type>(w));
// throw if and only if required
if(has_stream_exceptions) {
const bool exceptional_state = has_flags(is, is.exceptions());
BOOST_CHECK(exceptional_state == did_throw);
}
typedef typename String::size_type size_type;
typedef typename String::value_type Ch;
size_type after_digits = 0;
if(!stream_was_good) {
BOOST_CHECK(has_flags(is, std::ios::failbit));
BOOST_CHECK(b == a_copy);
BOOST_CHECK(is.width() == (did_throw ? w : 0));
}
else {
// stream was good(), parse the string;
// it may contain three parts, all of which are optional
// {spaces} {digits} {non-digits}
// opt opt opt
//
// The values of b.max_size() and is.width() may lead to
// ignore part of the digits, if any.
size_type pos = 0;
size_type len = str.length();
// {spaces}
for( ; pos < len && is_white_space(is, str[pos]); ++pos)
{}
size_type after_spaces = pos;
// {digits} or part of them
const typename Bitset::size_type max_digits =
w > 0 && static_cast<typename Bitset::size_type>(w) < b.max_size()
? w : b.max_size();
for( ; pos < len && (pos - after_spaces) < max_digits; ++pos) {
if(!is_one_or_zero(is, str[pos]))
break;
}
after_digits = pos;
size_type num_digits = after_digits - after_spaces;
// eofbit
if((after_digits == len && max_digits > num_digits ))
BOOST_CHECK(has_flags(is, std::ios::eofbit));
else
BOOST_CHECK(!has_flags(is, std::ios::eofbit));
// failbit <=> there are no digits, except for the library
// issue explained below.
//
if(num_digits == 0) {
if(after_digits == len && has_stream_exceptions &&
(is.exceptions() & std::ios::eofbit) != std::ios::goodbit) {
// This is a special case related to library issue 195:
// reaching eof when skipping whitespaces in the sentry ctor.
// The resolution says the sentry constructor should set *both*
// eofbit and failbit; but many implementations deliberately
// set eofbit only. See for instance:
// http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00086.html
//
BOOST_CHECK(did_throw);
}
else {
BOOST_CHECK(has_flags(is, std::ios::failbit));
}
}
else
BOOST_CHECK(!has_flags(is, std::ios::failbit));
if(num_digits == 0 && after_digits == len) {
// The VC6 library has a bug/non-conformity in the sentry
// constructor. It uses code like
// // skip whitespaces...
// int_type _C = rdbuf()->sgetc();
// while (!_Tr::eq_int_type(_Tr::eof(), _C) ...
//
// For an empty file the while statement is never "entered"
// and the stream remains in good() state; thus the sentry
// object gives "true" when converted to bool. This is worse
// than the case above, because not only failbit is not set,
// but no bit is set at all, end we end up clearing the
// bitset though there's nothing in the file to be extracted.
// Note that the dynamic_bitset docs say a sentry object is
// constructed and then converted to bool, thus we rely on
// what the underlying library does.
//
#if !defined(BOOST_DINKUMWARE_STDLIB) || (BOOST_DINKUMWARE_STDLIB >= 306)
BOOST_CHECK(b == a_copy);
#else
BOOST_CHECK(b.empty() == true);
#endif
}
else {
String sub = str.substr(after_spaces, num_digits);
BOOST_CHECK(b == Bitset(sub));
}
// check width
BOOST_CHECK(is.width() == 0
|| (after_digits == len && num_digits == 0 && did_throw));
}
// clear the stream to allow further reading then
// retrieve any remaining chars with a single getline()
is.exceptions(std::ios::goodbit);
is.clear();
String remainder;
std::getline(is, remainder, Ch());
if(stream_was_good)
BOOST_CHECK(remainder == str.substr(after_digits));
else
BOOST_CHECK(remainder == str);
}
};
#endif // include guard
|