├── FIFO │ ├── destination.py │ ├── router.py │ └── source.py ├── README.md ├── WFQ │ ├── destination.py │ ├── router.py │ └── source.py └── WRR ├── destination.py ├── router.py └── source.py
Run each of the following command on a new terminal for each scheduling algorithm python router.py python destination.py python source.py 0 python source.py 1 python source.py 2