Skip to content

Commit

Permalink
reorder tests
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomello committed Dec 7, 2024
1 parent 3e50d4d commit b914f0b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_hamiltonians_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
from qibo import hamiltonians, matrices

models_config = [
("TFIM", {"nqubits": 3, "h": 0.0}, "tfim_N3h0.0.out"),
("TFIM", {"nqubits": 3, "h": 0.5}, "tfim_N3h0.5.out"),
("TFIM", {"nqubits": 3, "h": 1.0}, "tfim_N3h1.0.out"),
("XXZ", {"nqubits": 3, "delta": 0.0}, "heisenberg_N3delta0.0.out"),
("XXZ", {"nqubits": 3, "delta": 0.5}, "heisenberg_N3delta0.5.out"),
("XXZ", {"nqubits": 3, "delta": 1.0}, "heisenberg_N3delta1.0.out"),
("X", {"nqubits": 3}, "x_N3.out"),
("Y", {"nqubits": 4}, "y_N4.out"),
("Z", {"nqubits": 5}, "z_N5.out"),
("TFIM", {"nqubits": 3, "h": 0.0}, "tfim_N3h0.0.out"),
("TFIM", {"nqubits": 3, "h": 0.5}, "tfim_N3h0.5.out"),
("TFIM", {"nqubits": 3, "h": 1.0}, "tfim_N3h1.0.out"),
("MaxCut", {"nqubits": 3}, "maxcut_N3.out"),
("MaxCut", {"nqubits": 4}, "maxcut_N4.out"),
("MaxCut", {"nqubits": 5}, "maxcut_N5.out"),
("XXZ", {"nqubits": 3, "delta": 0.0}, "heisenberg_N3delta0.0.out"),
("XXZ", {"nqubits": 3, "delta": 0.5}, "heisenberg_N3delta0.5.out"),
("XXZ", {"nqubits": 3, "delta": 1.0}, "heisenberg_N3delta1.0.out"),
]


Expand Down

0 comments on commit b914f0b

Please sign in to comment.