Shows how to set a seed in sitmo.
sitmo_engine_reset(n, seed)
n
An unsigned int that dictates how many realizations occur.
unsigned int
seed
An unsigned int that controls the rng seed.
A matrix with random sequences.
matrix
n = 10 a = sitmo_engine_reset(n, 1337) isTRUE(all.equal(a[,1],a[,2]))