mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-11 13:38:43 -05:00
Better error message
This commit is contained in:
parent
803b61c7dc
commit
436dc49111
1 changed files with 4 additions and 1 deletions
|
|
@ -370,7 +370,10 @@ module Make (L : Log_intf.S)(E : Expr_intf.S)
|
||||||
var_bump_activity a.var;
|
var_bump_activity a.var;
|
||||||
history := d :: !history;
|
history := d :: !history;
|
||||||
c := res
|
c := res
|
||||||
| _ -> assert false
|
| _ ->
|
||||||
|
L.debug 0 "Found %d resolution lits" (List.length tmp);
|
||||||
|
List.iter (fun c -> L.debug 0 " |- %a" St.pp_atom c) tmp;
|
||||||
|
assert false
|
||||||
end
|
end
|
||||||
| Bcp None -> L.debug 15 "Decision : %a" St.pp_atom a
|
| Bcp None -> L.debug 15 "Decision : %a" St.pp_atom a
|
||||||
| Semantic _ -> L.debug 15 "Semantic propagation : %a" St.pp_atom a)
|
| Semantic _ -> L.debug 15 "Semantic propagation : %a" St.pp_atom a)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue