You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shuffle3/lean/src/rng.cpp

48 lines
853 B

4 years ago
#include <rng/impl.hpp>
#include <cmath>
inline unsigned char RNG::byte()
{
return (unsigned char)next_int(255);
}
void RNG::bytes(unsigned char* ptr, std::size_t len)
{
for(std::size_t i=0;i<len;i++)
{
ptr[i] = byte();
}
}
bool RNG::chance()
{
4 years ago
return chance(.5);
4 years ago
}
bool RNG::chance(double d)
{
if (d<=0) return false;
return sample() <= d;
}
std::int32_t RNG::next_int(std::int32_t min, std::int32_t max)
{
return (std::int32_t)floor(sample() * (double)(max-min))+min;
}
std::int32_t RNG::next_int()
{
4 years ago
return (chance() ? 1 : -1) * (std::int32_t)floor(sample() * (double)INT32_MAX);
4 years ago
}
std::int64_t RNG::next_long(std::int64_t min, std::int64_t max)
{
return (std::int64_t)floor(sample() * (double)(max-min))+min;
}
std::int64_t RNG::next_long()
{
4 years ago
return (chance() ? 1l : -1l) * (std::int64_t)floor(sample() * (double)INT64_MAX);
4 years ago
}