mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 11:15:43 -05:00
In sat/sat, replaced theory state with type unit
This commit is contained in:
parent
f9fde897e0
commit
f36aa78a35
1 changed files with 4 additions and 4 deletions
|
|
@ -58,16 +58,16 @@ module Tsat = 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 t = int
|
type t = unit
|
||||||
type formula = Fsat.t
|
type formula = Fsat.t
|
||||||
type explanation = Exp.t
|
type explanation = Exp.t
|
||||||
type proof = unit
|
type proof = unit
|
||||||
|
|
||||||
exception Inconsistent of explanation
|
exception Inconsistent of explanation
|
||||||
|
|
||||||
let dummy = -1
|
let dummy = ()
|
||||||
let empty () = 0
|
let empty () = ()
|
||||||
let assume ~cs:_ _ _ _ = 0
|
let assume ~cs:_ _ _ _ = ()
|
||||||
end
|
end
|
||||||
|
|
||||||
module Make(Dummy : sig end) = struct
|
module Make(Dummy : sig end) = struct
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue