| 117 | |
| 118 | private: |
| 119 | RandomState() : m_generator(m_seed) {} |
| 120 | std::mt19937_64 m_generator; |
| 121 | const static int m_seed = 0; |
| 122 | static RandomState* instance() { return &m_instance; } |
nothing calls this directly
no outgoing calls
no test coverage detected