diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-23 18:55:48 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 9eb1a379853b088df0ab3a4beae4e79eaead4823 (patch) | |
| tree | 0e2855fa9b088c1ae4c3b28c05827d7d19a457c4 /include/xorshift64.h | |
| parent | 18496a371a2204e8c1b448921a87108f4aa7ada3 (diff) | |
Fixed some important bugs
Diffstat (limited to 'include/xorshift64.h')
| -rw-r--r-- | include/xorshift64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xorshift64.h b/include/xorshift64.h index a12a38d..ee41abc 100644 --- a/include/xorshift64.h +++ b/include/xorshift64.h @@ -5,7 +5,7 @@ extern uint64_t xors; -#define XORSHIFT { \ +#define XORSHIFT64 { \ xors ^= xors >> 12; \ xors ^= xors << 25; \ xors ^= xors >> 27; \ |
