tmp/tmpb37ir660/{from.md → to.md}
RENAMED
|
@@ -65,12 +65,12 @@ public:
|
|
| 65 |
|
| 66 |
// engine characteristics
|
| 67 |
static constexpr result_type multiplier = a;
|
| 68 |
static constexpr result_type increment = c;
|
| 69 |
static constexpr result_type modulus = m;
|
| 70 |
-
static constexpr result_type min() { return c == 0u ? 1u: 0u }
|
| 71 |
-
static constexpr result_type max() { return m - 1u }
|
| 72 |
static constexpr result_type default_seed = 1u;
|
| 73 |
|
| 74 |
// constructors and seeding functions
|
| 75 |
explicit linear_congruential_engine(result_type s = default_seed);
|
| 76 |
template<class Sseq> explicit linear_congruential_engine(Sseq& q);
|
|
|
|
| 65 |
|
| 66 |
// engine characteristics
|
| 67 |
static constexpr result_type multiplier = a;
|
| 68 |
static constexpr result_type increment = c;
|
| 69 |
static constexpr result_type modulus = m;
|
| 70 |
+
static constexpr result_type min() { return c == 0u ? 1u: 0u; }
|
| 71 |
+
static constexpr result_type max() { return m - 1u; }
|
| 72 |
static constexpr result_type default_seed = 1u;
|
| 73 |
|
| 74 |
// constructors and seeding functions
|
| 75 |
explicit linear_congruential_engine(result_type s = default_seed);
|
| 76 |
template<class Sseq> explicit linear_congruential_engine(Sseq& q);
|