Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: hide [Var_value] from [Sat] #11421

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/sat/sat.mli
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ module type USER = sig
val pp : t -> 'tag Pp.t
end

module Var_value : sig
type t =
| True
| False
| Undecided
end

module Make (User : USER) : sig
(** A SAT problem consists of a set of variables and a set of clauses which must be satisfied. *)
type t
Expand Down Expand Up @@ -80,7 +73,6 @@ module Make (User : USER) : sig
| Clause of clause
| External of string

val lit_value : lit -> Var_value.t
val get_user_data_for_lit : lit -> User.t
val explain_reason : lit -> 'tag Pp.t
end
Loading