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
|
/* Test mpz_popcount.
Copyright 2001, 2005 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
The GNU MP Library 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
#include <stdio.h>
#include <stdlib.h>
#include "gmp.h"
#include "gmp-impl.h"
#include "tests.h"
void
check_onebit (void)
{
mpz_t n;
unsigned long i, got;
mpz_init (n);
for (i = 0; i < 5 * BITS_PER_MP_LIMB; i++)
{
mpz_setbit (n, i);
got = mpz_popcount (n);
if (got != 1)
{
printf ("mpz_popcount wrong on single bit at %lu\n", i);
printf (" got %lu, want 1\n", got);
abort();
}
mpz_clrbit (n, i);
}
mpz_clear (n);
}
void
check_data (void)
{
static const struct {
const char *n;
unsigned long want;
} data[] = {
{ "-1", ~ (unsigned long) 0 },
{ "-12345678", ~ (unsigned long) 0 },
{ "0", 0 },
{ "1", 1 },
{ "3", 2 },
{ "5", 2 },
{ "0xFFFF", 16 },
{ "0xFFFFFFFF", 32 },
{ "0xFFFFFFFFFFFFFFFF", 64 },
{ "0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", 128 },
};
unsigned long got;
int i;
mpz_t n;
mpz_init (n);
for (i = 0; i < numberof (data); i++)
{
mpz_set_str_or_abort (n, data[i].n, 0);
got = mpz_popcount (n);
if (got != data[i].want)
{
printf ("mpz_popcount wrong at data[%d]\n", i);
printf (" n \"%s\"\n", data[i].n);
printf (" "); mpz_out_str (stdout, 10, n); printf ("\n");
printf (" 0x"); mpz_out_str (stdout, 16, n); printf ("\n");
printf (" got %lu\n", got);
printf (" want %lu\n", data[i].want);
abort();
}
}
mpz_clear (n);
}
unsigned long
refmpz_popcount (mpz_t arg)
{
mp_size_t n, i;
unsigned long cnt;
mp_limb_t x;
n = SIZ(arg);
if (n < 0)
return ~(unsigned long) 0;
cnt = 0;
for (i = 0; i < n; i++)
{
x = PTR(arg)[i];
while (x != 0)
{
cnt += (x & 1);
x >>= 1;
}
}
return cnt;
}
void
check_random (void)
{
gmp_randstate_ptr rands;
mpz_t bs;
mpz_t arg;
unsigned long arg_size, size_range;
unsigned long got, ref;
int i;
rands = RANDS;
mpz_init (bs);
mpz_init (arg);
for (i = 0; i < 10000; i++)
{
mpz_urandomb (bs, rands, 32);
size_range = mpz_get_ui (bs) % 11 + 2; /* 0..4096 bit operands */
mpz_urandomb (bs, rands, size_range);
arg_size = mpz_get_ui (bs);
mpz_rrandomb (arg, rands, arg_size);
got = mpz_popcount (arg);
ref = refmpz_popcount (arg);
if (got != ref)
{
printf ("mpz_popcount wrong on random\n");
printf (" "); mpz_out_str (stdout, 10, arg); printf ("\n");
printf (" 0x"); mpz_out_str (stdout, 16, arg); printf ("\n");
printf (" got %lu\n", got);
printf (" want %lu\n", ref);
abort();
abort ();
}
}
mpz_clear (arg);
mpz_clear (bs);
}
int
main (void)
{
tests_start ();
check_onebit ();
check_data ();
check_random ();
tests_end ();
exit (0);
}
|