Update xorshift.py

bug fix(typo)
This commit is contained in:
niart120 2021-12-22 18:29:05 +09:00
parent 9e14273cef
commit 85aa8e0f36

View File

@ -11,7 +11,7 @@ class Xorshift(object):
s2 = self.z
s3 = self.w
tmp = s0 ^ s0 << 11 & 0xFFFFFFFF
t = s0 ^ s0 << 11 & 0xFFFFFFFF
self.x = s1
self.y = s2
self.z = s3