Skip to content

Commit

Permalink
Fix for another issue I need to test my PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevendeo committed Apr 5, 2024
1 parent a91b605 commit a0f518e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/bin/common/solving_loop.ml
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,10 @@ let main () =
recoverable_error "%t" msg; st
| Util.Timeout ->
Printer.print_status_timeout None None None None;
exit_as_timeout ()
if (not(Options.get_timelimit_per_goal ())) then
exit_as_timeout ()
else
st
| Errors.Error e ->
recoverable_error "%a" Errors.report e;
st
Expand Down

0 comments on commit a0f518e

Please sign in to comment.