mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-10 05:03:59 -05:00
- only one functor to instantiate - explicit state that is carried around - remove minismt stuff
18 lines
924 B
OCaml
18 lines
924 B
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Alt-Ergo Zero *)
|
|
(* *)
|
|
(* Sylvain Conchon and Alain Mebsout *)
|
|
(* Universite Paris-Sud 11 *)
|
|
(* *)
|
|
(* Copyright 2011. This file is distributed under the terms of the *)
|
|
(* Apache Software License version 2.0 *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
module type S = Msat.S
|
|
|
|
|
|
module Make (Th : Theory_intf.S) = Msat.Make(Th)
|
|
|
|
|