-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
proposal: x/exp/rand: give greater control over PCGSource
#49934
Comments
CC @robpike |
The seeding methods seem reasonable. Moving to a Next model moves it further from the original math/rand than I'd like. Send a CL? SeedPCG should probably be Seed64 so other sources could use it. |
Note that the PRNG state can be marshaled and unmarshaled which already provide these functionalities (though not directly and they require that the user knows the size of the seed fields — this could be noted in the documentation). |
Change https://go.dev/cl/398354 mentions this issue: |
I believe this is done for math/rand/v2 https://pkg.go.dev/math/rand/v2#NewPCG |
The current implementation of
PCGSource
has a number of missing features, mostly related to control over the seeding process. TheSeed()
method even has aTODO
in it:Similarly, there's no way to get access to the current seed data.
Bikeshed Color 1
I propose adding a new function and two methods:
This would give much greater control over the source.
Bikeshed Color 2
Alternatively, I recently copied the existing implementation in order to remove the internal state from it completely for a somewhat specific use case. I replaced the entire system with single function,
func Next(high, low uint64) (n, nhigh, nlow uint64)
, that gave me full control over the generation.If such a function was added, the existing implementation could easily be changed to just call any such function instead:
Summary
I'm bikeshedding a bit, but my only point is that I'd like some greater control over the
PCGSource
implementation's seeding process.The text was updated successfully, but these errors were encountered: