/process-scheduling-algorithms

💻 SJF, Round Robin and Priority process schedulers in Python

Primary LanguagePython

💻 Process Scheduling Algorithms

Algorithms Schedulers developed in Python.

More Informations

This project was developed by Lucas Vinicius, Thais Zorawski and Vitor Camargo.

The project is divided into 2 parts, a python3 code and a web application (developed in Vue). The code base for this project has been commented and explained for each algorithm and is in the python file, but for a better understanding, a software has been created that simulates real time process scheduling algorithms through a web application.

Python Application Usage

To execute the python program, you just need to type the following command:

$ cd /python
$ python main.py './processos.txt' 3

where, the first parameter is the input file, that contains the processes. The second parameter refers to quantum value.

Web Application Usage

To execute the web application is necessary to follow the next steps:

$ cd ./web
$ npm install
$ npm run dev

after these steps, the application will be avaliable in http://localhost:8080/.

Or if you just want to see this application without downloading it, you can check it on https://vitorcamargo.github.io/process-scheduling-algorithms/