Skip to content

Commit

Permalink
CI: fix bug in parsing additional lines
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth-krishna committed Feb 23, 2024
1 parent e9c9fd3 commit 072acf7
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 @@ -36,7 +36,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[0]), int(m[1]), int(m[2]))
return (float(m[0]), int(m[1]), int(m[3]))


def run_gams_gdxdiff(
Expand Down

0 comments on commit 072acf7

Please sign in to comment.