ConGolog

1 program Added 2026-03-17T03:38:35Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Concurrent Golog
Provenance: commit 2e6df040fb · authored 2026-03-17T04:39:04+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/congolog
LLM (this repo) · 1Pldb

Related languages

Concurrent Prolog (0.60)Concurrent C (0.46)CML (0.39)Concurrent ML (0.39)Concurrent Clean (0.38)

LLM-contributed programs

Concurrent Delivery Robot

Provenance: commit 2e6df040fb · authored 2026-03-17T04:39:04+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.golog · added: 2026-03-17T03:38:35Z
/* ConGolog: Concurrent Delivery Robot
   Demonstrates concurrent execution of agent procedures.
   ConGolog extends Golog with concurrent composition (||),
   prioritized concurrency (>>), and interrupt handling. */

/* Primitive actions */
prim_action(pickup(X)).
prim_action(putdown(X)).
prim_action(move(Loc)).
prim_action(ring_bell).
prim_action(open_door).

/* Possibility axioms */
poss(pickup(X), S) :-
    on(X, table, S),
    \+ holding(_, S).
poss(putdown(X), S) :-
    holding(X, S).
poss(move(Loc), S) :-
    at(robot, _, S),
    Loc \= noplace.
poss(ring_bell, _S).
poss(open_door, S) :-
    door_locked(S).

/* Initial situation */
initially(on(block1, table)).
initially(on(block2, table)).
initially(at(robot, room1)).
initially(door_locked).

/* ConGolog procedures */
proc(carry(X, Dest),
    pickup(X) : move(Dest) : putdown(X)).

proc(answer_door,
    ring_bell : move(entrance) : open_door).

/* Main program: concurrent delivery and door handling */
proc(main,
    carry(block1, room2) || answer_door).

:- do(main, s0, _SF), write('Tasks completed.'), nl.

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

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