Koord
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: KoordLang
Provenance: commit c7dd897954 · authored 2026-03-06T09:40:20+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
Rendezvous
Provenance: commit c7dd897954 · authored 2026-03-06T09:40:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Koord program: Rendezvous - robots converge to centroid of positions
# Based on the Koord language for distributed cyber-physical systems
using Motion:
allread: map[pid, float] x_pos
allread: map[pid, float] y_pos
allwrite: float my_x
allwrite: float my_y
module Rendezvous:
sensors:
float x
float y
actuators:
float vx
float vy
def centroid_x():
return sum(x_pos[i] for i in range(num_robots)) / num_robots
def centroid_y():
return sum(y_pos[i] for i in range(num_robots)) / num_robots
init:
vx = 0.0
vy = 0.0
every 100ms:
my_x = x
my_y = y
vx = centroid_x() - x
vy = centroid_y() - y