Formura

1 program Added 2026-02-11T11:04:20Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit f008b2bdb2 · authored 2026-02-11T12:05:25+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

FORM (0.36)Formulog (0.36)FormCalc (0.27)Foma (0.25)Gura (0.25)

LLM-contributed programs

Heat Equation Stencil

Provenance: commit f008b2bdb2 · authored 2026-02-11T12:05:25+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.fmr · license: BSD-3-Clause · added: 2026-02-11T11:04:39Z
dimension :: 2
axes :: x, y

ddx = fun(a) (a[i+1,j] - a[i-1,j]) / 2
ddy = fun(a) (a[i,j+1] - a[i,j-1]) / 2

∂ :: (tensor double, tensor double) -> tensor double
∂ = fun(f, x, y) ddx(f) * x + ddy(f) * y

begin function heat(u)
  du/dt = u[i+1,j] + u[i-1,j] + u[i,j+1] + u[i,j-1] - 4*u[i,j]
end function

Contribute — propose a file extension

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