From e6ab4a8ed100d5d5b7611c74cf3ccd556f1f1d71 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 19:04:34 +0100 Subject: Initial commit --- include/HyperNeat/Utils/Random.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/HyperNeat/Utils/Random.hpp (limited to 'include/HyperNeat/Utils/Random.hpp') diff --git a/include/HyperNeat/Utils/Random.hpp b/include/HyperNeat/Utils/Random.hpp new file mode 100644 index 0000000..4a4d979 --- /dev/null +++ b/include/HyperNeat/Utils/Random.hpp @@ -0,0 +1,14 @@ +#ifndef __HYPERNEAT_RANDOM_HPP__ +#define __HYPERNEAT_RANDOM_HPP__ + +#include + +namespace hyperneat +{ + using RandGen = std::mt19937_64; + using IntDist = std::uniform_int_distribution; + using RealDist = std::uniform_real_distribution; + using BellDist = std::normal_distribution; +} + +#endif -- cgit v1.2.1