[feature] Allow arbitrary proof types in DummyTheory

This commit is contained in:
Guillaume Bury 2016-04-15 14:02:18 +02:00
parent 2e6ff522e5
commit 1ce3973f9e

View file

@ -12,12 +12,12 @@
module type S = Solver_intf.S module type S = Solver_intf.S
module DummyTheory(F : Formula_intf.S with type proof = unit) = struct module DummyTheory(F : Formula_intf.S) = struct
(* We don't have anything to do since the SAT Solver already (* We don't have anything to do since the SAT Solver already
* does propagation and conflict detection *) * does propagation and conflict detection *)
type formula = F.t type formula = F.t
type proof = unit type proof = F.proof
type level = unit type level = unit
type slice = { type slice = {