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)
LLM (this repo) · 1

Related languages

Eve (0.48)Lime (0.30)EasyLanguage (0.28)Io (0.27)Xi (0.27)

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
code.dve · added: 2026-03-12T10:00:00Z
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;

Contribute — propose a file extension

Tell us where to find evidence about DVE (mapped to pl/dve). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/DVE/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Dusa DVector →