Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Dec 2, 2023
1 parent 03ca1f3 commit beaf503
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/halmos/sevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,7 @@ def normalize_extract(arg0, arg1):

# this form triggers the partial inward-propagation of extracts in simplify()
# that is, `Extract(7, 0, op(x, y))` => `op(Extract(7, 0, x), Extract(7, 0, y))`, followed by further simplification
target_equivalent = Concat(
Extract(255, 8, target), Extract(7, 0, target)
)
target_equivalent = Concat(Extract(255, 8, target), Extract(7, 0, target))

given = Concat(arg0, arg1)

Expand Down

0 comments on commit beaf503

Please sign in to comment.