diff options
author | Benji Dial <benji@benjidial.net> | 2023-06-07 01:15:41 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2023-06-07 01:15:41 -0400 |
commit | a9afa12358ddcf413b9b0ca68b7e12f6db49a36e (patch) | |
tree | f5e49fa258dc68c814d4868da773c2e1ece7473b /tabulator-mpi | |
parent | c33cd477060bcf5400aaa4ae2283098a4103f2e6 (diff) | |
download | lib94-a9afa12358ddcf413b9b0ca68b7e12f6db49a36e.tar.gz |
actually seed prng
Diffstat (limited to 'tabulator-mpi')
-rw-r--r-- | tabulator-mpi/worker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tabulator-mpi/worker.cpp b/tabulator-mpi/worker.cpp index ea1b17a..55121aa 100644 --- a/tabulator-mpi/worker.cpp +++ b/tabulator-mpi/worker.cpp @@ -30,6 +30,7 @@ static void do_round(const lib94::warrior *w1, const lib94::warrior *w2, int &w1 } void worker_main(const lib94::warrior *const *warriors) { + lib94::seed_prng(time(0)); int buffer[4] = {-1}; while (1) { |