You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally this would return the same value, but it doesn't currently (even after #57):
md5sum <(cargo run -- generate --explicit-seed=12345 2>/dev/null) <(cargo run -- generate --explicit-seed=12345 2>/dev/null)
I believe that this is due to the fact that serializing the WorkflowState HashMap yields keys and values in non-deterministic order. If so, it doesn't impact correctness, but it would still be reassuring to see the same output.
Fix this and add a test for same-seed-same-output.
The text was updated successfully, but these errors were encountered:
Ideally this would return the same value, but it doesn't currently (even after #57):
I believe that this is due to the fact that serializing the
WorkflowState
HashMap yields keys and values in non-deterministic order. If so, it doesn't impact correctness, but it would still be reassuring to see the same output.Fix this and add a test for same-seed-same-output.
The text was updated successfully, but these errors were encountered: