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
GUIDs are generated using random number generators, but they do not seed from the global random number generator state.
test.glm
print ${GUID}
shell$ gridlabd -D randomseed=1 /tmp/test.glm /tmp/test.glm(1): f9493e71-8fa8-4f76-cab6-82e71391b5e5 shell$ gridlabd -D randomseed=1 /tmp/test.glm /tmp/test.glm(1): d6687571-53e7-4921-20b0-162cd85e395d
The result should be:
shell$ gridlabd -D randomseed=1 /tmp/test.glm /tmp/test.glm(1): f9493e71-8fa8-4f76-cab6-82e71391b5e5 shell$ gridlabd -D randomseed=1 /tmp/test.glm /tmp/test.glm(1): f9493e71-8fa8-4f76-cab6-82e71391b5e5
The text was updated successfully, but these errors were encountered:
dchassin
No branches or pull requests
Problem description
GUIDs are generated using random number generators, but they do not seed from the global random number generator state.
Steps to reproduce
test.glm
:Expected behavior
The result should be:
The text was updated successfully, but these errors were encountered: