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/aadlRelated languages
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
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.)