gmp_libgmp_urandomb_ui Method |
Namespace: Math.Gmp.Native
public static uint gmp_urandomb_ui( gmp_randstate_t state, uint n )
Public Shared Function gmp_urandomb_ui ( state As gmp_randstate_t, n As UInteger ) As UInteger
public: static unsigned int gmp_urandomb_ui( gmp_randstate_t^ state, unsigned int n )
static member gmp_urandomb_ui : state : gmp_randstate_t * n : uint32 -> uint32
n must be less than or equal to the number of bits in an unsigned long.
In .NET, n must be less than or equal to the number of bits in an unsigned 32-bit integer.
// Create, initialize, and seed a new random number generator. gmp_randstate_t state = new gmp_randstate_t(); gmp_lib.gmp_randinit_mt(state); gmp_lib.gmp_randseed_ui(state, 100000U); // Generate a random integer in the range [0, 2^8-1]. uint rand = gmp_lib.gmp_urandomb_ui(state, 8); // Free all memory occupied by state. gmp_lib.gmp_randclear(state);
' Create, initialize, and seed a new random number generator. Dim state As New gmp_randstate_t() gmp_lib.gmp_randinit_mt(state) gmp_lib.gmp_randseed_ui(state, 100000UI) ' Generate a random integer in the range [0, 2^8-1]. Dim rand As UInteger = gmp_lib.gmp_urandomb_ui(state, 8) ' Free all memory occupied by state. gmp_lib.gmp_randclear(state)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.