diff --git a/examples/qasm/qis1 b/examples/qasm/qis1 new file mode 100644 index 000000000000..0660790031c6 --- /dev/null +++ b/examples/qasm/qis1 @@ -0,0 +1,25 @@ +QASM Editor for 6 qubit: +include "qelib1.inc"; +qreg q[6]; +creg c[6]; + +h q[0]; +h q[1]; +x q[2]; +h q[3]; +x q[4]; +x q[5]; +t q[0]; +cx q[1],q[2]; +h q[0]; +cx q[3],q[2]; +s q[0]; +cx q[1],q[4]; +cx q[2],q[5]; +h q[4]; +cx q[0],q[5]; +cx q[1],q[5]; +cx q[3],q[5]; +cx q[4],q[0]; +cx q[0],q[4]; +measure q[4] -> c[0];