NuSMV
1 program
Added 2026-02-12T11:43:42Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 3778f41da6 · authored 2026-02-12T12:44:38+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple State Machine
Provenance: commit 3778f41da6 · authored 2026-02-12T12:44:38+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE main
VAR
request : boolean;
state : {ready, busy};
ASSIGN
init(state) := ready;
next(state) :=
case
state = ready & request : busy;
state = busy & !request : ready;
TRUE : state;
esac;
SPEC AG(request -> AF state = busy)
SPEC AG(state = busy -> EF state = ready)