Skip to content

Commit

Permalink
print exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout4 committed May 16, 2024
1 parent 6462e5c commit d3a0012
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmarks/run_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def solve_exact():
else:
try:
t_solve = timeit.timeit(stmt=solve_exact, number=1)
except Exception:
except Exception as e:
print(e)
t_solve = 0
else:
t_solve = 0
Expand Down

0 comments on commit d3a0012

Please sign in to comment.