You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Obsequi: Use ANSI C LCG instead of random() for g_zobrist init
musl implements random() differently than glibc.
The output of the program is thus dependent on this implementation
detail and could differ between platforms. To remediate that, we
replace it by a very simple PRNG (ANSI C LCG).
Warning: [^1] indicates this PRNG have quite a poor LSB randomness.
[^1]: Entacher, Karl. (1999). A Collection of Selected Pseudorandom
Number Generators With Linear Structures.
Fixesllvm/llvm-project#94048
0 commit comments