Couldn't resolve infix operator symbol `..'. [17, 18]
Could not find declaration or definition of symbol '..'. [17, 19]
Couldn't resolve infix operator symbol `<='. [21, 20]
Could not find declaration or definition of symbol '<='. [21, 26]
That's here:
Init == (* Global variables *)
/\ x \in 1..10 (* here *)
/\ pc = "Lbl_1"
Lbl_1 == /\ pc = "Lbl_1"
/\ Assert(x ^ 2 <= 100, "Failure of assertion at line 9, column 5.") (* here*)
/\ pc' = "Done"
/\ x' = x
If I follow the instructions at https://github.com/tlaplus/vscode-tlaplus/wiki/Getting-Started, it results in the following problems in the translated TLA+:
That's here: