Skip to content

Ailurus1/MM1-Queue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

$M/M/1/\infty$

Single-threaded implementation of the main mechanisms of the $M/M/1/\infty$ queue from queueing theory with some small provided experiments showing basic metrics obtained during work of the system with various parameters.


pip install -r requirements.txt

or using poetry

poetry install

and then in Python code

from queue_simulation.markovian import Markovian

...

queue = Markovian(<your lmbda value>, <you mu value>)
metrics = queue.run(10000)