48template<
typename IntType, IntType a, IntType c, IntType m, IntType val>
49class LinearCongruential
52 typedef IntType result_type;
53 static const bool has_fixed_range =
true;
54 static const result_type min_value = ( c == 0 ? 1 : 0 );
55 static const result_type max_value = m-1;
56 static const IntType multiplier = a;
57 static const IntType increment = c;
58 static const IntType modulus = m;
60 result_type min()
const {
return c == 0 ? 1 : 0; }
61 result_type max()
const {
return m-1; }
62 explicit LinearCongruential(IntType x0 = 1)
77 IntType getState()
const {
return _x; }
83 static IntType apply(IntType x)
85 return x = utils::const_mod<IntType, m>::mult_add(a, x, c);
87 bool validation(IntType x)
const {
return val == x; }
88 bool operator==(
const LinearCongruential& rhs)
const
89 {
return _x == rhs._x; }
91 inline void checkSeed(IntType x)
93 if (_x<min() || _x>=max())
94 throw FatalErrorException(A_FUNCINFO,String::format(
"Invalid seed v={0} min={1} max={2}",x,min(),max()));