Skip to content

Commit f22fce9

Browse files
committed
Catch Step_limit_reached consistently with Timeout
This is a partial fix for OCamlPro#1244 that only addresses the fatal error issue, but not incrementality.
1 parent e32e575 commit f22fce9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/lib/frontend/frontend.ml

+1
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct
523523
or to increase your timeouts. \
524524
Returned unknown reason = %a@]"
525525
Sat_solver_sig.pp_ae_unknown_reason_opt ur;
526+
Fmt.pf ppf "()"
526527

527528
| Some model ->
528529
Models.pp ppf model

src/lib/reasoners/satml_frontend.ml

+3
Original file line numberDiff line numberDiff line change
@@ -1165,6 +1165,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
11651165
with
11661166
| Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc))
11671167
| Util.Timeout -> i_dont_know env (Timeout ProofSearch)
1168+
| Util.Step_limit_reached n -> i_dont_know env (Step_limit n)
11681169
| Satml.Sat ->
11691170
try
11701171
do_case_split env Util.BeforeMatching;
@@ -1205,6 +1206,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
12051206

12061207
with
12071208
| Util.Timeout -> i_dont_know env (Timeout ProofSearch)
1209+
| Util.Step_limit_reached n -> i_dont_know env (Step_limit n)
12081210
| Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc))
12091211
| Ex.Inconsistent (expl, _cls) -> (*may be raised during matching or CS*)
12101212
begin
@@ -1214,6 +1216,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
12141216
with
12151217
| Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc))
12161218
| Util.Timeout -> i_dont_know env (Timeout ProofSearch)
1219+
| Util.Step_limit_reached n -> i_dont_know env (Step_limit n)
12171220
end
12181221

12191222
let rec unsat_rec_prem env ~first_call : unit =

0 commit comments

Comments
 (0)