Skip to content

Commit

Permalink
update test parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung committed Oct 30, 2023
1 parent 2aa0846 commit b12bb12
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/states/states_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def test_rdm_1(norb: int, nelec: tuple[int, int]):
"norb, nelec",
[
(4, (2, 2)),
(4, (1, 2)),
(4, (0, 1)),
(4, (0, 0)),
(3, (1, 2)),
(2, (0, 1)),
(1, (0, 0)),
],
)
def test_rdm_2_spin_summed_reordered(norb: int, nelec: tuple[int, int]):
Expand All @@ -141,9 +141,9 @@ def test_rdm_2_spin_summed_reordered(norb: int, nelec: tuple[int, int]):
"norb, nelec",
[
(4, (2, 2)),
(4, (1, 2)),
(4, (0, 1)),
(4, (0, 0)),
(3, (1, 2)),
(2, (0, 1)),
(1, (0, 0)),
],
)
def test_rdm_2_reordered(norb: int, nelec: tuple[int, int]):
Expand All @@ -160,9 +160,9 @@ def test_rdm_2_reordered(norb: int, nelec: tuple[int, int]):
"norb, nelec",
[
(4, (2, 2)),
(4, (1, 2)),
(4, (0, 1)),
(4, (0, 0)),
(3, (1, 2)),
(2, (0, 1)),
(1, (0, 0)),
],
)
def test_rdm_2_spin_summed(norb: int, nelec: tuple[int, int]):
Expand All @@ -179,9 +179,9 @@ def test_rdm_2_spin_summed(norb: int, nelec: tuple[int, int]):
"norb, nelec",
[
(4, (2, 2)),
(4, (1, 2)),
(4, (0, 1)),
(4, (0, 0)),
(3, (1, 2)),
(2, (0, 1)),
(1, (0, 0)),
],
)
def test_rdm_2(norb: int, nelec: tuple[int, int]):
Expand Down

0 comments on commit b12bb12

Please sign in to comment.