Skip to content

Instantly share code, notes, and snippets.

@lukasa1993
Last active January 4, 2016 06:48
Show Gist options
  • Save lukasa1993/8583902 to your computer and use it in GitHub Desktop.
Save lukasa1993/8583902 to your computer and use it in GitHub Desktop.
int a = 211;
int c = 0;
int m = 253;//2^8-3
long wkgGenerator (long z)
{
long m = 1 << 7;
return (z * a + c) % m;
}
float wyvetili (float zi)
{
if (zi > 0 && zi <= 0.22)
return 21;
else if (zi > 0.22 && zi <= 0.39)
return 10;
else if (zi > 0.39)
return 18;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment