PEPA
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Performance Evaluation Process Algebra
Provenance: commit 1c9e447738 · authored 2026-03-05T17:53:24+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Client-Server Queueing System
Provenance: commit 1c9e447738 · authored 2026-03-05T17:53:24+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// PEPA model: Simple Client-Server Queueing System
// Models a system where clients think, make requests, and servers respond.
r_think = 1.0;
r_request = 2.0;
r_service = 3.0;
// A client thinks, then makes a request, then loops back.
Client = (think, r_think) . (request, r_request) . Client;
// A server handles incoming requests at rate r_service.
Server = (request, r_service) . Server;
// The system cooperates on the 'request' action.
System = Client <request> Server;