#include "rand.hpp"

namespace Random {
  std::random_device RNG;
  std::mt19937 GENERATOR(RNG());
}