class Random {
private:
- template<class RNG>
+ template <class RNG>
using ValidRNG = typename std::enable_if<
- std::is_unsigned<typename std::result_of<RNG&()>::type>::value,
- RNG>::type;
+ std::is_unsigned<typename std::result_of<RNG&()>::type>::value,
+ RNG>::type;
public:
// Default generator type.
* to create a RNG with a good seed in production, and seed it yourself
* in test.
*/
- template <class RNG = DefaultGenerator>
- static void seed(ValidRNG<RNG>& rng);
+ template <class RNG = DefaultGenerator, class /* EnableIf */ = ValidRNG<RNG>>
+ static void seed(RNG& rng);
/**
* Create a new RNG, seeded with a good seed.
* to create a RNG with a good seed in production, and seed it yourself
* in test.
*/
- template <class RNG = DefaultGenerator>
- static ValidRNG<RNG> create();
+ template <class RNG = DefaultGenerator, class /* EnableIf */ = ValidRNG<RNG>>
+ static RNG create();
/**
* Returns a random uint32_t
*/
- template<class RNG = ThreadLocalPRNG>
- static uint32_t rand32(ValidRNG<RNG> rng = RNG()) {
+ static uint32_t rand32() {
+ ThreadLocalPRNG prng;
+ return rand32(prng);
+ }
+
+ /**
+ * Returns a random uint32_t given a specific RNG
+ */
+ template <class RNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint32_t rand32(RNG rng) {
uint32_t r = rng.operator()();
return r;
}
/**
* Returns a random uint32_t in [0, max). If max == 0, returns 0.
*/
- template<class RNG = ThreadLocalPRNG>
- static uint32_t rand32(uint32_t max, ValidRNG<RNG> rng = RNG()) {
+ static uint32_t rand32(uint32_t max) {
+ ThreadLocalPRNG prng;
+ return rand32(max, prng);
+ }
+
+ /**
+ * Returns a random uint32_t in [0, max) given a specific RNG.
+ * If max == 0, returns 0.
+ */
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint32_t rand32(uint32_t max, RNG rng = RNG()) {
if (max == 0) {
return 0;
}
/**
* Returns a random uint32_t in [min, max). If min == max, returns 0.
*/
- template<class RNG = ThreadLocalPRNG>
- static uint32_t rand32(uint32_t min,
- uint32_t max,
- ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint32_t rand32(uint32_t min, uint32_t max, RNG rng = RNG()) {
if (min == max) {
return 0;
}
/**
* Returns a random uint64_t
*/
- template<class RNG = ThreadLocalPRNG>
- static uint64_t rand64(ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint64_t rand64(RNG rng = RNG()) {
return ((uint64_t) rng() << 32) | rng();
}
/**
* Returns a random uint64_t in [0, max). If max == 0, returns 0.
*/
- template<class RNG = ThreadLocalPRNG>
- static uint64_t rand64(uint64_t max, ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint64_t rand64(uint64_t max, RNG rng = RNG()) {
if (max == 0) {
return 0;
}
/**
* Returns a random uint64_t in [min, max). If min == max, returns 0.
*/
- template<class RNG = ThreadLocalPRNG>
- static uint64_t rand64(uint64_t min,
- uint64_t max,
- ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static uint64_t rand64(uint64_t min, uint64_t max, RNG rng = RNG()) {
if (min == max) {
return 0;
}
/**
* Returns true 1/n of the time. If n == 0, always returns false
*/
- template<class RNG = ThreadLocalPRNG>
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
static bool oneIn(uint32_t n, ValidRNG<RNG> rng = RNG()) {
if (n == 0) {
return false;
/**
* Returns a double in [0, 1)
*/
- template<class RNG = ThreadLocalPRNG>
- static double randDouble01(ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static double randDouble01(RNG rng = RNG()) {
return std::generate_canonical<double, std::numeric_limits<double>::digits>
(rng);
}
/**
* Returns a double in [min, max), if min == max, returns 0.
*/
- template<class RNG = ThreadLocalPRNG>
- static double randDouble(double min, double max, ValidRNG<RNG> rng = RNG()) {
+ template <class RNG = ThreadLocalPRNG, class /* EnableIf */ = ValidRNG<RNG>>
+ static double randDouble(double min, double max, RNG rng = RNG()) {
if (std::fabs(max - min) < std::numeric_limits<double>::epsilon()) {
return 0;
}