Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

action may never end if its arguments change while it is running #34

Open
vmatare opened this issue Feb 3, 2020 · 1 comment
Open
Labels
bug Something isn't working language semantics

Comments

@vmatare
Copy link
Collaborator

vmatare commented Feb 3, 2020

Imagine a simple action call a(f()) where f() is some fluent. This is implicitly translated into { start(a(f())); end(a(f())); }. Now if some exogenous event changes the value of f() before end(a(f())) becomes possible, end(a(f())) suddenly refers to a different action call which has never been started and therefore never ends :-(

@vmatare vmatare added bug Something isn't working language labels Feb 3, 2020
@vmatare
Copy link
Collaborator Author

vmatare commented Feb 3, 2020

It seems the clean way to fix this is by implementing #14 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working language semantics
Projects
None yet
Development

No branches or pull requests

1 participant