diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/klee-stats/klee-stats | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index 5b8dacf4..901cab55 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -92,20 +92,6 @@ class LazyEvalList: return len(self.lines) -def getMatchedRecordIndex(records, column, target): - """Find target from the specified column in records.""" - target = int(target) - lo = 0 - hi = len(records) - 1 - while lo < hi: - mid = (lo + hi) // 2 - if column(records[mid]) <= target: - lo = mid + 1 - else: - hi = mid - return lo - - def stripCommonPathPrefix(paths): paths = map(os.path.normpath, paths) |