mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-07 03:35:38 -05:00
fix build for msat 0.9
This commit is contained in:
parent
65fda4de41
commit
acc4301bec
1 changed files with 5 additions and 1 deletions
|
|
@ -674,12 +674,16 @@ module Make(A : ARG)
|
|||
List.iter (fun f->f()) on_exit;
|
||||
in
|
||||
self.si.on_progress <- (fun () -> on_progress self);
|
||||
let on_conflict =
|
||||
|
||||
(* TODO: msat 0.10
|
||||
let on_conflict =
|
||||
if Profile.enabled()
|
||||
then Some (fun _ -> Profile.instant "sat.conflict")
|
||||
else None
|
||||
in
|
||||
let r = Sat_solver.solve ?on_conflict ~assumptions (solver self) in
|
||||
*)
|
||||
let r = Sat_solver.solve ~assumptions (solver self) in
|
||||
Stat.incr self.count_solve;
|
||||
match r with
|
||||
| Sat_solver.Sat st ->
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue