From: bdemsky Date: Wed, 17 Oct 2018 22:19:03 +0000 (-0700) Subject: Tuner shouldn't try to find really bad implementations X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=66eb15e03f65f30b346bbde643a4c55859c2db0e;p=satune.git Tuner shouldn't try to find really bad implementations --- diff --git a/src/Tuner/multituner.cc b/src/Tuner/multituner.cc index 5103414..e0fee46 100644 --- a/src/Tuner/multituner.cc +++ b/src/Tuner/multituner.cc @@ -274,7 +274,7 @@ void MultiTuner::tuneComp() { int tscore = 0; if (scores.contains(t)) tscore = scores.get(t); - if (score < tscore) + if (score > tscore) break; } DEBUG("ranking[%u]=tuner<%p>(Score=%d)\n", j, tuner, score);