Skip to content

Commit

Permalink
add z rep tests for diag coulomb trotter qiskit gate
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung committed Aug 8, 2024
1 parent f40dfaf commit 185a70f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/python/qiskit/gates/double_factorized_trotter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
"norb, nelec, time, n_steps, order, z_representation",
[
(4, (2, 2), 0.1, 1, 0, False),
(4, (2, 2), 0.1, 1, 0, True),
(4, (2, 2), 0.1, 2, 0, False),
(4, (2, 2), 0.1, 2, 0, True),
(4, (2, 2), 0.1, 1, 1, False),
(4, (2, 2), 0.1, 1, 1, True),
(4, (2, 2), 0.1, 1, 2, False),
(4, (2, 2), 0.1, 1, 2, True),
],
)
def test_random(
Expand Down

0 comments on commit 185a70f

Please sign in to comment.