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
When the modifier sequential is used on a symbol, the order of execution is reversed.
The last case is evaluated first ("toto (⊤ ∧ ⊤) ↪ ⊥" in the below example).
sequential symbol toto: Prop → Prop;
rule toto (⊤ ∧ ⊤) ↪ ⊤
with toto (⊤ ∧ ⊤) ↪ ⊥;
compute toto (⊤ ∧ ⊤); // compute ⊥
The text was updated successfully, but these errors were encountered:
Hi everyone!
When the modifier
sequential
is used on a symbol, the order of execution is reversed.The last case is evaluated first (
"toto (⊤ ∧ ⊤) ↪ ⊥"
in the below example).The text was updated successfully, but these errors were encountered: