From af1740bde341ef7703696cb7fd26d66cd8a37462 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 May 2024 17:26:52 -0400 Subject: move classes to headers --- random.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 random.h (limited to 'random.h') diff --git a/random.h b/random.h new file mode 100644 index 0000000..fb0c7b3 --- /dev/null +++ b/random.h @@ -0,0 +1,14 @@ +#ifndef RANDOM_H +#define RANDOM_H + +#include + +inline double randomN() +{ + static std::uniform_real_distribution distribution (0.0, 1.0); + static std::mt19937 generator; + return distribution(generator); +} + +#endif // RANDOM_H + -- cgit v1.2.3