Ceptre
1 program
Added 2026-02-23T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit c3282083db · authored 2026-02-23T14:22:49+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
Blocks World
Provenance: commit c3282083db · authored 2026-02-23T14:22:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
block : type.
on block block : pred.
on_table block : pred.
clear block : pred.
arm_holding block : pred.
arm_free : pred.
stage blocks = {
pickup_from_block
: on X Y * clear X * arm_free -o clear Y * arm_holding X.
pickup_from_table
: on_table X * clear X * arm_free -o arm_holding X.
put_on_block
: arm_holding X * clear Y -o on X Y * clear X * arm_free.
put_on_table
: arm_holding X -o on_table X * clear X * arm_free.
} #interactive blocks.
a : block.
b : block.
c : block.
context init =
{ on_table a, on_table b, on c a, clear c, clear b, arm_free }
#trace _ blocks init.