|
@@ -30,7 +30,6 @@ class SchedRSJF : public SchedBase {
|
|
|
|
|
|
|
|
// Esto permite ordenar por la duración mínima
|
|
// Esto permite ordenar por la duración mínima
|
|
|
int operator()(const Process& me, const Process& other) {
|
|
int operator()(const Process& me, const Process& other) {
|
|
|
- cout << "Duration: " << me.duration << " < " << other.duration << "\n";
|
|
|
|
|
return me.duration > other.duration;
|
|
return me.duration > other.duration;
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|