Skip to content

Commit

Permalink
remove print statements (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoureldinYosri authored Aug 31, 2024
1 parent f4ec2cc commit 64acb52
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions qualtran/bloqs/arithmetic/comparison_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@ def test_clineardepthgreaterthan_classical_action_unsigned(ctrl, dtype, bitsize)
cb = b.decompose_bloq()
for c, target in itertools.product(range(2), repeat=2):
for (x, y) in itertools.product(range(2**bitsize), repeat=2):
print(f'{c=} {target=} {x=} {y=}')
assert b.call_classically(ctrl=c, a=x, b=y, target=target) == cb.call_classically(
ctrl=c, a=x, b=y, target=target
)
Expand All @@ -351,7 +350,6 @@ def test_clineardepthgreaterthan_classical_action_signed(ctrl, bitsize):
cb = b.decompose_bloq()
for c, target in itertools.product(range(2), repeat=2):
for (x, y) in itertools.product(range(-(2 ** (bitsize - 1)), 2 ** (bitsize - 1)), repeat=2):
print(f'{c=} {target=} {x=} {y=}')
assert b.call_classically(ctrl=c, a=x, b=y, target=target) == cb.call_classically(
ctrl=c, a=x, b=y, target=target
)
Expand Down

0 comments on commit 64acb52

Please sign in to comment.