Skip to content

Commit

Permalink
fix string consts for ywio
Browse files Browse the repository at this point in the history
  • Loading branch information
widlarizer committed Jul 25, 2024
1 parent 8c634d0 commit 3993ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/smt2/ywio.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,10 @@ def __init__(self, f):

self.sigmap = WitnessSigMap(self.signals)

self.bits() = [step["bits"] for step in data["steps"]]
self.bits = [step["bits"] for step in data["steps"]]

def skip_x(self):
self.bits() = [step.replace('x', '?') for step in self.bits()]
self.bits = [step.replace('x', '?') for step in self.bits()]

def init_step(self):
return self.step(0)
Expand Down

0 comments on commit 3993ea9

Please sign in to comment.