Skip to content

Commit

Permalink
Removes debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
chaseruskin committed Oct 12, 2024
1 parent a99ea37 commit 2c526b4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/lib/python/verb/vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,9 @@ def push(self, model, ignore_coverage: bool=False):
if net.has_sink() == True:
# verify the observation involves only signals being written for this transaction
sinks = net.get_sink_list()
print(sinks)
for sink in sinks:
print(net._name)
print(sink._name, sink._mode)
print(signals)
# exit early if a signal being observed is not this transaction
if type(sink) == Signal and sink not in signals:
print('broken')
break
pass
# perform an observation if the signals are in this transaction
Expand Down

0 comments on commit 2c526b4

Please sign in to comment.