Calc: Use std::mt19937 with a deterministic seed as the random engine

This commit is contained in:
Birunthan Mohanathas
2013-12-08 15:06:01 +02:00
parent ec9c2ef598
commit f5fb87f336
2 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,6 @@
#define __MEASURECALC_H__
#include "Measure.h"
#include <random>
class MeasureCalc : public Measure
{
@ -51,9 +50,6 @@ private:
std::vector<int> m_UniqueNumbers;
void UpdateUniqueNumberList();
// Uniform Random Number Generator
static std::default_random_engine c_RandomEngine;
};
#endif