Created
July 3, 2022 06:11
-
-
Save Ryoga-exe/f6aa333fcfcc8d83149026550264f5fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inline unsigned int randxor() { | |
static unsigned int x=123456789,y=362436069,z=521288629,w=88675123; | |
unsigned int t; | |
t=(x^(x<<11));x=y;y=z;z=w; return( w=(w^(w>>19))^(t^(t>>8)) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment