missing change

This commit is contained in:
Simon Cruanes 2016-04-15 14:05:42 +02:00
parent 1ce3973f9e
commit 22ebead17a

View file

@ -14,8 +14,8 @@
module type S = Solver_intf.S
(** Simple case where the proof type is [unit] and the theory is empty *)
module DummyTheory(F : Formula_intf.S with type proof = unit) :
Theory_intf.S with type formula = F.t and type proof = unit
module DummyTheory(F : Formula_intf.S) :
Theory_intf.S with type formula = F.t and type proof = F.proof
module Make (F : Formula_intf.S)
(Th : Theory_intf.S with type formula = F.t and type proof = F.proof)