mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-07 11:45:41 -05:00
14 lines
344 B
OCaml
14 lines
344 B
OCaml
|
|
module type S = Backend_intf.S
|
|
|
|
module type Arg = sig
|
|
type atom
|
|
type lemma
|
|
|
|
val print_atom : Format.formatter -> atom -> unit
|
|
val lemma_info : lemma -> string * string option * (Format.formatter -> unit -> unit) list
|
|
end
|
|
|
|
module Make(S : Res.S)(A : Arg with type atom := S.atom and type lemma := S.lemma) :
|
|
S with type t := S.proof
|
|
|