Hash :
2cdc1baf
Author :
Date :
2020-01-01T00:00:18
maint: Run 'make update-copyright'
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
/* Test of bitset.
Copyright (C) 2018-2020 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
#include "bitset.h"
#include "macros.h"
#define RANDOM(n) (rand () % (n))
static
void assert_bitset_equal (bitset bs1, bitset bs2)
{
debug_bitset (bs1);
debug_bitset (bs2);
ASSERT (bitset_size (bs1) == bitset_size (bs2));
for (bitset_bindex i = 0; i < bitset_size (bs1); ++i)
ASSERT (bitset_test (bs1, i) == bitset_test (bs2, i));
}
static
void bitset_random (bitset bs)
{
for (bitset_bindex i = 0; i < bitset_size (bs); ++i)
bitset_set (bs, RANDOM (2));
}
/* Check various operations on random bitsets with two different
implementations. */
static
void compare (enum bitset_attr a, enum bitset_attr b)
{
const int nbits = RANDOM (256);
bitset asrc0 = bitset_create (nbits, a);
bitset_random (asrc0);
bitset asrc1 = bitset_create (nbits, a);
bitset_random (asrc1);
bitset asrc2 = bitset_create (nbits, a);
bitset_random (asrc2);
bitset asrc3 = bitset_create (nbits, a);
bitset_random (asrc3);
bitset adst = bitset_create (nbits, a);
bitset bsrc0 = bitset_create (nbits, b);
bitset_copy (bsrc0, asrc0);
bitset bsrc1 = bitset_create (nbits, b);
bitset_copy (bsrc1, asrc1);
bitset bsrc2 = bitset_create (nbits, b);
bitset_copy (bsrc2, asrc2);
bitset bsrc3 = bitset_create (nbits, b);
bitset_copy (bsrc3, asrc3);
bitset bdst = bitset_create (nbits, b);
/* not */
bitset_not (adst, asrc0);
bitset_not (bdst, bsrc0);
assert_bitset_equal (adst, bdst);
/* and */
bitset_and (adst, asrc0, asrc1);
bitset_and (bdst, bsrc0, bsrc1);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_and_cmp (adst, asrc0, asrc1)
== bitset_and_cmp (bdst, bsrc0, bsrc1));
assert_bitset_equal (adst, bdst);
/* andn */
bitset_andn (adst, asrc0, asrc1);
bitset_andn (bdst, bsrc0, bsrc1);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_andn_cmp (adst, asrc0, asrc1)
== bitset_andn_cmp (bdst, bsrc0, bsrc1));
assert_bitset_equal (adst, bdst);
/* or */
bitset_or (adst, asrc0, asrc1);
bitset_or (bdst, bsrc0, bsrc1);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_or_cmp (adst, asrc0, asrc1)
== bitset_or_cmp (bdst, bsrc0, bsrc1));
assert_bitset_equal (adst, bdst);
/* xor */
bitset_xor (adst, asrc0, asrc1);
bitset_xor (bdst, bsrc0, bsrc1);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_xor_cmp (adst, asrc0, asrc1)
== bitset_xor_cmp (bdst, bsrc0, bsrc1));
assert_bitset_equal (adst, bdst);
/* and_or */
bitset_and_or (adst, asrc0, asrc1, asrc2);
bitset_and_or (bdst, bsrc0, bsrc1, bsrc2);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_and_or_cmp (adst, asrc0, asrc1, asrc2)
== bitset_and_or_cmp (bdst, bsrc0, bsrc1, bsrc2));
assert_bitset_equal (adst, bdst);
/* andn_or */
bitset_andn_or (adst, asrc0, asrc1, asrc2);
bitset_andn_or (bdst, bsrc0, bsrc1, bsrc2);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_andn_or_cmp (adst, asrc0, asrc1, asrc2)
== bitset_andn_or_cmp (bdst, bsrc0, bsrc1, bsrc2));
assert_bitset_equal (adst, bdst);
/* or_and */
bitset_or_and (adst, asrc0, asrc1, asrc2);
bitset_or_and (bdst, bsrc0, bsrc1, bsrc2);
assert_bitset_equal (adst, bdst);
ASSERT (bitset_or_and_cmp (adst, asrc0, asrc1, asrc2)
== bitset_or_and_cmp (bdst, bsrc0, bsrc1, bsrc2));
assert_bitset_equal (adst, bdst);
/* ones */
bitset_ones (adst);
bitset_ones (bdst);
assert_bitset_equal (adst, bdst);
/* zero */
bitset_zero (adst);
bitset_zero (bdst);
assert_bitset_equal (adst, bdst);
/* resize.
ARRAY bitsets cannot be resized. */
if (bitset_type_get (bsrc0) != BITSET_ARRAY)
{
const int nbits_new = RANDOM (256);
bitset_copy (adst, asrc0);
bitset_copy (bdst, bsrc0);
ASSERT (nbits_new == bitset_resize (adst, nbits_new));
ASSERT (nbits_new == bitset_resize (bdst, nbits_new));
assert_bitset_equal (adst, bdst);
}
bitset_free (bdst);
bitset_free (bsrc3);
bitset_free (bsrc2);
bitset_free (bsrc1);
bitset_free (bsrc0);
bitset_free (adst);
bitset_free (asrc3);
bitset_free (asrc2);
bitset_free (asrc1);
bitset_free (asrc0);
}
/* Check various operations against expected values for a bitset
having attributes ATTR. */
static
void check_attributes (enum bitset_attr attr)
{
enum { nbits = 32 };
bitset bs0 = bitset_create (nbits, attr);
ASSERT (bitset_size (bs0) == 32);
ASSERT (bitset_count (bs0) == 0);
ASSERT (bitset_empty_p (bs0));
bitset bs1 = bitset_create (nbits, attr);
bitset_set (bs1, 1);
bitset_set (bs1, 3);
bitset_set (bs1, 5);
ASSERT (bitset_count (bs1) == 3);
ASSERT (!bitset_empty_p (bs1));
bitset bs2 = bitset_create (nbits, attr);
bitset_set (bs2, 0);
bitset_set (bs2, 2);
bitset_set (bs2, 4);
/* disjoint_p */
ASSERT (bitset_disjoint_p (bs1, bs2));
/* and */
bitset bs = bitset_create (nbits, attr);
bitset_and (bs, bs1, bs2);
ASSERT (bitset_count (bs) == 0);
/* or */
bitset_or (bs, bs1, bs2);
ASSERT (bitset_count (bs) == 6);
bitset_free (bs);
bitset_free (bs2);
bitset_free (bs1);
bitset_free (bs0);
}
int main (void)
{
check_attributes (BITSET_FIXED);
check_attributes (BITSET_VARIABLE);
check_attributes (BITSET_DENSE);
check_attributes (BITSET_SPARSE);
check_attributes (BITSET_FRUGAL);
check_attributes (BITSET_GREEDY);
compare (BITSET_VARIABLE, BITSET_FIXED);
compare (BITSET_VARIABLE, BITSET_VARIABLE);
compare (BITSET_VARIABLE, BITSET_DENSE);
compare (BITSET_VARIABLE, BITSET_SPARSE);
compare (BITSET_VARIABLE, BITSET_FRUGAL);
compare (BITSET_VARIABLE, BITSET_GREEDY);
return 0;
}