File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -523,6 +523,7 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct
523
523
or to increase your timeouts. \
524
524
Returned unknown reason = %a@]"
525
525
Sat_solver_sig. pp_ae_unknown_reason_opt ur;
526
+ Fmt. pf ppf " ()"
526
527
527
528
| Some model ->
528
529
Models. pp ppf model
Original file line number Diff line number Diff line change @@ -1165,6 +1165,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
1165
1165
with
1166
1166
| Satml. Unsat lc -> raise (IUnsat (env, make_explanation lc))
1167
1167
| Util. Timeout -> i_dont_know env (Timeout ProofSearch )
1168
+ | Util. Step_limit_reached n -> i_dont_know env (Step_limit n)
1168
1169
| Satml. Sat ->
1169
1170
try
1170
1171
do_case_split env Util. BeforeMatching ;
@@ -1205,6 +1206,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
1205
1206
1206
1207
with
1207
1208
| Util. Timeout -> i_dont_know env (Timeout ProofSearch )
1209
+ | Util. Step_limit_reached n -> i_dont_know env (Step_limit n)
1208
1210
| Satml. Unsat lc -> raise (IUnsat (env, make_explanation lc))
1209
1211
| Ex. Inconsistent (expl , _cls ) -> (* may be raised during matching or CS*)
1210
1212
begin
@@ -1214,6 +1216,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct
1214
1216
with
1215
1217
| Satml. Unsat lc -> raise (IUnsat (env, make_explanation lc))
1216
1218
| Util. Timeout -> i_dont_know env (Timeout ProofSearch )
1219
+ | Util. Step_limit_reached n -> i_dont_know env (Step_limit n)
1217
1220
end
1218
1221
1219
1222
let rec unsat_rec_prem env ~first_call : unit =
You can’t perform that action at this time.
0 commit comments