Add 'xo-randomgen/' from commit '44a31724ec'

git-subtree-dir: xo-randomgen
git-subtree-mainline: 57170366da
git-subtree-split: 44a31724ec
This commit is contained in:
Roland Conybeare 2025-05-10 18:54:18 -05:00
commit ae78de305f
21 changed files with 788 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* @file ex2.cpp */
#include "xo/randomgen/xoshiro256.hpp"
#include "xo/randomgen/random_seed.hpp"
using namespace xo;
using namespace xo::rng;
int
main(int argc, char ** argv) {
Seed<xoshiro256ss> seed;
xoshiro256ss eng(seed);
} /*main*/
/* end ex2.cpp */