19
19
#include < stdlib.h>
20
20
21
21
// 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
+
26
33
kvrandom_lcg_nr_simple ()
27
- : seed_(default_seed) {
34
+ : seed_(default_seed) {
28
35
}
29
- explicit kvrandom_lcg_nr_simple (seed_type seed )
30
- : seed_(seed ) {
36
+ explicit kvrandom_lcg_nr_simple (seed_type s )
37
+ : seed_(s ) {
31
38
}
32
- void reset (seed_type seed ) {
33
- seed_ = seed ;
39
+ void seed (seed_type s ) {
40
+ seed_ = s ;
34
41
}
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);
37
45
}
38
- private:
46
+
47
+ private:
39
48
uint32_t seed_;
40
49
enum { default_seed = 819234718U , a = 1664525U , c = 1013904223U };
41
50
};
42
51
43
52
// A combination version of the NR LCG that uses only its higher order
44
53
// digits. (In the default NR LCG the lowest bits have less randomness; e.g.,
45
54
// 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 );
53
65
}
54
66
};
55
67
56
68
// 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
+
61
80
kvrandom_psdes_nr () {
62
- reset (1 );
81
+ seed (1 );
63
82
}
64
- explicit kvrandom_psdes_nr (seed_type seed ) {
65
- reset ( seed);
83
+ explicit kvrandom_psdes_nr (seed_type s ) {
84
+ seed (s );
66
85
}
67
- void reset (seed_type seed ) {
68
- seed_ = seed ;
69
- next_ = 1 ;
86
+ void seed (seed_type s ) {
87
+ seed_ = s ;
88
+ next_ = 1 ;
70
89
}
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;
75
94
}
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 );
78
97
}
79
- private:
98
+ private:
80
99
uint32_t seed_;
81
100
uint32_t next_;
82
101
enum { niter = 4 };
@@ -85,14 +104,23 @@ class kvrandom_psdes_nr { public:
85
104
};
86
105
87
106
// 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
+
89
117
kvrandom_random () {
90
118
}
91
- void reset (uint32_t seed ) {
92
- srandom (seed );
119
+ void seed (uint32_t s ) {
120
+ srandom (s );
93
121
}
94
- int32_t next () const {
95
- return random ();
122
+ result_type operator ()() {
123
+ return random ();
96
124
}
97
125
};
98
126
0 commit comments