qxLib
constexpr_random.h
Go to the documentation of this file.
1 /**
2 
3  @file constexpr_random.h
4  @author Khrapov
5  @date 11.09.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
13 
14 #if QX_CONSTEXPR_SEQUENCE_SUPPORTED
15 
16  #include <qx/typedefs.h>
17 
18 namespace qx
19 {
20 
21 /**
22  @brief An algorithm that yields a sequence of pseudo-randomized numbers
23  calculated with a discontinuous piecewise linear equation
24  @tparam nModulus - the "modulus" value
25  @tparam nMultiplier - the "multiplier" value
26  @tparam nIncrement - the "increment" value
27  @param nPrev - prev value of sequence
28  @retval - next value of sequence
29 **/
30 template<u32 nModulus, u32 nMultiplier, u32 nIncrement>
31 constexpr u32 linear_congruential_generator(u32 nPrev)
32 {
33  return (nMultiplier * nPrev + nIncrement) % nModulus;
34 }
35 
36 /**
37  @brief Linear_congruential_generator limited to MIN and MAX
38  @tparam nMin - min distribution value (including)
39  @tparam nMax - man distribution value (excluding)
40  @tparam nModulus - the "modulus" value
41  @tparam nMultiplier - the "multiplier" value
42  @tparam nIncrement - the "increment" value
43  @param nPrev - prev value of sequence
44  @retval - next value of sequence
45 **/
46 template<u32 nMin, u32 nMax, u32 nModulus, u32 nMultiplier, u32 nIncrement>
47 constexpr u32 uniform_distribution(u32 nPrev)
48 {
49  return nMin + linear_congruential_generator<nModulus, nMultiplier, nIncrement>(nPrev) % nMax;
50 }
51 
52 // returns preudo random number of uniform distribution with each next() call
53 template<
54  typename Tag,
55  u32 nSeed = 0u,
56  u32 nMin = std::numeric_limits<u32>::min(),
57  u32 nMax = std::numeric_limits<u32>::max(),
58  u32 nModulus = 2147483648u,
59  u32 nMultiplier = 1103515245u,
60  u32 nIncrement = 12345u>
61 using constexpr_random =
62  constexpr_sequence<Tag, u32, nSeed, uniform_distribution<nMin, nMax, nModulus, nMultiplier, nIncrement> >;
63 
64 } // namespace qx
65 
66 #endif
67 
68 /**
69  @def QX_UNIQUE_SEED
70  @brief Creates unique u32 seed for current: file, date, time (seconds) and line number
71 **/
72 #define QX_UNIQUE_SEED \
73  static_cast<u32>( \
74  (qx::murmur_32_hash(__FILE__ __DATE__ __TIME__, 42u, qx::strlen(__FILE__ __DATE__ __TIME__)) + __LINE__))
uint32_t u32
0 .. 18 446 744 073 709 551 615
Definition: typedefs.h:24