mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
19 lines
407 B
OCaml
19 lines
407 B
OCaml
(*
|
|
MSAT is free software, using the Apache license, see file LICENSE
|
|
Copyright 2014 Guillaume Bury
|
|
Copyright 2014 Simon Cruanes
|
|
*)
|
|
|
|
module Make (L : Log_intf.S)(E : Expr_intf.S)
|
|
(Th : Plugin_intf.S with type term = E.Term.t and type formula = E.Formula.t and type proof = E.proof) = struct
|
|
|
|
module St = Solver_types.McMake(L)(E)
|
|
|
|
module M = Internal.Make(L)(St)(Th)
|
|
|
|
include St
|
|
|
|
include M
|
|
|
|
end
|
|
|