In sat/sat, replaced theory state with type unit

This commit is contained in:
Guillaume Bury 2014-11-06 00:20:40 +01:00
parent f9fde897e0
commit f36aa78a35

View file

@ -58,16 +58,16 @@ module Tsat = struct
(* We don't have anything to do since the SAT Solver already
* does propagation and conflict detection *)
type t = int
type t = unit
type formula = Fsat.t
type explanation = Exp.t
type proof = unit
exception Inconsistent of explanation
let dummy = -1
let empty () = 0
let assume ~cs:_ _ _ _ = 0
let dummy = ()
let empty () = ()
let assume ~cs:_ _ _ _ = ()
end
module Make(Dummy : sig end) = struct