NED
1 program
Added 2026-02-28T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Network Description Language, OMNeT++ NED
Provenance: commit dbbae320aa · authored 2026-02-28T17:06:19+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/omnetpp-nedExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.ned | linguist | primary | 117.8K files |
Related languages
LLM-contributed programs
Aloha Network Model
Provenance: commit dbbae320aa · authored 2026-02-28T17:06:19+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
//
// Simple Aloha network model in NED (OMNeT++ Network Description Language)
//
simple Host
{
parameters:
double txRate @unit(bps);
volatile double iaTime @unit(s);
volatile int pkLenBits;
gates:
output out;
}
simple Server
{
gates:
input in[];
}
network Aloha
{
parameters:
int numHosts = default(10);
double txRate @unit(bps) = default(9600bps);
volatile double iaTime @unit(s);
volatile int pkLenBits;
submodules:
server: Server;
host[numHosts]: Host {
txRate = txRate;
iaTime = iaTime;
pkLenBits = pkLenBits;
}
connections:
for i=0..numHosts-1 {
host[i].out --> server.in++;
}
}
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.)