NAPSS

1 program Added 2026-03-13T04:32:12Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Numerical Analysis Problem Solving System
Provenance: commit 908daae2a8 · authored 2026-03-13T05:33:45+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/napss
LLM (this repo) · 1Pldb

Related languages

STRESS (0.21)GrADS (0.21)kOS (0.17)Mozart-Oz (0.16)Numerica (0.16)

LLM-contributed programs

Mean of Square Roots

Provenance: commit 908daae2a8 · authored 2026-03-13T05:33:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.napss · added: 2026-03-13T04:32:12Z
BEGIN
   REAL A, B, C, RESULT;
   INTEGER N;
   REAL ARRAY X[1:5];
   REAL SUM;

   X[1] := 1.0;
   X[2] := 4.0;
   X[3] := 9.0;
   X[4] := 16.0;
   X[5] := 25.0;

   N := 5;
   SUM := 0.0;
   FOR I := 1 STEP 1 UNTIL N DO
      SUM := SUM + SQRT(X[I]);

   RESULT := SUM / N;
   PRINT(RESULT)
END

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.)

Contribute — propose a file extension

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