mirror of https://github.com/BOINC/boinc.git
scheduler: comparison function for score-based scheduling was backwards
This commit is contained in:
parent
c3b7e4c849
commit
bf96878fe8
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue