apalache icon indicating copy to clipboard operation
apalache copied to clipboard

[BUG] Bogus "Expected Spec to be in the canonical form Init /\ [][Next]_vars"

Open lemmy opened this issue 3 years ago • 2 comments

Reported as not in canonical form:

VARIABLE x
Init == x = TRUE

Spec == Init /\ [][UNCHANGED x]_x

Works fine:

VARIABLE x
Init == x = TRUE
Next == UNCHANGED x
Spec == Init /\ [][Next]_x

With APALACHE version 0.11.1-SNAPSHOT build v0.11.0-17-gf55663c

lemmy avatar Mar 10 '21 22:03 lemmy

Spec == Init /\ [][TRUE]_x

also not accepted.

lemmy avatar Mar 10 '21 22:03 lemmy

Right. Now Apalache is expecting an operator name like Next. A similar issue has been raised by @Quantifier

konnov avatar Mar 12 '21 14:03 konnov

Closing this, as it is effectively a duplicate of #468

Kukovec avatar Mar 14 '23 14:03 Kukovec