Acumen
1 program
Added 2026-02-16T14:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 32e6508777 · authored 2026-02-16T16:26:04+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
Bouncing Ball
Provenance: commit 32e6508777 · authored 2026-02-16T16:26:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
model Main(simulator) =
initially
x = 10,
x' = 0,
g = -9.8,
c = 0.8
always
x'' = g
if x <= 0 then
x' := -c * x'
end
end