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
// I copied this logic from the old code, but it seems strange to me. Why do we
Note that although seed is an array, we only ever read at most one value from it. If the array is empty or the property is missing altogether, the seed is automatically generated.
A better way to express this would be to make it so the seed can be either an integer or null. Not sure whether the property should be required or optional.
The text was updated successfully, but these errors were encountered:
alexdewar
changed the title
Config files can (bizarrely) contain multiple seeds
Config files can contain multiple seeds, even though only one is used
Aug 12, 2024
See:
healthgps/src/HealthGPS.Input/configuration_parsing.cpp
Line 238 in 4cfa3c2
Note that although
seed
is an array, we only ever read at most one value from it. If the array is empty or the property is missing altogether, the seed is automatically generated.A better way to express this would be to make it so the seed can be either an integer or
null
. Not sure whether the property should be required or optional.The text was updated successfully, but these errors were encountered: