mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-07 19:55:41 -05:00
16 lines
417 B
OCaml
16 lines
417 B
OCaml
(*
|
|
MSAT is free software, using the Apache license, see file LICENSE
|
|
Copyright 2014 Guillaume Bury
|
|
Copyright 2014 Simon Cruanes
|
|
*)
|
|
|
|
module type S = Res_intf.S
|
|
|
|
module Make :
|
|
functor (L : Log_intf.S) ->
|
|
functor (St : Solver_types.S) -> sig
|
|
include S with module St = St
|
|
val push : unit -> int
|
|
val pop : int -> unit
|
|
end
|
|
(** Functor to create a module building proofs from a sat-solver unsat trace. *)
|