mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
8 lines
273 B
OCaml
8 lines
273 B
OCaml
|
|
module type S = Backend_intf.S
|
|
|
|
module Make :
|
|
functor(S : Res.S) ->
|
|
functor(A : Backend_intf.Arg with type formula := S.atom and type proof := S.proof) ->
|
|
S with type t := S.proof
|
|
(** Functor to generate a backend to output proofs for the dedukti type checker. *)
|