Modify the existing CSIM M/M/1 simulation (mm1_csim.c) to have a second queue that has deterministic service time and change the generate()function to probabilistically split (with 50/50 probability – a coin flip) the generated customers to each queue. That is, half of the generated customers should go to the queue with exponential service time (the queue that already exists in the model) and the other half to the new queue with deterministic service time. Fix the mean service time for each queue to be 1.0 seconds per customer. Run the simulation such that each queue has an offered load of 80% and submit a screen shot of the results. Run the simulation for a simulated 1 million seconds.
In addition to changing the generate() function you will need to do the following:
1) Add another queue() function
2) Add and initialize another Server FACILITY
3)Carefully update the output results section of main()
4) Carefully update the header block and inline comments