fixed prev method

This commit is contained in:
niart120 2022-01-10 06:02:27 +09:00
parent 5fbfcba2b5
commit 9b6b0c35cd

View File

@ -27,6 +27,8 @@ class Xorshift(object):
t = s2 >> 19 ^ s2 ^ s3
t ^= t >> 8
t ^= t >> 16
t ^= t << 11 & 0xFFFFFFFF
t ^= t << 22 & 0xFFFFFFFF