Update non_preemptive_sjf_scheduling.cpp

Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
DoGoodCoder
2024-10-10 18:59:12 +05:30
committed by GitHub
parent b8e1b84840
commit d00becf20c

View File

@@ -219,7 +219,6 @@ class SJF {
* @returns A vector of tuples containing Process ID, Arrival time, Burst time,
* Completion time, Turnaround time, and Waiting time
*/
template <typename S, typename T, typename E>
vector<tuple<S, T, E, double, double, double>> get_final_status(
vector<tuple<S, T, E>> input) {