2023-11-19 14:32:29 +00:00
|
|
|
#include "../../../squiggle.h"
|
2023-07-23 22:37:45 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// set randomness seed
|
|
|
|
uint64_t* seed = malloc(sizeof(uint64_t));
|
|
|
|
*seed = 1000; // xorshift can't start with 0
|
|
|
|
|
2023-11-18 18:51:34 +00:00
|
|
|
// ...
|
|
|
|
|
2023-07-23 22:37:45 +00:00
|
|
|
free(seed);
|
|
|
|
}
|