mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-12 14:00:42 -05:00
Fixed location of debug message
This commit is contained in:
parent
1b5038e620
commit
a17d83eb1d
2 changed files with 2 additions and 2 deletions
|
|
@ -498,10 +498,10 @@ module Make (L : Log_intf.S)(E : Expr_intf.S)
|
||||||
if env.is_unsat then raise Unsat; (* is it necessary ? *)
|
if env.is_unsat then raise Unsat; (* is it necessary ? *)
|
||||||
let init_name = name in
|
let init_name = name in
|
||||||
let init0 = make_clause init_name atoms (List.length atoms) (history <> History []) history in
|
let init0 = make_clause init_name atoms (List.length atoms) (history <> History []) history in
|
||||||
|
L.debug 10 "Adding clause : %a" St.pp_clause init0;
|
||||||
try
|
try
|
||||||
if Proof.has_been_proved init0 then raise Trivial;
|
if Proof.has_been_proved init0 then raise Trivial;
|
||||||
assert (Proof.is_proven init0);
|
assert (Proof.is_proven init0);
|
||||||
L.debug 10 "Adding clause : %a" St.pp_clause init0;
|
|
||||||
let atoms, init = partition atoms init0 in
|
let atoms, init = partition atoms init0 in
|
||||||
let size = List.length atoms in
|
let size = List.length atoms in
|
||||||
match atoms with
|
match atoms with
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue