xo-umbrella2/xo-randomgen/include/xo/randomgen/normalgen.hpp
Roland Conybeare 6a991f657c git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen
subrepo:
  subdir:   "xo-randomgen"
  merged:   "b9b7650d"
upstream:
  origin:   "git@github.com:Rconybea/xo-randomgen.git"
  branch:   "main"
  commit:   "b9b7650d"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 21:32:39 -04:00

14 lines
337 B
C++

/* @file normalgen.hpp */
#pragma once
#include "generator.hpp"
#include <random>
namespace xo {
namespace rng {
/* Engine: e.g. xo::rng::xoshiro256 or std::mt19937 */
template <class Engine>
using normalgen = generator<Engine, std::normal_distribution<double>>;
} /*namespace rng*/
} /*namespace xo*/