aboutsummaryrefslogtreecommitdiffstats
path: root/random.h
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-05-14 17:26:52 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-05-14 17:26:52 -0400
commitaf1740bde341ef7703696cb7fd26d66cd8a37462 (patch)
treecc2276fbe88fd225f068a0eb89ea8b28846f4961 /random.h
parent8a8fab0c68d867d1e1e870252819d15e2b6d0c6f (diff)
move classes to headers
Diffstat (limited to 'random.h')
-rw-r--r--random.h14
1 files changed, 14 insertions, 0 deletions
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 <random>
+
+inline double randomN()
+{
+ static std::uniform_real_distribution<double> distribution (0.0, 1.0);
+ static std::mt19937 generator;
+ return distribution(generator);
+}
+
+#endif // RANDOM_H
+