Algos directory is setup.

This commit is contained in:
Zed A. Shaw 2026-02-27 12:07:01 -05:00
parent 0064664556
commit b91e9ffaf6
38 changed files with 46 additions and 47 deletions

View file

@ -1,13 +0,0 @@
#include "rand.hpp"
namespace Random {
std::random_device RNG;
std::mt19937 GENERATOR(RNG());
std::chrono::milliseconds milliseconds(int from, int to) {
int tick = Random::uniform_real(float(from), float(to));
return std::chrono::milliseconds{tick};
}
}