mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 11:15:43 -05:00
Made sat atom type private
This commit is contained in:
parent
e584e0979d
commit
d58c5c0756
5 changed files with 7 additions and 4 deletions
2
_tags
2
_tags
|
|
@ -1,4 +1,4 @@
|
|||
<util/*.cmx>: package(unix)
|
||||
<util/*.cmx>: for-pack(Msat), package(unix)
|
||||
<util/*.native>: package(unix)
|
||||
<smt/*.cmx>: for-pack(Msat), package(zarith)
|
||||
<sat/*.cmx>: for-pack(Msat)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
# Debug
|
||||
Log
|
||||
|
||||
# Solver Modules
|
||||
Log_intf
|
||||
Formula_intf
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
util/Log
|
||||
|
||||
solver/Log_intf
|
||||
solver/Formula_intf
|
||||
solver/Expr_intf
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ Copyright 2014 Simon Cruanes
|
|||
module Fsat = struct
|
||||
exception Dummy of int
|
||||
|
||||
(* Until the constant true_ and false_ are not needed anymore,
|
||||
* wa can't simply use sigend integers to represent literals *)
|
||||
type t = int
|
||||
|
||||
let max_lit = max_int
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ Copyright 2014 Guillaume Bury
|
|||
Copyright 2014 Simon Cruanes
|
||||
*)
|
||||
|
||||
module Fsat : Formula_intf.S with type t = int
|
||||
module Fsat : Formula_intf.S with type t = private int
|
||||
|
||||
module Tseitin : Tseitin.S with type atom = Fsat.t
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue