Closed gitoliver closed 3 months ago
// Seed with a real random value, if available static pcg_extras::seed_seq_from seed_source; // Make a random number engine static pcg32 rng(seed_source);
I don't think I've included it everywhere, but this is a bad idea.
It's now defined locally in the programs that use randomness; the glycoprotein builder and wiggle to site.
// Seed with a real random value, if available static pcg_extras::seed_seq_from seed_source;
// Make a random number engine
static pcg32 rng(seed_source);
I don't think I've included it everywhere, but this is a bad idea.