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
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 :-(
The text was updated successfully, but these errors were encountered:
Imagine a simple action call
a(f())
wheref()
is some fluent. This is implicitly translated into{ start(a(f())); end(a(f())); }
. Now if some exogenous event changes the value off()
beforeend(a(f()))
becomes possible,end(a(f()))
suddenly refers to a different action call which has never been started and therefore never ends :-(The text was updated successfully, but these errors were encountered: