mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-07 19:55:41 -05:00
Better logging in proofs
This commit is contained in:
parent
d6c6331d85
commit
51c76479b9
1 changed files with 2 additions and 2 deletions
|
|
@ -115,7 +115,7 @@ module Make(St : Solver_types.S) = struct
|
|||
|
||||
let rec chain_res (c, cl) = function
|
||||
| d :: r ->
|
||||
Log.debugf 7 "@[<v4> Resolving clauses : %a@,%a@]"
|
||||
Log.debugf 7 " Resolving clauses : @[%a@\n%a@]"
|
||||
(fun k -> k St.pp_clause c St.pp_clause d);
|
||||
let dl = to_list d in
|
||||
begin match resolve (merge cl dl) with
|
||||
|
|
@ -132,7 +132,7 @@ module Make(St : Solver_types.S) = struct
|
|||
| _ -> assert false
|
||||
|
||||
let rec expand conclusion =
|
||||
Log.debugf 5 "@[Expanding : %a@]" (fun k -> k St.pp_clause conclusion);
|
||||
Log.debugf 5 "Expanding : @[%a@]" (fun k -> k St.pp_clause conclusion);
|
||||
match conclusion.St.cpremise with
|
||||
| St.Lemma l ->
|
||||
{conclusion; step = Lemma l; }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue