Skip to content

Commit e55c168

Browse files
committed
Test random generators have a more standard interface.
And braces.
1 parent c832ba7 commit e55c168

7 files changed

+445
-313
lines changed

kvrandom.hh

+69-41
Original file line numberDiff line numberDiff line change
@@ -19,64 +19,83 @@
1919
#include <stdlib.h>
2020

2121
// A simple LCG with parameters from Numerical Recipes.
22-
class kvrandom_lcg_nr_simple { public:
23-
enum { min_value = 0, max_value = 0xFFFFFFFFU };
24-
typedef uint32_t value_type;
25-
typedef uint32_t seed_type;
22+
class kvrandom_lcg_nr_simple {
23+
public:
24+
using result_type = uint32_t;
25+
using seed_type = uint32_t;
26+
static constexpr result_type min() {
27+
return 0;
28+
}
29+
static constexpr result_type max() {
30+
return 0xFFFFFFFFU;
31+
}
32+
2633
kvrandom_lcg_nr_simple()
27-
: seed_(default_seed) {
34+
: seed_(default_seed) {
2835
}
29-
explicit kvrandom_lcg_nr_simple(seed_type seed)
30-
: seed_(seed) {
36+
explicit kvrandom_lcg_nr_simple(seed_type s)
37+
: seed_(s) {
3138
}
32-
void reset(seed_type seed) {
33-
seed_ = seed;
39+
void seed(seed_type s) {
40+
seed_ = s;
3441
}
35-
value_type next() {
36-
return (seed_ = seed_ * a + c);
42+
result_type operator()() {
43+
seed_ = seed_ * a + c;
44+
return (seed_ = seed_ * a + c);
3745
}
38-
private:
46+
47+
private:
3948
uint32_t seed_;
4049
enum { default_seed = 819234718U, a = 1664525U, c = 1013904223U };
4150
};
4251

4352
// A combination version of the NR LCG that uses only its higher order
4453
// digits. (In the default NR LCG the lowest bits have less randomness; e.g.,
4554
// the low bit flips between 0 and 1 with every call.)
46-
class kvrandom_lcg_nr : public kvrandom_lcg_nr_simple { public:
47-
enum { min_value = 0, max_value = 0x7FFFFFFF };
48-
typedef int32_t value_type;
49-
value_type next() {
50-
uint32_t x0 = kvrandom_lcg_nr_simple::next(),
51-
x1 = kvrandom_lcg_nr_simple::next();
52-
return (x0 >> 15) | ((x1 & 0x7FFE) << 16);
55+
class kvrandom_lcg_nr : public kvrandom_lcg_nr_simple {
56+
public:
57+
static constexpr result_type max() {
58+
return 0x7FFFFFFFU;
59+
}
60+
61+
result_type operator()() {
62+
uint32_t x0 = kvrandom_lcg_nr_simple::operator()();
63+
uint32_t x1 = kvrandom_lcg_nr_simple::operator()();
64+
return (x0 >> 15) | ((x1 & 0x7FFE) << 16);
5365
}
5466
};
5567

5668
// A random number generator taken from NR's ran4. Based on hashing.
57-
class kvrandom_psdes_nr { public:
58-
enum { min_value = 0, max_value = 0xFFFFFFFFU };
59-
typedef uint32_t value_type;
60-
typedef uint32_t seed_type;
69+
class kvrandom_psdes_nr {
70+
public:
71+
using result_type = uint32_t;
72+
using seed_type = uint32_t;
73+
static constexpr result_type min() {
74+
return 0;
75+
}
76+
static constexpr result_type max() {
77+
return 0xFFFFFFFFU;
78+
}
79+
6180
kvrandom_psdes_nr() {
62-
reset(1);
81+
seed(1);
6382
}
64-
explicit kvrandom_psdes_nr(seed_type seed) {
65-
reset(seed);
83+
explicit kvrandom_psdes_nr(seed_type s) {
84+
seed(s);
6685
}
67-
void reset(seed_type seed) {
68-
seed_ = seed;
69-
next_ = 1;
86+
void seed(seed_type s) {
87+
seed_ = s;
88+
next_ = 1;
7089
}
71-
value_type next() {
72-
uint32_t value = psdes(seed_, next_);
73-
++next_;
74-
return value;
90+
result_type operator()() {
91+
uint32_t value = psdes(seed_, next_);
92+
++next_;
93+
return value;
7594
}
76-
value_type operator[](uint32_t index) const {
77-
return psdes(seed_, index);
95+
result_type operator[](uint32_t index) const {
96+
return psdes(seed_, index);
7897
}
79-
private:
98+
private:
8099
uint32_t seed_;
81100
uint32_t next_;
82101
enum { niter = 4 };
@@ -85,14 +104,23 @@ class kvrandom_psdes_nr { public:
85104
};
86105

87106
// a wrapper around random(), for backwards compatibility
88-
class kvrandom_random { public:
107+
class kvrandom_random {
108+
public:
109+
using result_type = uint32_t;
110+
static constexpr result_type min() {
111+
return 0;
112+
}
113+
static constexpr result_type max() {
114+
return 0x7FFFFFFFU;
115+
}
116+
89117
kvrandom_random() {
90118
}
91-
void reset(uint32_t seed) {
92-
srandom(seed);
119+
void seed(uint32_t s) {
120+
srandom(s);
93121
}
94-
int32_t next() const {
95-
return random();
122+
result_type operator()() {
123+
return random();
96124
}
97125
};
98126

kvrow.hh

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class query_json_scanner {
297297
return nleft_ != 0;
298298
}
299299
private:
300-
query<R> &q_;
300+
query<R>& q_;
301301
int nleft_;
302302
lcdf::Json& request_;
303303
lcdf::String firstkey_;

0 commit comments

Comments
 (0)