Skip to content

Commit

Permalink
refactor: inline variable (#11422)
Browse files Browse the repository at this point in the history
Signed-off-by: Rudi Grinberg <[email protected]>
  • Loading branch information
rgrinberg authored Jan 30, 2025
1 parent 580256f commit 458eec9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/sat/sat.ml
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,7 @@ module Make (User : USER) = struct
++ Pp.text " ("
++ pp_reason reason
++ Pp.char ')');
match
let old_value = lit_value lit in
old_value
with
match lit_value lit with
| False -> false (* Conflict *)
| True -> true (* Already set (shouldn't happen) *)
| Undecided ->
Expand Down

0 comments on commit 458eec9

Please sign in to comment.