From 66eb15e03f65f30b346bbde643a4c55859c2db0e Mon Sep 17 00:00:00 2001 From: bdemsky Date: Wed, 17 Oct 2018 15:19:03 -0700 Subject: [PATCH 1/1] Tuner shouldn't try to find really bad implementations --- src/Tuner/multituner.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1