Skip to content

Commit

Permalink
Prefix Tuple3 with Batteries.
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Jan 22, 2025
1 parent fe0608d commit 7dcd10d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cdomain/value/util/wideningThresholds.ml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ let conditional_widening_thresholds = ResettableLazy.from_fun (fun () ->
visitCilFileSameGlobals thisVisitor (!Cilfacade.current_file);
!upper, !lower, !octagon)

let upper_thresholds = ResettableLazy.map Tuple3.first conditional_widening_thresholds
let upper_thresholds = ResettableLazy.map Batteries.Tuple3.first conditional_widening_thresholds

let lower_thresholds = ResettableLazy.map Tuple3.second conditional_widening_thresholds
let lower_thresholds = ResettableLazy.map Batteries.Tuple3.second conditional_widening_thresholds

let octagon_thresholds = ResettableLazy.map Tuple3.third conditional_widening_thresholds
let octagon_thresholds = ResettableLazy.map Batteries.Tuple3.third conditional_widening_thresholds


class extractConstantsVisitor(widening_thresholds,widening_thresholds_incl_mul2) = object
Expand Down

0 comments on commit 7dcd10d

Please sign in to comment.