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
The semantics of our guards and link predicates rely on the assumption that the examined variables have a defined value. That is, the process
x > 3 -> P
should only proceed as P if the variable x has a value that is higher than 3.
The current implementation stores 0x7FFFFFFF in all variables that are initialized to undef. This should be treated as a sentinel value everywhere a guard or link predicate is evaluated and it should disallow the evaluation to proceed.
By the way, this also means that the logic of guards is "intuitionistic", in the sense that guards like this:
φ or !φ -> P
are not guaranteed to succeed.
The text was updated successfully, but these errors were encountered:
The semantics of our guards and link predicates rely on the assumption that the examined variables have a defined value. That is, the process
should only proceed as
P
if the variablex
has a value that is higher than 3.The current implementation stores
0x7FFFFFFF
in all variables that are initialized toundef
. This should be treated as a sentinel value everywhere a guard or link predicate is evaluated and it should disallow the evaluation to proceed.By the way, this also means that the logic of guards is "intuitionistic", in the sense that guards like this:
are not guaranteed to succeed.
The text was updated successfully, but these errors were encountered: