mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 11:15:43 -05:00
cleanup
This commit is contained in:
parent
007fbad243
commit
e34f5a5c3c
2 changed files with 2 additions and 13 deletions
|
|
@ -212,7 +212,8 @@ let solve ?(on_exit = []) ?(check = true) ?(on_progress = fun _ -> ())
|
||||||
|
|
||||||
Log.debugf 5 (fun k ->
|
Log.debugf 5 (fun k ->
|
||||||
let ppc out n =
|
let ppc out n =
|
||||||
Fmt.fprintf out "{@[<hv>class@ %a@]}" (Util.pp_iter E_node.pp)
|
Fmt.fprintf out "{@[<hv1>class@ %a@]}"
|
||||||
|
(Util.pp_iter ~sep:";" E_node.pp)
|
||||||
(E_node.iter_class n)
|
(E_node.iter_class n)
|
||||||
in
|
in
|
||||||
k "(@[sidekick.smt-solver.classes@ (@[%a@])@])" (Util.pp_iter ppc)
|
k "(@[sidekick.smt-solver.classes@ (@[%a@])@])" (Util.pp_iter ppc)
|
||||||
|
|
|
||||||
|
|
@ -312,18 +312,6 @@ let cc_resolve_expl self e : lit list * _ =
|
||||||
let r = CC.explain_expl (cc self) e in
|
let r = CC.explain_expl (cc self) e in
|
||||||
r.lits, r.pr self.proof
|
r.lits, r.pr self.proof
|
||||||
|
|
||||||
(*
|
|
||||||
let cc_merge self _acts n1 n2 e = CC.merge (cc self) n1 n2 e
|
|
||||||
|
|
||||||
let cc_merge_t self acts t1 t2 e =
|
|
||||||
let cc_acts = mk_cc_acts_ self.proof acts in
|
|
||||||
cc_merge self cc_acts (cc_add_term self t1) (cc_add_term self t2) e
|
|
||||||
|
|
||||||
let cc_raise_conflict_expl self acts e =
|
|
||||||
let cc_acts = mk_cc_acts_ self.proof acts in
|
|
||||||
CC.raise_conflict_from_expl (cc self) cc_acts e
|
|
||||||
*)
|
|
||||||
|
|
||||||
(** {2 Interface with the SAT solver} *)
|
(** {2 Interface with the SAT solver} *)
|
||||||
|
|
||||||
let rec push_lvl_ = function
|
let rec push_lvl_ = function
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue