Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve RNG seeding, etc. #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

torchlight
Copy link

The old BagReseed function updates the seed with a non-bijective function and takes on only 2^16 values, so the cycle lengths are often on the order of 2^8, sometimes much shorter. It's not rare to see the exact same queues over and over during PC practice sessions.

The new one updates the seed with a full-period LCG of period 2^31, which should eliminate short cycles entirely. This change is not backwards-compatible: states from older versions of four-tris cannot be loaded after this change, and vice versa.

@torchlight torchlight changed the title Improve RNG seeding Improve RNG seeding, etc. Jan 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant