scheduler: comparison function for score-based scheduling was backwards

This commit is contained in:
David Anderson 2013-05-22 10:20:54 -07:00
parent c3b7e4c849
commit bf96878fe8
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ bool JOB::get_score(WU_RESULT& wu_result) {
}
bool job_compare(JOB j1, JOB j2) {
return (j1.score < j2.score);
return (j1.score > j2.score);
}
static double req_sec_save[NPROC_TYPES];