PROBI  1.0
 All Classes Functions
Randomness.hpp
1 #ifndef RANDOMNESS_H
2 #define RANDOMNESS_H
3 
4 #include <random>
5 
9 class Randomness
10 {
11 public:
12  static std::mt19937 * getMT19937()
13  {
14  return &mt19937Generator;
15  }
16 private:
17  static std::mt19937 mt19937Generator;
18 };
19 
20 #endif