Skip to content

Commit

Permalink
fixed parse_result
Browse files Browse the repository at this point in the history
  • Loading branch information
SamRWest committed Feb 16, 2024
1 parent b892397 commit 0eb5bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/run_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def parse_result(output: str) -> Tuple[float, int, int]:
sys.exit(2)
# return (accuracy, num_correct_rows, num_additional_rows)
m = m[0]
return (float(m.groups()[0]), int(m.groups()[1]), int(m.groups()[2]))
return (float(m[0]), int(m[1]), int(m[2]))


def run_gams_gdxdiff(
Expand Down

0 comments on commit 0eb5bdd

Please sign in to comment.