aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/Random.hpp
blob: 4a4d9799b6c8ecbf4775fc3815704664fce706c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __HYPERNEAT_RANDOM_HPP__
#define __HYPERNEAT_RANDOM_HPP__

#include <random>

namespace hyperneat
{
    using RandGen  = std::mt19937_64;
    using IntDist  = std::uniform_int_distribution<size_t>;
    using RealDist = std::uniform_real_distribution<double>;
    using BellDist = std::normal_distribution<double>;
}

#endif