DVE
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: DIVINE Event, DiVinE language
Provenance: commit b21c057a5c · authored 2026-03-12T01:38:06+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Peterson's Mutual Exclusion Algorithm
Provenance: commit b21c057a5c · authored 2026-03-12T01:38:06+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
byte flag0 = 0;
byte flag1 = 0;
byte turn = 0;
process P0 {
state idle, trying, critical;
init idle;
trans
idle -> trying { effect flag0 = 1; turn = 1; },
trying -> critical { guard flag1 == 0 || turn == 0; },
critical -> idle { effect flag0 = 0; };
}
process P1 {
state idle, trying, critical;
init idle;
trans
idle -> trying { effect flag1 = 1; turn = 0; },
trying -> critical { guard flag0 == 0 || turn == 1; },
critical -> idle { effect flag1 = 0; };
}
system async;