mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-10 21:24:06 -05:00
Debugging...
This commit is contained in:
parent
25dae83c6e
commit
31f5fdd1ae
2 changed files with 7 additions and 6 deletions
|
|
@ -612,6 +612,7 @@ module Make (L : Log_intf.S)(E : Expr_intf.S)
|
||||||
|
|
||||||
(* Propagation (boolean and theory) *)
|
(* Propagation (boolean and theory) *)
|
||||||
let new_atom f =
|
let new_atom f =
|
||||||
|
L.debug 100 "New_atom";
|
||||||
let a = add_atom f in
|
let a = add_atom f in
|
||||||
L.debug 10 "New atom : %a" St.pp_atom a;
|
L.debug 10 "New atom : %a" St.pp_atom a;
|
||||||
ignore (th_eval a);
|
ignore (th_eval a);
|
||||||
|
|
|
||||||
|
|
@ -172,9 +172,9 @@ module Make (L : Log_intf.S)(E : Expr_intf.S)(Th : Plugin_intf.S with
|
||||||
let add_term t = make_semantic_var t
|
let add_term t = make_semantic_var t
|
||||||
|
|
||||||
let add_atom lit =
|
let add_atom lit =
|
||||||
Log.debug 100 "entering add_atom";
|
L.debug 100 "entering add_atom";
|
||||||
let var, negated = make_boolean_var lit in
|
let var, negated = make_boolean_var lit in
|
||||||
Log.debug 100 "found atom";
|
L.debug 100 "found atom";
|
||||||
if negated then var.tag.na else var.tag.pa
|
if negated then var.tag.na else var.tag.pa
|
||||||
|
|
||||||
let make_clause name ali sz_ali is_learnt premise =
|
let make_clause name ali sz_ali is_learnt premise =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue