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
Various places in the code use tryGen, erroring out in case a certain number of attempts does not lead to a random value with a desired property. Hopefully, such a runtime error will never be encountered in real, because it would crash "the whole thing". So, it would be good to:
analyze whether indeed all these uses of tryGen are with predicates known to be satisfiable at their use sites,
then probably replace tryGen with suchThat.
The text was updated successfully, but these errors were encountered:
Various places in the code use
tryGen
, erroring out in case a certain number of attempts does not lead to a random value with a desired property. Hopefully, such a runtime error will never be encountered in real, because it would crash "the whole thing". So, it would be good to:tryGen
are with predicates known to be satisfiable at their use sites,tryGen
withsuchThat
.The text was updated successfully, but these errors were encountered: