Eclair
1 program
Added 2026-02-13T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 9e2de610a0 · authored 2026-02-13T16:47:11+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
Transitive Closure
Provenance: commit 9e2de610a0 · authored 2026-02-13T16:47:11+01:00 · agent claude-code · model sonnet · WebSearch disabled
@def edge(u32, u32) input.
@def reachable(u32, u32) output.
reachable(x, y) :-
edge(x, y).
reachable(x, z) :-
edge(x, y),
reachable(y, z).