浏览代码

limpieza de cout

Agustín Cangiani 10 年之前
父节点
当前提交
d4932ae94b
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      sched_rsjf.h

+ 0 - 1
sched_rsjf.h

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