mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
19 lines
578 B
OCaml
19 lines
578 B
OCaml
|
|
module type S = Solver_intf.S
|
|
(** Safe external interface of solvers. *)
|
|
|
|
module Make_pure_sat(Th: Solver_intf.PLUGIN_SAT)
|
|
: S with type lit = Th.lit
|
|
and module Lit = Th.Lit
|
|
and type proof = Th.proof
|
|
and type proof_step = Th.proof_step
|
|
and module Proof = Th.Proof
|
|
and type theory = unit
|
|
|
|
module Make_cdcl_t(Th : Solver_intf.PLUGIN_CDCL_T)
|
|
: S with type lit = Th.lit
|
|
and module Lit = Th.Lit
|
|
and type proof = Th.proof
|
|
and type proof_step = Th.proof_step
|
|
and module Proof = Th.Proof
|
|
and type theory = Th.t
|