Skip to content
Merged
Changes from all 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
6 changes: 3 additions & 3 deletions qsimcirq/qsim_circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

from . import qsim

# List of parameter names that appear in valid Cirq protos.
GATE_PARAMS = [
# Set of parameter names that appear in valid Cirq protos.
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