We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python 2.7 with pip install csa
pip install csa
Based on what I understand block() changes seed every time it is evoked so for
block()
this results in the above.
However, for the same probability of success, here r = random(0.5) if we evoke block of the same size
r = random(0.5)
block
and again
and so on ...
If block() re-seeds every time it is called, should all of the above look exactly the same?
PS: This issue is persistent also for python 3.7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Python 2.7 with
pip install csa
Based on what I understand
block()
changes seed every time it is evoked so forthis results in the above.
However, for the same probability of success, here
r = random(0.5)
if we evokeblock
of the same sizeand again
and so on ...
If
block()
re-seeds every time it is called, should all of the above look exactly the same?PS: This issue is persistent also for python 3.7
The text was updated successfully, but these errors were encountered: