Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qsimcirq/qsim_circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from . import qsim

# List of parameter names that appear in valid Cirq protos.
GATE_PARAMS = [
GATE_PARAMS = {
Comment thread
mhucka marked this conversation as resolved.
"exponent",
"phase_exponent",
"global_shift",
Expand All @@ -29,7 +29,7 @@
"axis_phase_exponent",
"phi",
"theta",
]
}


def _translate_ControlledGate(gate: cirq.ControlledGate):
Expand Down
Loading