Alphard
1 program
Added 2026-02-07T18:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 111706da11 · authored 2026-02-07T14:23:19+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/alphardRelated languages
LLM-contributed programs
Stack with Verification
Provenance: commit 111706da11 · authored 2026-02-07T14:23:19+01:00 · agent claude-code · model sonnet · WebSearch disabled
form stack(size: integer) =
integer array s[1:size];
integer top initially 0;
invariant 0 <= top <= size;
function push(x: integer)
pre top < size
post top = old top + 1 and s[top] = x;
begin
top := top + 1;
s[top] := x
end;
function pop returns integer
pre top > 0
post top = old top - 1 and pop = old s[top];
begin
pop := s[top];
top := top - 1
end;
function is_empty returns boolean
post is_empty = (top = 0);
begin
is_empty := (top = 0)
end
end stack
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)