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

chore(warnings): Drop acts_add_lit_view #1227

Merged
merged 1 commit into from
Aug 30, 2024
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
7 changes: 2 additions & 5 deletions src/lib/reasoners/bitv_rel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1015,9 +1015,7 @@ module Bitlist_domains =
(** The ['c acts] type is used to register new facts and constraints in
[Propagator.simplify]. *)
type 'c acts =
{ acts_add_lit_view : ex:Explanation.t -> X.r L.view -> unit
(** Assert a semantic literal. *)
; acts_add_eq : ex:Explanation.t -> X.r -> X.r -> unit
{ acts_add_eq : ex:Explanation.t -> X.r -> X.r -> unit
(** Assert equality between two semantic values. *)
; acts_add_constraint : ex:Explanation.t -> 'c -> unit
(** Assert a new constraint. *)
Expand Down Expand Up @@ -1918,8 +1916,7 @@ let simplify_all uf eqs touched (dom, idom) =
HC.replace to_add c.value c.explanation
in
let acts =
{ acts_add_lit_view
; acts_add_eq
{ acts_add_eq
; acts_add_constraint } in
if Propagator.simplify uf c acts then
let c = explained ~ex:c_ex c in
Expand Down
Loading