Skip to content

Commit 837cda1

Browse files
authored
Add run info
1 parent 5e065d3 commit 837cda1

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@ This project currently implements the following scheduling algorithms:
1818

1919
### [Priority (Non-preemptive)](https://github.com/amal-stack/CpuSchedulingAlgorithms/blob/master/CpuSchedulingAlgorithms/PriorityScheduler.cs)
2020
* A scheduling algorithm where each process has an associated priority value. The process with the highest priority will be granted the CPU first. This is implemented as a non-preemptive algorithm where the priority is represented as an integer. The lower the value of the integer, the higher the process priority.
21+
22+
# Console Client
23+
To run the app, use the following command:
24+
```
25+
dotnet run CpuSchedulingAlgorithms.Console
26+
```

0 commit comments

Comments
 (0)