Skip to content

Commit

Permalink
slight speedup on test by using very small bitsize
Browse files Browse the repository at this point in the history
  • Loading branch information
fpapa250 committed Oct 31, 2024
1 parent 07de406 commit d5f3147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qualtran/bloqs/factoring/ecc/ec_add_r_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_ec_window_add_r_bloq_counts(n, window_size, a, b):


@pytest.mark.parametrize(
['n', 'm'], [(n, m) for n in range(7, 8) for m in range(1, n + 1) if n % m == 0]
['n', 'm'], [(n, m) for n in range(4, 5) for m in range(1, n + 1) if n % m == 0]
)
@pytest.mark.parametrize('a,b', [(15, 13), (0, 0)])
@pytest.mark.parametrize('x,y', [(15, 13), (5, 8)])
Expand Down

0 comments on commit d5f3147

Please sign in to comment.