mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-08 04:05:43 -05:00
Merge branch 'master' of github.com:Gbury/mSAT
This commit is contained in:
commit
4ff01d2a7e
3 changed files with 18 additions and 18 deletions
2
Makefile
2
Makefile
|
|
@ -40,7 +40,7 @@ clean:
|
|||
|
||||
TO_INSTALL=META $(addprefix _build/,$(LIB) $(NAME).a $(NAME).cmi)
|
||||
|
||||
install: all
|
||||
install: lib
|
||||
ocamlfind install msat $(TO_INSTALL)
|
||||
|
||||
uninstall:
|
||||
|
|
|
|||
|
|
@ -273,14 +273,14 @@ module Make(St : Solver_types.S) = struct
|
|||
aux (to_list c, to_list d)
|
||||
|
||||
let unsat_core proof =
|
||||
let rec aux proof =
|
||||
let rec aux acc proof =
|
||||
let p = proof () in
|
||||
match p.step with
|
||||
| Hypothesis | Lemma _ -> [p.conclusion]
|
||||
| Hypothesis | Lemma _ -> p.conclusion :: acc
|
||||
| Resolution (proof1, proof2, _) ->
|
||||
List.rev_append (aux proof1) (aux proof2)
|
||||
aux (aux acc proof1) proof2
|
||||
in
|
||||
List.sort_uniq compare_cl (aux proof)
|
||||
List.sort_uniq compare_cl (aux [] proof)
|
||||
|
||||
(* Print proof graph *)
|
||||
let _i = ref 0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue