Skip to content

Commit

Permalink
Debug message instead of error
Browse files Browse the repository at this point in the history
  • Loading branch information
bclement-ocp committed Aug 28, 2024
1 parent 7d929e6 commit e312993
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/reasoners/bitv_rel.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2282,11 +2282,11 @@ let case_split env uf ~for_model =
let bit_interval = Intervals.Int.extract int ~ofs:bitidx ~len:1 in
match Intervals.Int.value_opt bit_interval with
| Some (v, _) ->
if Options.get_enable_assertions () then
Util.internal_error
"High bit allowed by bitlists, but not intervals."
else
const 1 v, 1
Log.debug (fun m ->
m "@[%a@]" Fmt.words
"High bit forced by intervals; cross-domain propagation bug?"
);
const 1 v, 1
| None -> const 1 Z.zero, 2
in
if Options.get_debug_bitv () then
Expand Down

0 comments on commit e312993

Please sign in to comment.