Skip to content

Commit

Permalink
rewrite cx as CX
Browse files Browse the repository at this point in the history
  • Loading branch information
contra-bit committed Feb 8, 2024
1 parent 1bedc64 commit dbc9b63
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/qasm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,18 @@ using OpenQASM
h q[2];
x q[2];
h q[2];
cx q[1],q[2];
CX q[1],q[2];
tdg q[2];
cx q[0],q[2];
CX q[0],q[2];
t q[2];
cx q[1],q[2];
CX q[1],q[2];
t q[1];
tdg q[2];
cx q[0],q[2];
cx q[0],q[1];
CX q[0],q[2];
CX q[0],q[1];
t q[0];
tdg q[1];
cx q[0],q[1];
CX q[0],q[1];
h q[0];
h q[1];
t q[2];
Expand Down Expand Up @@ -135,9 +135,9 @@ end
x q[0];
x q[1];
h q[2];
cx q[0],q[2];
CX q[0],q[2];
x q[0];
cx q[1],q[2];
CX q[1],q[2];
h q[0];
x q[1];
h q[1];
Expand Down

0 comments on commit dbc9b63

Please sign in to comment.