MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / randint

Function randint

src/Core/Utils/MathUtils.cpp:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 std::mt19937 rng { rd() };
10
11 int randint(const int& min, const int& max)
12 {
13 std::uniform_int_distribution<int> uni(min, max);
14 return uni(rng);
15 }
16
17 double randfloat()
18 {

Callers 2

getRandomKeyFunction · 0.85
MathUtilsTests.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected