소스 검색

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;
 			}	
 		};