-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Random generation of initial states #83
base: main
Are you sure you want to change the base?
Conversation
2d09674
to
d5b7f59
Compare
An alternative way to do this is to let the state be a Maybe type, initially Nothing, and define a Setup action (with appropriate parameters) whose precondition is that the state is Nothing. The cost is that all other preconditions have to check for Just, as do nextState, postcondition etc. This is a recurring need, so I'm sure people would use it, but it does make the API a bit more complex, for something that is easy to do already. My inclination would probably be not to add this, although I can see arguments in favour too. |
This PR is precisely meant to address this clunkyness in the current design. Almost everyone ends up needing to do what you describe and it's always ugly one way or another. The API in the PR on the other hand imposes minimal overhead if you don't use it (just write |
78e4327
to
8d13c68
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proposal makes sense, just have a couple of comments on possible improvements to the code
quickcheck-dynamic/src/Test/QuickCheck/DynamicLogic/Internal.hs
Outdated
Show resolved
Hide resolved
There is one design decision left here that we need to discuss and that's how to deal with initial states in DL. Currently the low-level DL functionality punts on this and has you provide an initial state in your property while the monadic |
da7ba2f
to
7850e32
Compare
If one defines an |
The best example would be "when the initial state is drawn from this distribution, I expect this property to hold". E.g. when the protocol parameter for some delay is 0, we expect something to always happen immediately. That would be nice to express as a DL property I think? |
But then, it seems to me I could rather express that directly in the DL formula and have a special action initialising the system with some specific values. |
Indeed, but mixing that with a random |
87cde21
to
2660f9b
Compare
Hence why I am starting to have doubts about the value of this change. WDYT @bwbush? |
The initializing action is clunky in one direction, this is clunky in a different direction. I tend to prefer this design but let's think more carefully about what we want to be able to do on the DL side. You're saying that you want to be able to say |
Would you need to construct and pass explicitly |
Yes, you would. However, you would turn:
into
Or some variant of this where the original model doesn't have the explicit Anyway, note that the de# the PR can incorporate both of these techniques (given that we implement This is not a Peras-only problem. It appears in Peras, but the |
I agree the pattern of having an |
It's not quite symmetric for two reasons:
|
Fair enough. But while argument 2. is true, it seems to me most (all?) interesting generators and preconditions would require pattern matching or checking the state anyway. Removing one check for one specific, albeit arguably important, state does not seem to bring that much value. |
This introduces two changes:
initialState :: Gen state
instead ofinitialState :: state
and a new callbacksetup :: state -> m ()
toRunModel
.Checklist: