Cell-DEVS

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: CellDEVS, Cellular DEVS
Provenance: commit c0c83ba97c · authored 2026-03-17T06:39: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)
LLM (this repo) · 1

Related languages

CD++ (0.28)Cell (0.17)Cello (0.17)Cedar (0.12)Singular (0.11)

LLM-contributed programs

Conway's Game of Life

Provenance: commit c0c83ba97c · authored 2026-03-17T06:39:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.ma · added: 2026-03-17T10:00:00Z
[top]
components : life@Cell

[life]
type : cell
dim : (20,20)
delay : transport
defaultDelayTime : 100
border : nowrapped
neighbors : life(-1,-1) life(-1,0) life(-1,1)
             life(0,-1) life(0,0) life(0,1)
             life(1,-1) life(1,0) life(1,1)
localTransition : lifeRule
initialvalue : 0

[lifeRule]
% Conway's Game of Life rules
% A live cell with 2 or 3 live neighbors survives
rule : { alive(0,0) and (neighborCount(1)=2 or neighborCount(1)=3) } 1 100
% A dead cell with exactly 3 live neighbors becomes alive
rule : { !alive(0,0) and neighborCount(1)=3 } 1 100
% All other cells die or remain dead
rule : { t } 0 100

Contribute — propose a file extension

Tell us where to find evidence about Cell-DEVS (mapped to pl/cell_devs). 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/Cell-DEVS/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Cell BE Assembly CellArg →