Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in drawing barriers in matplotlib circuit drawer #1703

Closed
ajavadia opened this issue Jan 21, 2019 · 0 comments · Fixed by #1718
Closed

Bug in drawing barriers in matplotlib circuit drawer #1703

ajavadia opened this issue Jan 21, 2019 · 0 comments · Fixed by #1718
Labels
good first issue Good for newcomers

Comments

@ajavadia
Copy link
Member

Informations

  • Qiskit Terra version: master
  • Python version: 3.6
  • Operating system: mac

What is the current behavior?

Drawing barriers (or barrier like instructions such as snapshot) sometimes fails in matplotlib drawer.

Steps to reproduce the problem

from qiskit import QuantumCircuit
qasm = """
OPENQASM 2.0;
include "qelib1.inc";
qreg q[1];
qreg r[1];
creg c[1];
cz q, r;
barrier q, r;
x q;
y q;
measure q -> c;
z q;
if (c==1) z r;
"""
circ = QuantumCircuit.from_qasm_str(qasm)
circ.draw(output='mpl')

image

What is the expected behavior?

Barrier should extend across all qubits.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Development

Successfully merging a pull request may close this issue.

1 participant