AADL

1 program Added 2026-02-13T15:16:36Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Architecture Analysis and Design Language
Provenance: commit 7b4903d2a7 · authored 2026-02-13T16:17:13+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

STRUDL (0.32)Ampersand (0.28)APDL (0.27)SDL (0.24)HHDL (0.24)

LLM-contributed programs

Simple Process with Thread

Provenance: commit 7b4903d2a7 · authored 2026-02-13T16:17:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.aadl · added: 2026-02-13T15:16:36Z
package Simple_Example
public
  process Simple_Process
    features
      data_in: in data port;
      data_out: out data port;
  end Simple_Process;

  process implementation Simple_Process.impl
    subcomponents
      worker_thread: thread Simple_Thread.impl;
    connections
      conn1: port data_in -> worker_thread.input;
      conn2: port worker_thread.output -> data_out;
  end Simple_Process.impl;

  thread Simple_Thread
    features
      input: in data port;
      output: out data port;
    properties
      Dispatch_Protocol => Periodic;
      Period => 100 ms;
  end Simple_Thread;

  thread implementation Simple_Thread.impl
  end Simple_Thread.impl;
end Simple_Example;

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 AADL (mapped to pl/aadl). 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/AADL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Aaargh++ AAEEEEEEEEEI →