Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 813 Bytes

README.md

File metadata and controls

36 lines (21 loc) · 813 Bytes

KyuuQueue

This is a dynamic queueing simulator. The model is DAG of servers connected by queues, with a number of sources and sinks. The sources generate new agents; these progress through queues to servers, who pass them on to subsequent queues, and finally to sinks.

Running

  1. Install yarn
  2. Install dependencies
yarn install
  1. Start the web server:
yarn start

Then follow the instructions on the console to open the page in your browser - e.g. open http://localhost:8080

Testing

Tests are defined in the features directory using Cucumber.js. Run them with:

yarn test