Graphviz 13.0.0~dev.20250402.0402
|
Implementation of random number generation functionality. More...
#include <assert.h>
#include <limits.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <util/alloc.h>
#include <util/gv_math.h>
#include <util/random.h>
Go to the source code of this file.
Functions | |
int * | gv_permutation (int bound) |
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_random (int bound) |
int * gv_permutation | ( | int | bound | ) |
generate a random permutation of the numbers [0, bound - 1]
The caller is responsible for free
ing the returned array. This function calls exit
on memory allocation failure.
bound | Exclusive upper bound on the sequence |
[0, bound - 1]
Definition at line 13 of file random.c.
References gv_calloc(), gv_random(), NULL, and SWAP.
Referenced by maximal_independent_edge_set_heavest_edge_pernode_supernodes_first().
int gv_random | ( | int | bound | ) |
generate a random number in the range [0, bound - 1]
This function assumes the caller has previously seeded the rand
random number generator.
bound | Exclusive upper bound on random number generation |
Definition at line 89 of file random.c.
References random_big(), and random_small().
Referenced by gv_permutation(), and node_distinct_coloring_internal().
|
static |
Definition at line 60 of file random.c.
References random_small(), and UINT8_MAX.
Referenced by gv_random().
|
static |
Definition at line 34 of file random.c.
Referenced by gv_random(), and random_big().