Skip to content

Commit

Permalink
Update src/qibo/models/circuit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomello authored Dec 16, 2024
1 parent 385867c commit 32c4700
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qibo/models/circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ class Circuit:
from qibo import Circuit
c = Circuit(5) # Default wire names are [0, 1, 2, 3, 4]
c = Circuit(["A", "B", "C", "D", "E"])
c = Circuit(5, wire_names=["A", "B", "C", "D", "E"])
circuit = Circuit(5) # Default wire names are [0, 1, 2, 3, 4]
circuit = Circuit(["A", "B", "C", "D", "E"])
circuit = Circuit(5, wire_names=["A", "B", "C", "D", "E"])
c = Circuit(wire_names=["A", "B", "C", "D", "E"])
Args:
Expand Down

0 comments on commit 32c4700

Please sign in to comment.