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
Currently, the model checker only supports the forall quantifiers for future expressions. It would be cool if it could also support the existential quantifier (i.e. ∃).
This would enable a user to express things like:
behavior of "Philosophers"
they should "not starve" in atLeastOneInterleaving {
implicit tec =>newPhilosophers(5).run will not complete
}
The text was updated successfully, but these errors were encountered:
phiros
changed the title
Support existential quantifier
Support existential quantifier for future expressions
Jan 20, 2019
Now it's possible to test for never completing futures. Tests for ∃ or could is right now a bit broken. Aside from that bug, this functionality should be right now available.
Example:
behavior of "Philosophers"
they should "not starve" in everyInterleaving {
implicit tec =>newPhilosophers(5).run willNot complete
}
Currently, the model checker only supports the forall quantifiers for future expressions. It would be cool if it could also support the existential quantifier (i.e.
∃
).This would enable a user to express things like:
The text was updated successfully, but these errors were encountered: