Skip to content

Commit

Permalink
Merge pull request #201 from BBN-Q/fix/GST_typo
Browse files Browse the repository at this point in the history
Fixed Atomic and DiAtomic Clifford typo.
  • Loading branch information
matthewware committed Apr 9, 2019
2 parents 53e5f16 + 0731859 commit 352c613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QGL/GSTTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def SingleQubitCliffordGST(qubit, pygsti_seq, pulse_library="Standard", randomiz
clifford_pulse.insert(0, Id(qubit, length=0.0))
elif pulse_library == "DIAC":
#clifford_pulse = lambda x: DiAC(qubit, x, diac_compiled)
clifford_pulse = [AC(qubit, i, diac_compiled) for i in range(24)]
clifford_pulse = [DiAC(qubit, i, diac_compiled) for i in range(24)]
clifford_pulse.insert(1, Id(qubit))
elif pulse_library == "AC":
#clifford_pulse = lambda x: AC(qubit, x)
Expand Down

0 comments on commit 352c613

Please sign in to comment.