long unsigned int results and max cannot be represented with the gsl dictated (wrong) types for get and max. UINT64_MAX will be truncated to 32bit, as well as the rng results.
we could easily fix that by defining those types as uint64_t, but these types come from libgsl.
we could skip them, or rewrite them to return only 32bit results.
long unsigned int
results and max cannot be represented with the gsl dictated (wrong) types for get and max.UINT64_MAX
will be truncated to 32bit, as well as the rng results.we could easily fix that by defining those types as
uint64_t
, but these types come from libgsl.we could skip them, or rewrite them to return only 32bit results.