Simulation of M/M/1/N queueing system
-------------------------------------

Description:  This program simulates an M/M/1 queueing system.
-----------

The simulation outputs the number of customers in the queue after 100000 departures from the system, and the average number of customers in the system over the entire simulation.

Platform/compiler: UNIX, g++
-----------------

Files:
-----

event.cc - Functions for inserting and removing Events from EventLists 
event.h - Data structures for Events and EventLists
main.cc - Main program for simulation
Makefile - Makefile for simulation
output - output of the simulation
rv.cc - Functions which return uniform and exponential random variables
rv.h - Header file for rv.cc

