- Set breakpoint on Init line
- Start debugging in MC mode (i.e. not simulation mode)
- "Continue" twice
- After stopped, select 2nd stackframe
- => Gets stuck during retrieving trace variable!!
Created
March 21, 2025 00:27
-
-
Save ocadaruma/5cb71e82bb3dfb8081afbc285d1eb49e to your computer and use it in GitHub Desktop.
TLCDebugger stuck issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INIT Init | |
NEXT Next | |
INVARIANT Inv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- MODULE test ---- | |
EXTENDS Naturals | |
VARIABLES x | |
Init == x = 0 | |
Next == x' = x + 1 | |
Inv == x # 3 | |
==== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment