4d-plugin-PRNG
Pseudo-random number generator
Platform
carbon | cocoa | win32 | win64 |
---|---|---|---|
Version
Syntax
number:=uniform_int_distribution (min;max)
Parameter | Type | Description |
---|---|---|
min | LONGINT | minimum potentially generated value |
max | LONGINT | maximum potentially generated value |
number | LONGINT |
-
Using
std::mt19937
on both platforms. -
Using
std::random_device
to seed the Mersenne Twister.