Skip to content

Commit

Permalink
max
Browse files Browse the repository at this point in the history
  • Loading branch information
agroce committed Aug 8, 2024
1 parent 62352f6 commit aaa024c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions muttfuzz/analyze_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
ever_unkilled = {}

max_unkilled = 0.0

for f in files:
root = f.split(".")[0]
if root not in roots:
Expand All @@ -32,8 +32,7 @@ def main():
all_mutants[row[0]] = True
if int(row[2]) == 0:
ever_unkilled[row[0]] = True
if float(row[1]) > max_unkilled:
max_unkilled = float(row[1])
max_unkilled = max(max_unkilled, float(row[1]))

print("THERE ARE", len(all_mutants.keys()), "MUTANTS")
print()
Expand Down

0 comments on commit aaa024c

Please sign in to comment.