##// END OF EJS Templates
Defines VariableState struct (1)...
Defines VariableState struct (1) Creates the struct representing a test state (variable, expected range of the variable, etc.). This structure will be used to validate an operation after its execution

File last commit:

r1175:9f9ab053f00b
r1187:4f6d96e79a3a
Show More
FuzzingUtils.cpp
25 lines | 527 B | text/x-c | CppLexer
#include "FuzzingUtils.h"
RandomGenerator &RandomGenerator::instance()
{
static auto instance = RandomGenerator();
return instance;
}
double RandomGenerator::generateDouble(double min, double max)
{
std::uniform_real_distribution<double> dist{min, max};
return dist(m_Mt);
}
int RandomGenerator::generateInt(int min, int max)
{
std::uniform_int_distribution<int> dist{min, max};
return dist(m_Mt);
}
RandomGenerator::RandomGenerator()
{
std::random_device rd{};
m_Mt = std::mt19937{rd()};
}