+ xoshiro256ss (copied from kalman project)

This commit is contained in:
Roland Conybeare 2023-09-23 13:07:45 -04:00
commit fadbcd7b54
12 changed files with 1130 additions and 0 deletions

16
example/ex2/ex2.cpp Normal file
View file

@ -0,0 +1,16 @@
/* @file ex2.cpp */
#include "randomgen/xoshiro256.hpp"
#include "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 */