sidekick/src/th-data/Sidekick_th_data.mli
2021-10-11 19:57:25 -04:00

11 lines
250 B
OCaml

(** Theory for datatypes. *)
include module type of Th_intf
module type S = sig
module A : ARG
val theory : A.S.theory
(** A theory that can be added to {!A.S} to perform datatype reasoning. *)
end
module Make(A : ARG) : S with module A = A