diff options
author | Timotej Kapus <tk1713@ic.ac.uk> | 2018-06-07 17:23:37 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-04-04 20:37:41 +0100 |
commit | b1f34f8d0ff890511e16fc322abf3ca08000b950 (patch) | |
tree | 7abd3f8348caccc80272013bd93506ccd9c94b88 | |
parent | bed9f8d4b202a1b754e7b91fafdba14beb325272 (diff) | |
download | klee-b1f34f8d0ff890511e16fc322abf3ca08000b950.tar.gz |
Remove unused function
-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) |