diff --git a/qualtran/bloqs/arithmetic/comparison_test.py b/qualtran/bloqs/arithmetic/comparison_test.py index f27e1dee6..368d45d3c 100644 --- a/qualtran/bloqs/arithmetic/comparison_test.py +++ b/qualtran/bloqs/arithmetic/comparison_test.py @@ -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 ) @@ -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 )