aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorTimotej Kapus <tk1713@ic.ac.uk>2018-06-07 17:23:37 +0100
committerMartinNowack <martin.nowack@gmail.com>2019-04-04 20:37:41 +0100
commitb1f34f8d0ff890511e16fc322abf3ca08000b950 (patch)
tree7abd3f8348caccc80272013bd93506ccd9c94b88 /tools
parentbed9f8d4b202a1b754e7b91fafdba14beb325272 (diff)
downloadklee-b1f34f8d0ff890511e16fc322abf3ca08000b950.tar.gz
Remove unused function
Diffstat (limited to 'tools')
-rwxr-xr-xtools/klee-stats/klee-stats14
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)