Dedalus

1 program Added 2026-03-10T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit eba36126a5 · authored 2026-03-10T18:08:36+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

DEDAL (0.45)PLUS (0.25)Zelus (0.23)Stylus (0.21)Dedukti (0.20)

LLM-contributed programs

Reliable Broadcast

Provenance: commit eba36126a5 · authored 2026-03-10T18:08:36+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.dl · added: 2026-03-10T12:00:00Z
// Reliable broadcast in Dedalus (temporal Datalog for distributed systems)
// From: Alvaro et al., "Dedalus: Datalog in Time and Space", 2011

// A node persists facts it knows across time steps
know(Node, Fact)@next :- know(Node, Fact);

// When a message is received, the node learns it
know(Node, Msg)@next :- recv(Node, Msg);

// A node sends a known message to each neighbor (async = non-deterministic future)
send(Neighbor, Msg)@async :- know(Node, Msg), neighbor(Node, Neighbor);

// Deliver the message to the application layer
deliver(Msg) :- know(Me, Msg), myNode(Me);

Contribute — propose a file extension

Tell us where to find evidence about Dedalus (mapped to pl/dedalus). 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/Dedalus/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← DEDAL Deductive language →