Skip to content

Commit

Permalink
type
Browse files Browse the repository at this point in the history
  • Loading branch information
NoureldinYosri committed Oct 29, 2024
1 parent 6f2c448 commit e6c18d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qualtran/bloqs/mod_arithmetic/mod_division_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_kaliski_mod_inverse_classical_action(bitsize, mod):
assert res == cblq.call_classically(x=x_montgomery)
assert len(res) == 2
assert res[0] == dtype.montgomery_inverse(x_montgomery, mod)
assert dtype.montgomery_product(res[0], x_montgomery, mod) == R
assert dtype.montgomery_product(int(res[0]), x_montgomery, mod) == R


@pytest.mark.parametrize('bitsize', [5, 6])
Expand Down

0 comments on commit e6c18d7

Please sign in to comment.