19 int *
const p =
gv_calloc((
size_t)bound,
sizeof(
int));
20 for (
int i = 0; i < bound; i++) {
25 for (
int i = bound - 1; i > 0; --i) {
36 assert(bound <= RAND_MAX);
48 const int discard_threshold =
49 RAND_MAX - (int)(((
unsigned)RAND_MAX + 1) % (unsigned)bound);
54 }
while (r > discard_threshold);
65 const int discard_threshold =
66 INT_MAX - (int)(((
unsigned)INT_MAX + 1) % (unsigned)bound);
72 for (
size_t i = 0; i <
sizeof(int); ++i) {
75 memcpy((
char *)&raw + i, &
byte,
sizeof(
byte));
80 const unsigned natural = raw << 1 >> 1;
84 }
while (r > discard_threshold);
92 if (bound > RAND_MAX) {
Memory allocation wrappers that exit on failure.
static void * gv_calloc(size_t nmemb, size_t size)
Arithmetic helper functions.
static int random_small(int bound)
handle random number generation, bound ≤ RAND_MAX
static int random_big(int bound)
handle random number generation, bound > RAND_MAX
int * gv_permutation(int bound)