mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 03:40:18 -04:00
FINISHED
This commit is contained in:
parent
61ab29b07c
commit
7cd5b2b92c
3
task.c
3
task.c
|
@ -201,7 +201,8 @@ void heapify(int i) {
|
|||
float next_ratio =
|
||||
(float)next->priority / (float)next->remaining_cycles;
|
||||
|
||||
if (curr_ratio > next_ratio) {
|
||||
if (curr_ratio > next_ratio ||
|
||||
(curr_ratio == next_ratio && curr->priority > next->priority)) {
|
||||
swap(curr->pid, next->pid);
|
||||
k = j;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue
Block a user