Skip to content

Commit 3ca30b2

Browse files
committed
Fix bisecting with WORKS criterion
1 parent 7cd1ef9 commit 3ca30b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython_bisect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def is_good(self, good_result, bad_result):
217217

218218
class WorksResult(BenchmarkResult):
219219
def is_good(self, good_result, bad_result):
220-
return self.value != 0
220+
return self.value == 0
221221

222222
def bound_is_significant(self, bad_result, epsilon):
223223
return True

0 commit comments

Comments
 (0)