Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 552 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 552 Bytes

$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)