cirq-core 1.5.0.dev20250409225226__py3-none-any.whl → 1.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cirq-core might be problematic. Click here for more details.

Files changed (732) hide show
  1. cirq/__init__.py +16 -17
  2. cirq/_compat.py +21 -20
  3. cirq/_compat_test.py +14 -34
  4. cirq/_doc.py +4 -2
  5. cirq/_import.py +8 -6
  6. cirq/_import_test.py +4 -2
  7. cirq/_version.py +6 -6
  8. cirq/_version_test.py +2 -2
  9. cirq/circuits/_block_diagram_drawer.py +11 -10
  10. cirq/circuits/_block_diagram_drawer_test.py +8 -6
  11. cirq/circuits/_box_drawing_character_data.py +8 -8
  12. cirq/circuits/_box_drawing_character_data_test.py +3 -1
  13. cirq/circuits/_bucket_priority_queue.py +9 -7
  14. cirq/circuits/_bucket_priority_queue_test.py +22 -20
  15. cirq/circuits/circuit.py +248 -172
  16. cirq/circuits/circuit_operation.py +73 -83
  17. cirq/circuits/circuit_operation_test.py +128 -90
  18. cirq/circuits/circuit_test.py +211 -151
  19. cirq/circuits/frozen_circuit.py +23 -60
  20. cirq/circuits/frozen_circuit_test.py +31 -8
  21. cirq/circuits/insert_strategy.py +7 -5
  22. cirq/circuits/insert_strategy_test.py +4 -2
  23. cirq/circuits/moment.py +88 -40
  24. cirq/circuits/moment_test.py +128 -51
  25. cirq/circuits/optimization_pass.py +5 -5
  26. cirq/circuits/optimization_pass_test.py +10 -10
  27. cirq/circuits/qasm_output.py +11 -11
  28. cirq/circuits/qasm_output_test.py +25 -22
  29. cirq/circuits/text_diagram_drawer.py +23 -38
  30. cirq/circuits/text_diagram_drawer_test.py +19 -17
  31. cirq/conftest.py +4 -3
  32. cirq/contrib/__init__.py +4 -4
  33. cirq/contrib/acquaintance/__init__.py +1 -1
  34. cirq/contrib/acquaintance/bipartite.py +5 -8
  35. cirq/contrib/acquaintance/bipartite_test.py +18 -13
  36. cirq/contrib/acquaintance/devices.py +2 -2
  37. cirq/contrib/acquaintance/devices_test.py +5 -3
  38. cirq/contrib/acquaintance/executor.py +5 -5
  39. cirq/contrib/acquaintance/executor_test.py +13 -9
  40. cirq/contrib/acquaintance/gates.py +18 -28
  41. cirq/contrib/acquaintance/gates_test.py +24 -20
  42. cirq/contrib/acquaintance/inspection_utils.py +8 -4
  43. cirq/contrib/acquaintance/inspection_utils_test.py +4 -2
  44. cirq/contrib/acquaintance/mutation_utils.py +4 -4
  45. cirq/contrib/acquaintance/mutation_utils_test.py +4 -2
  46. cirq/contrib/acquaintance/optimizers.py +4 -4
  47. cirq/contrib/acquaintance/optimizers_test.py +4 -1
  48. cirq/contrib/acquaintance/permutation.py +15 -27
  49. cirq/contrib/acquaintance/permutation_test.py +26 -17
  50. cirq/contrib/acquaintance/shift.py +4 -4
  51. cirq/contrib/acquaintance/shift_swap_network.py +4 -4
  52. cirq/contrib/acquaintance/shift_swap_network_test.py +9 -6
  53. cirq/contrib/acquaintance/shift_test.py +8 -6
  54. cirq/contrib/acquaintance/strategies/cubic.py +2 -2
  55. cirq/contrib/acquaintance/strategies/cubic_test.py +4 -2
  56. cirq/contrib/acquaintance/strategies/quartic_paired.py +6 -6
  57. cirq/contrib/acquaintance/strategies/quartic_paired_test.py +10 -6
  58. cirq/contrib/acquaintance/testing.py +2 -0
  59. cirq/contrib/acquaintance/topological_sort.py +2 -2
  60. cirq/contrib/acquaintance/topological_sort_test.py +3 -1
  61. cirq/contrib/bayesian_network/bayesian_network_gate.py +9 -10
  62. cirq/contrib/bayesian_network/bayesian_network_gate_test.py +14 -9
  63. cirq/contrib/circuitdag/circuit_dag.py +4 -4
  64. cirq/contrib/circuitdag/circuit_dag_test.py +17 -15
  65. cirq/contrib/custom_simulators/custom_state_simulator.py +5 -5
  66. cirq/contrib/custom_simulators/custom_state_simulator_test.py +22 -17
  67. cirq/contrib/graph_device/graph_device.py +12 -11
  68. cirq/contrib/graph_device/graph_device_test.py +18 -14
  69. cirq/contrib/graph_device/hypergraph.py +16 -14
  70. cirq/contrib/graph_device/hypergraph_test.py +13 -11
  71. cirq/contrib/graph_device/uniform_graph_device.py +6 -4
  72. cirq/contrib/graph_device/uniform_graph_device_test.py +11 -3
  73. cirq/contrib/hacks/disable_validation.py +6 -1
  74. cirq/contrib/hacks/disable_validation_test.py +3 -1
  75. cirq/contrib/json.py +31 -5
  76. cirq/contrib/json_test.py +6 -3
  77. cirq/contrib/json_test_data/DampedReadoutNoiseModel.json +12 -0
  78. cirq/contrib/json_test_data/DampedReadoutNoiseModel.repr +4 -0
  79. cirq/contrib/json_test_data/DepolarizingNoiseModel.json +12 -0
  80. cirq/contrib/json_test_data/DepolarizingNoiseModel.repr +4 -0
  81. cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.json +6 -0
  82. cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.repr +1 -0
  83. cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.json +5 -0
  84. cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.repr +1 -0
  85. cirq/contrib/json_test_data/ReadoutNoiseModel.json +12 -0
  86. cirq/contrib/json_test_data/ReadoutNoiseModel.repr +4 -0
  87. cirq/contrib/json_test_data/__init__.py +17 -0
  88. cirq/contrib/json_test_data/spec.py +32 -0
  89. cirq/contrib/noise_models/noise_models.py +119 -5
  90. cirq/contrib/noise_models/noise_models_test.py +37 -9
  91. cirq/contrib/paulistring/clifford_optimize.py +6 -4
  92. cirq/contrib/paulistring/clifford_optimize_test.py +6 -5
  93. cirq/contrib/paulistring/clifford_target_gateset.py +10 -10
  94. cirq/contrib/paulistring/clifford_target_gateset_test.py +13 -11
  95. cirq/contrib/paulistring/optimize.py +2 -0
  96. cirq/contrib/paulistring/optimize_test.py +4 -3
  97. cirq/contrib/paulistring/pauli_string_dag.py +2 -0
  98. cirq/contrib/paulistring/pauli_string_dag_test.py +3 -1
  99. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py +255 -120
  100. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py +398 -19
  101. cirq/contrib/paulistring/pauli_string_optimize.py +7 -1
  102. cirq/contrib/paulistring/pauli_string_optimize_test.py +5 -3
  103. cirq/contrib/paulistring/recombine.py +6 -4
  104. cirq/contrib/paulistring/recombine_test.py +3 -1
  105. cirq/contrib/paulistring/separate.py +9 -6
  106. cirq/contrib/paulistring/separate_test.py +3 -1
  107. cirq/contrib/qasm_import/_lexer.py +3 -2
  108. cirq/contrib/qasm_import/_lexer_test.py +49 -13
  109. cirq/contrib/qasm_import/_parser.py +547 -83
  110. cirq/contrib/qasm_import/_parser_test.py +988 -97
  111. cirq/contrib/qasm_import/exception.py +2 -0
  112. cirq/contrib/qasm_import/qasm.py +8 -2
  113. cirq/contrib/qasm_import/qasm_test.py +7 -4
  114. cirq/contrib/qcircuit/qcircuit_diagram_info.py +5 -5
  115. cirq/contrib/qcircuit/qcircuit_diagram_info_test.py +4 -1
  116. cirq/contrib/qcircuit/qcircuit_pdf.py +7 -3
  117. cirq/contrib/qcircuit/qcircuit_pdf_test.py +3 -1
  118. cirq/contrib/qcircuit/qcircuit_test.py +10 -8
  119. cirq/contrib/quantum_volume/quantum_volume.py +31 -27
  120. cirq/contrib/quantum_volume/quantum_volume_test.py +19 -16
  121. cirq/contrib/quimb/density_matrix.py +15 -14
  122. cirq/contrib/quimb/density_matrix_test.py +10 -7
  123. cirq/contrib/quimb/grid_circuits.py +5 -2
  124. cirq/contrib/quimb/grid_circuits_test.py +3 -0
  125. cirq/contrib/quimb/mps_simulator.py +20 -20
  126. cirq/contrib/quimb/mps_simulator_test.py +3 -0
  127. cirq/contrib/quimb/state_vector.py +12 -11
  128. cirq/contrib/quimb/state_vector_test.py +3 -0
  129. cirq/contrib/quirk/export_to_quirk.py +5 -3
  130. cirq/contrib/quirk/export_to_quirk_test.py +18 -16
  131. cirq/contrib/quirk/linearize_circuit.py +2 -0
  132. cirq/contrib/quirk/quirk_gate.py +18 -17
  133. cirq/contrib/routing/device.py +5 -3
  134. cirq/contrib/routing/device_test.py +2 -0
  135. cirq/contrib/routing/greedy.py +10 -21
  136. cirq/contrib/routing/greedy_test.py +4 -2
  137. cirq/contrib/routing/initialization.py +2 -2
  138. cirq/contrib/routing/initialization_test.py +5 -3
  139. cirq/contrib/routing/router.py +9 -5
  140. cirq/contrib/routing/router_test.py +2 -0
  141. cirq/contrib/routing/swap_network.py +3 -3
  142. cirq/contrib/routing/swap_network_test.py +3 -1
  143. cirq/contrib/routing/utils.py +2 -2
  144. cirq/contrib/routing/utils_test.py +3 -0
  145. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +15 -9
  146. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +3 -0
  147. cirq/contrib/svg/svg.py +3 -3
  148. cirq/contrib/svg/svg_test.py +8 -5
  149. cirq/devices/device.py +4 -4
  150. cirq/devices/device_test.py +7 -4
  151. cirq/devices/grid_device_metadata.py +10 -10
  152. cirq/devices/grid_device_metadata_test.py +3 -0
  153. cirq/devices/grid_qubit.py +29 -21
  154. cirq/devices/grid_qubit_test.py +3 -0
  155. cirq/devices/insertion_noise_model.py +7 -7
  156. cirq/devices/insertion_noise_model_test.py +7 -5
  157. cirq/devices/line_qubit.py +13 -13
  158. cirq/devices/line_qubit_test.py +2 -0
  159. cirq/devices/named_topologies.py +18 -29
  160. cirq/devices/named_topologies_test.py +13 -10
  161. cirq/devices/noise_model.py +3 -3
  162. cirq/devices/noise_model_test.py +19 -15
  163. cirq/devices/noise_properties.py +15 -6
  164. cirq/devices/noise_properties_test.py +34 -3
  165. cirq/devices/noise_utils.py +11 -9
  166. cirq/devices/noise_utils_test.py +2 -0
  167. cirq/devices/superconducting_qubits_noise_properties.py +23 -22
  168. cirq/devices/superconducting_qubits_noise_properties_test.py +6 -6
  169. cirq/devices/thermal_noise_model.py +107 -37
  170. cirq/devices/thermal_noise_model_test.py +21 -0
  171. cirq/devices/unconstrained_device.py +5 -3
  172. cirq/devices/unconstrained_device_test.py +2 -0
  173. cirq/experiments/__init__.py +4 -2
  174. cirq/experiments/benchmarking/__init__.py +17 -0
  175. cirq/experiments/benchmarking/parallel_xeb.py +677 -0
  176. cirq/experiments/benchmarking/parallel_xeb_test.py +447 -0
  177. cirq/experiments/fidelity_estimation.py +14 -8
  178. cirq/experiments/fidelity_estimation_test.py +3 -0
  179. cirq/experiments/n_qubit_tomography.py +17 -16
  180. cirq/experiments/n_qubit_tomography_test.py +8 -5
  181. cirq/experiments/purity_estimation.py +2 -0
  182. cirq/experiments/purity_estimation_test.py +2 -0
  183. cirq/experiments/qubit_characterizations.py +207 -103
  184. cirq/experiments/qubit_characterizations_test.py +40 -12
  185. cirq/experiments/random_quantum_circuit_generation.py +56 -70
  186. cirq/experiments/random_quantum_circuit_generation_test.py +11 -8
  187. cirq/experiments/readout_confusion_matrix.py +24 -22
  188. cirq/experiments/readout_confusion_matrix_test.py +2 -0
  189. cirq/experiments/single_qubit_readout_calibration.py +30 -15
  190. cirq/experiments/single_qubit_readout_calibration_test.py +5 -2
  191. cirq/experiments/t1_decay_experiment.py +9 -7
  192. cirq/experiments/t1_decay_experiment_test.py +13 -11
  193. cirq/experiments/t2_decay_experiment.py +16 -13
  194. cirq/experiments/t2_decay_experiment_test.py +2 -0
  195. cirq/experiments/two_qubit_xeb.py +64 -57
  196. cirq/experiments/two_qubit_xeb_test.py +10 -6
  197. cirq/experiments/xeb_fitting.py +39 -35
  198. cirq/experiments/xeb_sampling.py +37 -44
  199. cirq/experiments/xeb_sampling_test.py +3 -0
  200. cirq/experiments/xeb_simulation.py +14 -10
  201. cirq/experiments/xeb_simulation_test.py +5 -5
  202. cirq/experiments/z_phase_calibration.py +32 -29
  203. cirq/experiments/z_phase_calibration_test.py +3 -4
  204. cirq/interop/quirk/cells/__init__.py +1 -1
  205. cirq/interop/quirk/cells/all_cells.py +7 -2
  206. cirq/interop/quirk/cells/arithmetic_cells.py +29 -41
  207. cirq/interop/quirk/cells/arithmetic_cells_test.py +17 -14
  208. cirq/interop/quirk/cells/cell.py +19 -28
  209. cirq/interop/quirk/cells/cell_test.py +3 -0
  210. cirq/interop/quirk/cells/composite_cell.py +13 -28
  211. cirq/interop/quirk/cells/composite_cell_test.py +2 -0
  212. cirq/interop/quirk/cells/control_cells.py +15 -15
  213. cirq/interop/quirk/cells/control_cells_test.py +7 -5
  214. cirq/interop/quirk/cells/frequency_space_cells.py +4 -3
  215. cirq/interop/quirk/cells/frequency_space_cells_test.py +3 -1
  216. cirq/interop/quirk/cells/ignored_cells.py +3 -0
  217. cirq/interop/quirk/cells/ignored_cells_test.py +3 -1
  218. cirq/interop/quirk/cells/input_cells.py +7 -5
  219. cirq/interop/quirk/cells/input_cells_test.py +7 -5
  220. cirq/interop/quirk/cells/input_rotation_cells.py +15 -13
  221. cirq/interop/quirk/cells/input_rotation_cells_test.py +9 -7
  222. cirq/interop/quirk/cells/measurement_cells.py +5 -2
  223. cirq/interop/quirk/cells/measurement_cells_test.py +3 -1
  224. cirq/interop/quirk/cells/parse.py +22 -23
  225. cirq/interop/quirk/cells/parse_test.py +12 -10
  226. cirq/interop/quirk/cells/qubit_permutation_cells.py +5 -3
  227. cirq/interop/quirk/cells/qubit_permutation_cells_test.py +9 -7
  228. cirq/interop/quirk/cells/scalar_cells.py +4 -1
  229. cirq/interop/quirk/cells/scalar_cells_test.py +3 -1
  230. cirq/interop/quirk/cells/single_qubit_rotation_cells.py +5 -2
  231. cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py +5 -3
  232. cirq/interop/quirk/cells/swap_cell.py +8 -6
  233. cirq/interop/quirk/cells/swap_cell_test.py +6 -4
  234. cirq/interop/quirk/cells/testing.py +6 -6
  235. cirq/interop/quirk/cells/testing_test.py +8 -6
  236. cirq/interop/quirk/cells/unsupported_cells.py +3 -0
  237. cirq/interop/quirk/cells/unsupported_cells_test.py +4 -2
  238. cirq/interop/quirk/url_to_circuit.py +23 -36
  239. cirq/interop/quirk/url_to_circuit_test.py +4 -1
  240. cirq/json_resolver_cache.py +14 -12
  241. cirq/linalg/__init__.py +4 -6
  242. cirq/linalg/combinators.py +7 -5
  243. cirq/linalg/combinators_test.py +10 -7
  244. cirq/linalg/decompositions.py +24 -35
  245. cirq/linalg/decompositions_test.py +3 -1
  246. cirq/linalg/diagonalize.py +6 -4
  247. cirq/linalg/diagonalize_test.py +15 -14
  248. cirq/linalg/operator_spaces.py +14 -14
  249. cirq/linalg/operator_spaces_test.py +13 -11
  250. cirq/linalg/predicates.py +18 -9
  251. cirq/linalg/predicates_test.py +5 -0
  252. cirq/linalg/tolerance.py +6 -3
  253. cirq/linalg/tolerance_test.py +6 -4
  254. cirq/linalg/transformations.py +23 -20
  255. cirq/linalg/transformations_test.py +73 -43
  256. cirq/neutral_atoms/convert_to_neutral_atom_gates.py +9 -3
  257. cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py +3 -1
  258. cirq/neutral_atoms/neutral_atom_devices.py +2 -0
  259. cirq/ops/__init__.py +2 -0
  260. cirq/ops/arithmetic_operation.py +21 -21
  261. cirq/ops/arithmetic_operation_test.py +7 -8
  262. cirq/ops/boolean_hamiltonian.py +23 -22
  263. cirq/ops/boolean_hamiltonian_test.py +12 -9
  264. cirq/ops/classically_controlled_operation.py +31 -36
  265. cirq/ops/classically_controlled_operation_test.py +121 -117
  266. cirq/ops/clifford_gate.py +98 -81
  267. cirq/ops/clifford_gate_test.py +72 -57
  268. cirq/ops/common_channels.py +44 -44
  269. cirq/ops/common_channels_test.py +83 -81
  270. cirq/ops/common_gate_families.py +9 -7
  271. cirq/ops/common_gate_families_test.py +11 -7
  272. cirq/ops/common_gates.py +164 -183
  273. cirq/ops/common_gates_test.py +135 -95
  274. cirq/ops/control_values.py +23 -26
  275. cirq/ops/control_values_test.py +22 -20
  276. cirq/ops/controlled_gate.py +64 -112
  277. cirq/ops/controlled_gate_test.py +130 -35
  278. cirq/ops/controlled_operation.py +24 -35
  279. cirq/ops/controlled_operation_test.py +8 -6
  280. cirq/ops/dense_pauli_string.py +38 -49
  281. cirq/ops/dense_pauli_string_test.py +4 -2
  282. cirq/ops/diagonal_gate.py +18 -31
  283. cirq/ops/diagonal_gate_test.py +13 -13
  284. cirq/ops/eigen_gate.py +29 -29
  285. cirq/ops/eigen_gate_test.py +45 -28
  286. cirq/ops/fourier_transform.py +14 -20
  287. cirq/ops/fourier_transform_test.py +15 -12
  288. cirq/ops/fsim_gate.py +43 -42
  289. cirq/ops/fsim_gate_test.py +29 -29
  290. cirq/ops/gate_features.py +2 -0
  291. cirq/ops/gate_features_test.py +5 -3
  292. cirq/ops/gate_operation.py +43 -65
  293. cirq/ops/gate_operation_test.py +46 -42
  294. cirq/ops/gateset.py +28 -40
  295. cirq/ops/gateset_test.py +4 -2
  296. cirq/ops/global_phase_op.py +45 -20
  297. cirq/ops/global_phase_op_test.py +44 -20
  298. cirq/ops/greedy_qubit_manager.py +10 -8
  299. cirq/ops/greedy_qubit_manager_test.py +5 -3
  300. cirq/ops/identity.py +14 -12
  301. cirq/ops/identity_test.py +24 -20
  302. cirq/ops/kraus_channel.py +11 -8
  303. cirq/ops/kraus_channel_test.py +14 -11
  304. cirq/ops/linear_combinations.py +65 -77
  305. cirq/ops/linear_combinations_test.py +14 -9
  306. cirq/ops/matrix_gates.py +21 -18
  307. cirq/ops/matrix_gates_test.py +16 -0
  308. cirq/ops/measure_util.py +15 -20
  309. cirq/ops/measure_util_test.py +2 -0
  310. cirq/ops/measurement_gate.py +26 -37
  311. cirq/ops/measurement_gate_test.py +2 -0
  312. cirq/ops/mixed_unitary_channel.py +12 -9
  313. cirq/ops/mixed_unitary_channel_test.py +14 -11
  314. cirq/ops/named_qubit.py +16 -13
  315. cirq/ops/named_qubit_test.py +15 -13
  316. cirq/ops/op_tree.py +9 -7
  317. cirq/ops/op_tree_test.py +22 -19
  318. cirq/ops/parallel_gate.py +15 -17
  319. cirq/ops/parallel_gate_test.py +18 -16
  320. cirq/ops/parity_gates.py +23 -25
  321. cirq/ops/parity_gates_test.py +36 -32
  322. cirq/ops/pauli_gates.py +22 -21
  323. cirq/ops/pauli_gates_test.py +29 -20
  324. cirq/ops/pauli_interaction_gate.py +15 -19
  325. cirq/ops/pauli_interaction_gate_test.py +10 -8
  326. cirq/ops/pauli_measurement_gate.py +23 -35
  327. cirq/ops/pauli_measurement_gate_test.py +2 -0
  328. cirq/ops/pauli_string.py +92 -120
  329. cirq/ops/pauli_string_phasor.py +52 -45
  330. cirq/ops/pauli_string_phasor_test.py +4 -5
  331. cirq/ops/pauli_string_raw_types.py +9 -7
  332. cirq/ops/pauli_string_raw_types_test.py +2 -0
  333. cirq/ops/pauli_string_test.py +31 -154
  334. cirq/ops/pauli_sum_exponential.py +12 -12
  335. cirq/ops/pauli_sum_exponential_test.py +12 -10
  336. cirq/ops/permutation_gate.py +8 -6
  337. cirq/ops/permutation_gate_test.py +10 -8
  338. cirq/ops/phased_iswap_gate.py +16 -16
  339. cirq/ops/phased_iswap_gate_test.py +17 -15
  340. cirq/ops/phased_x_gate.py +16 -17
  341. cirq/ops/phased_x_gate_test.py +18 -16
  342. cirq/ops/phased_x_z_gate.py +24 -22
  343. cirq/ops/phased_x_z_gate_test.py +17 -11
  344. cirq/ops/projector.py +16 -11
  345. cirq/ops/projector_test.py +19 -16
  346. cirq/ops/qid_util.py +7 -5
  347. cirq/ops/qid_util_test.py +2 -0
  348. cirq/ops/qubit_manager.py +11 -9
  349. cirq/ops/qubit_manager_test.py +6 -4
  350. cirq/ops/qubit_order.py +11 -14
  351. cirq/ops/qubit_order_or_list.py +4 -2
  352. cirq/ops/qubit_order_test.py +12 -10
  353. cirq/ops/random_gate_channel.py +12 -10
  354. cirq/ops/random_gate_channel_test.py +14 -11
  355. cirq/ops/raw_types.py +109 -129
  356. cirq/ops/raw_types_test.py +63 -57
  357. cirq/ops/state_preparation_channel.py +7 -7
  358. cirq/ops/state_preparation_channel_test.py +11 -9
  359. cirq/ops/swap_gates.py +13 -15
  360. cirq/ops/swap_gates_test.py +19 -17
  361. cirq/ops/tags.py +5 -3
  362. cirq/ops/tags_test.py +4 -2
  363. cirq/ops/three_qubit_gates.py +43 -76
  364. cirq/ops/three_qubit_gates_test.py +19 -17
  365. cirq/ops/two_qubit_diagonal_gate.py +13 -13
  366. cirq/ops/two_qubit_diagonal_gate_test.py +10 -8
  367. cirq/ops/uniform_superposition_gate.py +5 -3
  368. cirq/ops/uniform_superposition_gate_test.py +5 -3
  369. cirq/ops/wait_gate.py +17 -14
  370. cirq/ops/wait_gate_test.py +9 -6
  371. cirq/protocols/__init__.py +0 -3
  372. cirq/protocols/act_on_protocol.py +8 -6
  373. cirq/protocols/act_on_protocol_test.py +15 -12
  374. cirq/protocols/apply_channel_protocol.py +10 -14
  375. cirq/protocols/apply_channel_protocol_test.py +2 -0
  376. cirq/protocols/apply_mixture_protocol.py +13 -42
  377. cirq/protocols/apply_mixture_protocol_test.py +7 -5
  378. cirq/protocols/apply_unitary_protocol.py +39 -34
  379. cirq/protocols/apply_unitary_protocol_test.py +4 -1
  380. cirq/protocols/approximate_equality_protocol.py +2 -0
  381. cirq/protocols/approximate_equality_protocol_test.py +2 -0
  382. cirq/protocols/circuit_diagram_info_protocol.py +58 -42
  383. cirq/protocols/circuit_diagram_info_protocol_test.py +70 -12
  384. cirq/protocols/commutes_protocol.py +8 -7
  385. cirq/protocols/commutes_protocol_test.py +2 -0
  386. cirq/protocols/control_key_protocol.py +6 -4
  387. cirq/protocols/control_key_protocol_test.py +3 -1
  388. cirq/protocols/decompose_protocol.py +49 -48
  389. cirq/protocols/decompose_protocol_test.py +27 -16
  390. cirq/protocols/equal_up_to_global_phase_protocol.py +2 -0
  391. cirq/protocols/equal_up_to_global_phase_protocol_test.py +9 -6
  392. cirq/protocols/has_stabilizer_effect_protocol.py +7 -5
  393. cirq/protocols/has_stabilizer_effect_protocol_test.py +7 -5
  394. cirq/protocols/has_unitary_protocol.py +10 -6
  395. cirq/protocols/has_unitary_protocol_test.py +13 -8
  396. cirq/protocols/hash_from_pickle_test.py +2 -11
  397. cirq/protocols/inverse_protocol.py +13 -16
  398. cirq/protocols/inverse_protocol_test.py +5 -3
  399. cirq/protocols/json_serialization.py +35 -54
  400. cirq/protocols/json_serialization_test.py +14 -21
  401. cirq/protocols/json_test_data/CXSWAP.json +46 -0
  402. cirq/protocols/json_test_data/CXSWAP.repr +13 -0
  403. cirq/protocols/json_test_data/CZSWAP.json +46 -0
  404. cirq/protocols/json_test_data/CZSWAP.repr +13 -0
  405. cirq/protocols/json_test_data/CircuitOperation.json +6 -3
  406. cirq/protocols/json_test_data/CircuitOperation.repr_inward +4 -2
  407. cirq/protocols/json_test_data/Moment.json +24 -1
  408. cirq/protocols/json_test_data/Moment.repr +6 -1
  409. cirq/protocols/json_test_data/ThermalNoiseModel.json +32 -0
  410. cirq/protocols/json_test_data/ThermalNoiseModel.repr +1 -0
  411. cirq/protocols/json_test_data/spec.py +6 -2
  412. cirq/protocols/kraus_protocol.py +47 -7
  413. cirq/protocols/kraus_protocol_test.py +86 -12
  414. cirq/protocols/measurement_key_protocol.py +15 -16
  415. cirq/protocols/measurement_key_protocol_test.py +13 -11
  416. cirq/protocols/mixture_protocol.py +7 -5
  417. cirq/protocols/mixture_protocol_test.py +4 -2
  418. cirq/protocols/mul_protocol.py +2 -3
  419. cirq/protocols/mul_protocol_test.py +2 -0
  420. cirq/protocols/pauli_expansion_protocol.py +6 -3
  421. cirq/protocols/pauli_expansion_protocol_test.py +5 -3
  422. cirq/protocols/phase_protocol.py +2 -0
  423. cirq/protocols/phase_protocol_test.py +3 -1
  424. cirq/protocols/pow_protocol.py +11 -16
  425. cirq/protocols/pow_protocol_test.py +2 -0
  426. cirq/protocols/qasm.py +14 -20
  427. cirq/protocols/qasm_test.py +6 -3
  428. cirq/protocols/qid_shape_protocol.py +8 -8
  429. cirq/protocols/qid_shape_protocol_test.py +3 -1
  430. cirq/protocols/resolve_parameters.py +5 -3
  431. cirq/protocols/resolve_parameters_test.py +8 -7
  432. cirq/protocols/trace_distance_bound.py +6 -4
  433. cirq/protocols/trace_distance_bound_test.py +3 -1
  434. cirq/protocols/unitary_protocol.py +17 -7
  435. cirq/protocols/unitary_protocol_test.py +12 -2
  436. cirq/qis/channels.py +6 -2
  437. cirq/qis/channels_test.py +20 -16
  438. cirq/qis/clifford_tableau.py +21 -19
  439. cirq/qis/clifford_tableau_test.py +2 -2
  440. cirq/qis/entropy.py +14 -3
  441. cirq/qis/entropy_test.py +3 -1
  442. cirq/qis/measures.py +13 -13
  443. cirq/qis/measures_test.py +20 -14
  444. cirq/qis/noise_utils.py +2 -0
  445. cirq/qis/noise_utils_test.py +9 -7
  446. cirq/qis/quantum_state_representation.py +7 -8
  447. cirq/qis/states.py +58 -56
  448. cirq/qis/states_test.py +2 -0
  449. cirq/sim/classical_simulator.py +23 -22
  450. cirq/sim/classical_simulator_test.py +2 -0
  451. cirq/sim/clifford/clifford_simulator.py +23 -21
  452. cirq/sim/clifford/clifford_simulator_test.py +7 -4
  453. cirq/sim/clifford/clifford_tableau_simulation_state.py +10 -7
  454. cirq/sim/clifford/clifford_tableau_simulation_state_test.py +5 -5
  455. cirq/sim/clifford/stabilizer_ch_form_simulation_state.py +8 -6
  456. cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py +8 -6
  457. cirq/sim/clifford/stabilizer_sampler.py +9 -7
  458. cirq/sim/clifford/stabilizer_sampler_test.py +4 -2
  459. cirq/sim/clifford/stabilizer_simulation_state.py +14 -13
  460. cirq/sim/clifford/stabilizer_simulation_state_test.py +6 -4
  461. cirq/sim/clifford/stabilizer_state_ch_form.py +13 -11
  462. cirq/sim/clifford/stabilizer_state_ch_form_test.py +4 -2
  463. cirq/sim/density_matrix_simulation_state.py +26 -27
  464. cirq/sim/density_matrix_simulation_state_test.py +10 -8
  465. cirq/sim/density_matrix_simulator.py +30 -28
  466. cirq/sim/density_matrix_simulator_test.py +48 -48
  467. cirq/sim/density_matrix_utils.py +13 -11
  468. cirq/sim/density_matrix_utils_test.py +38 -36
  469. cirq/sim/mux.py +33 -31
  470. cirq/sim/mux_test.py +3 -0
  471. cirq/sim/simulation_product_state.py +15 -15
  472. cirq/sim/simulation_product_state_test.py +29 -26
  473. cirq/sim/simulation_state.py +29 -38
  474. cirq/sim/simulation_state_base.py +21 -32
  475. cirq/sim/simulation_state_test.py +15 -13
  476. cirq/sim/simulation_utils.py +5 -2
  477. cirq/sim/simulation_utils_test.py +5 -2
  478. cirq/sim/simulator.py +90 -106
  479. cirq/sim/simulator_base.py +33 -45
  480. cirq/sim/simulator_base_test.py +20 -15
  481. cirq/sim/simulator_test.py +23 -14
  482. cirq/sim/sparse_simulator.py +19 -17
  483. cirq/sim/sparse_simulator_test.py +41 -40
  484. cirq/sim/state_vector.py +15 -12
  485. cirq/sim/state_vector_simulation_state.py +31 -31
  486. cirq/sim/state_vector_simulation_state_test.py +16 -14
  487. cirq/sim/state_vector_simulator.py +17 -14
  488. cirq/sim/state_vector_simulator_test.py +2 -0
  489. cirq/sim/state_vector_test.py +6 -3
  490. cirq/study/flatten_expressions.py +16 -15
  491. cirq/study/flatten_expressions_test.py +13 -11
  492. cirq/study/resolver.py +18 -17
  493. cirq/study/resolver_test.py +22 -20
  494. cirq/study/result.py +17 -27
  495. cirq/study/result_test.py +2 -0
  496. cirq/study/sweepable.py +12 -10
  497. cirq/study/sweepable_test.py +3 -0
  498. cirq/study/sweeps.py +42 -61
  499. cirq/study/sweeps_test.py +33 -0
  500. cirq/testing/__init__.py +7 -11
  501. cirq/testing/_compat_test_data/module_a/__init__.py +1 -0
  502. cirq/testing/_compat_test_data/module_a/module_b/__init__.py +1 -0
  503. cirq/testing/_compat_test_data/module_a/sub/__init__.py +1 -0
  504. cirq/testing/circuit_compare.py +8 -17
  505. cirq/testing/circuit_compare_test.py +2 -0
  506. cirq/testing/consistent_act_on.py +13 -11
  507. cirq/testing/consistent_act_on_test.py +5 -3
  508. cirq/testing/consistent_channels.py +2 -0
  509. cirq/testing/consistent_channels_test.py +10 -8
  510. cirq/testing/consistent_controlled_gate_op.py +5 -5
  511. cirq/testing/consistent_controlled_gate_op_test.py +18 -18
  512. cirq/testing/consistent_decomposition.py +2 -2
  513. cirq/testing/consistent_decomposition_test.py +4 -2
  514. cirq/testing/consistent_pauli_expansion.py +2 -0
  515. cirq/testing/consistent_pauli_expansion_test.py +3 -1
  516. cirq/testing/consistent_phase_by.py +2 -0
  517. cirq/testing/consistent_phase_by_test.py +3 -1
  518. cirq/testing/consistent_protocols.py +14 -20
  519. cirq/testing/consistent_protocols_test.py +13 -11
  520. cirq/testing/consistent_qasm.py +6 -4
  521. cirq/testing/consistent_qasm_test.py +7 -7
  522. cirq/testing/consistent_resolve_parameters.py +2 -0
  523. cirq/testing/consistent_specified_has_unitary.py +2 -2
  524. cirq/testing/consistent_specified_has_unitary_test.py +6 -4
  525. cirq/testing/consistent_unitary.py +1 -0
  526. cirq/testing/consistent_unitary_test.py +4 -2
  527. cirq/testing/deprecation.py +5 -2
  528. cirq/testing/deprecation_test.py +5 -2
  529. cirq/testing/devices.py +7 -4
  530. cirq/testing/devices_test.py +7 -4
  531. cirq/testing/equals_tester.py +4 -2
  532. cirq/testing/equals_tester_test.py +21 -17
  533. cirq/testing/equivalent_basis_map.py +6 -4
  534. cirq/testing/equivalent_basis_map_test.py +6 -4
  535. cirq/testing/equivalent_repr_eval.py +6 -4
  536. cirq/testing/equivalent_repr_eval_test.py +5 -3
  537. cirq/testing/gate_features.py +2 -0
  538. cirq/testing/gate_features_test.py +7 -5
  539. cirq/testing/json.py +19 -15
  540. cirq/testing/json_test.py +5 -3
  541. cirq/testing/lin_alg_utils.py +10 -11
  542. cirq/testing/lin_alg_utils_test.py +14 -12
  543. cirq/testing/logs.py +7 -6
  544. cirq/testing/logs_test.py +9 -7
  545. cirq/testing/no_identifier_qubit.py +4 -2
  546. cirq/testing/no_identifier_qubit_test.py +5 -3
  547. cirq/testing/op_tree.py +2 -0
  548. cirq/testing/op_tree_test.py +4 -1
  549. cirq/testing/order_tester.py +2 -0
  550. cirq/testing/order_tester_test.py +8 -6
  551. cirq/testing/pytest_utils.py +2 -0
  552. cirq/testing/pytest_utils_test.py +4 -2
  553. cirq/testing/random_circuit.py +21 -20
  554. cirq/testing/random_circuit_test.py +12 -9
  555. cirq/testing/repr_pretty_tester.py +1 -0
  556. cirq/testing/repr_pretty_tester_test.py +5 -3
  557. cirq/testing/routing_devices.py +4 -1
  558. cirq/testing/routing_devices_test.py +9 -6
  559. cirq/testing/sample_circuits.py +4 -1
  560. cirq/testing/sample_circuits_test.py +3 -1
  561. cirq/testing/sample_gates.py +3 -0
  562. cirq/testing/sample_gates_test.py +5 -2
  563. cirq/transformers/__init__.py +11 -4
  564. cirq/transformers/align.py +9 -7
  565. cirq/transformers/align_test.py +2 -0
  566. cirq/transformers/analytical_decompositions/__init__.py +3 -6
  567. cirq/transformers/analytical_decompositions/clifford_decomposition.py +18 -16
  568. cirq/transformers/analytical_decompositions/clifford_decomposition_test.py +2 -0
  569. cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +19 -16
  570. cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py +2 -0
  571. cirq/transformers/analytical_decompositions/cphase_to_fsim.py +11 -9
  572. cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py +5 -3
  573. cirq/transformers/analytical_decompositions/pauli_string_decomposition.py +5 -3
  574. cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py +5 -3
  575. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +141 -44
  576. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py +35 -1
  577. cirq/transformers/analytical_decompositions/single_qubit_decompositions.py +8 -7
  578. cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py +2 -0
  579. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py +7 -4
  580. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py +3 -0
  581. cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +11 -19
  582. cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py +8 -33
  583. cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py +9 -11
  584. cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py +2 -0
  585. cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +91 -27
  586. cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py +36 -7
  587. cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +20 -21
  588. cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py +8 -6
  589. cirq/transformers/analytical_decompositions/two_qubit_to_ms.py +13 -15
  590. cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py +3 -1
  591. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +39 -41
  592. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py +2 -0
  593. cirq/transformers/drop_empty_moments.py +5 -3
  594. cirq/transformers/drop_empty_moments_test.py +4 -2
  595. cirq/transformers/drop_negligible_operations.py +7 -5
  596. cirq/transformers/drop_negligible_operations_test.py +2 -0
  597. cirq/transformers/dynamical_decoupling.py +49 -42
  598. cirq/transformers/dynamical_decoupling_test.py +223 -205
  599. cirq/transformers/eject_phased_paulis.py +28 -26
  600. cirq/transformers/eject_phased_paulis_test.py +12 -9
  601. cirq/transformers/eject_z.py +12 -12
  602. cirq/transformers/eject_z_test.py +2 -2
  603. cirq/transformers/expand_composite.py +6 -4
  604. cirq/transformers/expand_composite_test.py +3 -1
  605. cirq/transformers/gauge_compiling/__init__.py +3 -1
  606. cirq/transformers/gauge_compiling/cphase_gauge.py +2 -0
  607. cirq/transformers/gauge_compiling/cphase_gauge_test.py +2 -0
  608. cirq/transformers/gauge_compiling/cz_gauge.py +2 -0
  609. cirq/transformers/gauge_compiling/cz_gauge_test.py +1 -0
  610. cirq/transformers/gauge_compiling/gauge_compiling.py +45 -41
  611. cirq/transformers/gauge_compiling/gauge_compiling_test.py +2 -0
  612. cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py +1 -0
  613. cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py +5 -1
  614. cirq/transformers/gauge_compiling/iswap_gauge.py +2 -0
  615. cirq/transformers/gauge_compiling/iswap_gauge_test.py +1 -0
  616. cirq/transformers/gauge_compiling/spin_inversion_gauge.py +2 -0
  617. cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py +2 -0
  618. cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +7 -6
  619. cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py +2 -0
  620. cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py +2 -0
  621. cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py +2 -0
  622. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +6 -3
  623. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py +3 -0
  624. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +12 -9
  625. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py +9 -7
  626. cirq/transformers/insertion_sort.py +8 -6
  627. cirq/transformers/insertion_sort_test.py +3 -1
  628. cirq/transformers/measurement_transformers.py +29 -29
  629. cirq/transformers/measurement_transformers_test.py +2 -0
  630. cirq/transformers/merge_k_qubit_gates.py +12 -10
  631. cirq/transformers/merge_k_qubit_gates_test.py +18 -18
  632. cirq/transformers/merge_single_qubit_gates.py +197 -20
  633. cirq/transformers/merge_single_qubit_gates_test.py +177 -5
  634. cirq/transformers/noise_adding.py +5 -3
  635. cirq/transformers/noise_adding_test.py +2 -0
  636. cirq/transformers/optimize_for_target_gateset.py +19 -17
  637. cirq/transformers/optimize_for_target_gateset_test.py +11 -8
  638. cirq/transformers/qubit_management_transformers.py +13 -11
  639. cirq/transformers/qubit_management_transformers_test.py +5 -3
  640. cirq/transformers/randomized_measurements.py +16 -14
  641. cirq/transformers/randomized_measurements_test.py +10 -4
  642. cirq/transformers/routing/initial_mapper.py +6 -4
  643. cirq/transformers/routing/initial_mapper_test.py +2 -0
  644. cirq/transformers/routing/line_initial_mapper.py +16 -14
  645. cirq/transformers/routing/line_initial_mapper_test.py +9 -7
  646. cirq/transformers/routing/mapping_manager.py +10 -10
  647. cirq/transformers/routing/mapping_manager_test.py +2 -0
  648. cirq/transformers/routing/route_circuit_cqc.py +33 -31
  649. cirq/transformers/routing/route_circuit_cqc_test.py +15 -13
  650. cirq/transformers/routing/visualize_routed_circuit.py +8 -7
  651. cirq/transformers/routing/visualize_routed_circuit_test.py +4 -2
  652. cirq/transformers/stratify.py +17 -15
  653. cirq/transformers/stratify_test.py +3 -0
  654. cirq/transformers/symbolize.py +103 -0
  655. cirq/transformers/symbolize_test.py +62 -0
  656. cirq/transformers/synchronize_terminal_measurements.py +10 -10
  657. cirq/transformers/synchronize_terminal_measurements_test.py +12 -10
  658. cirq/transformers/tag_transformers.py +97 -0
  659. cirq/transformers/tag_transformers_test.py +103 -0
  660. cirq/transformers/target_gatesets/compilation_target_gateset.py +21 -19
  661. cirq/transformers/target_gatesets/compilation_target_gateset_test.py +20 -16
  662. cirq/transformers/target_gatesets/cz_gateset.py +7 -5
  663. cirq/transformers/target_gatesets/cz_gateset_test.py +21 -19
  664. cirq/transformers/target_gatesets/sqrt_iswap_gateset.py +9 -7
  665. cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py +25 -25
  666. cirq/transformers/transformer_api.py +34 -47
  667. cirq/transformers/transformer_api_test.py +9 -8
  668. cirq/transformers/transformer_primitives.py +39 -49
  669. cirq/transformers/transformer_primitives_test.py +10 -17
  670. cirq/value/abc_alt.py +6 -4
  671. cirq/value/abc_alt_test.py +5 -3
  672. cirq/value/angle.py +11 -12
  673. cirq/value/angle_test.py +5 -3
  674. cirq/value/classical_data.py +27 -27
  675. cirq/value/classical_data_test.py +11 -8
  676. cirq/value/condition.py +26 -24
  677. cirq/value/condition_test.py +2 -0
  678. cirq/value/digits.py +14 -11
  679. cirq/value/digits_test.py +2 -0
  680. cirq/value/duration.py +23 -20
  681. cirq/value/duration_test.py +2 -0
  682. cirq/value/linear_dict.py +25 -30
  683. cirq/value/linear_dict_test.py +10 -8
  684. cirq/value/measurement_key.py +12 -12
  685. cirq/value/measurement_key_test.py +2 -0
  686. cirq/value/periodic_value.py +4 -4
  687. cirq/value/periodic_value_test.py +11 -7
  688. cirq/value/probability.py +3 -1
  689. cirq/value/probability_test.py +4 -2
  690. cirq/value/product_state.py +15 -13
  691. cirq/value/product_state_test.py +4 -1
  692. cirq/value/random_state.py +2 -0
  693. cirq/value/random_state_test.py +5 -3
  694. cirq/value/timestamp.py +11 -7
  695. cirq/value/timestamp_test.py +14 -12
  696. cirq/value/type_alias.py +4 -4
  697. cirq/value/value_equality_attr.py +8 -9
  698. cirq/value/value_equality_attr_test.py +14 -11
  699. cirq/vis/density_matrix.py +3 -3
  700. cirq/vis/density_matrix_test.py +20 -17
  701. cirq/vis/heatmap.py +24 -37
  702. cirq/vis/heatmap_test.py +3 -0
  703. cirq/vis/histogram.py +9 -6
  704. cirq/vis/histogram_test.py +5 -2
  705. cirq/vis/state_histogram.py +10 -8
  706. cirq/vis/state_histogram_test.py +7 -5
  707. cirq/vis/vis_utils.py +4 -1
  708. cirq/vis/vis_utils_test.py +4 -1
  709. cirq/work/collector.py +12 -18
  710. cirq/work/collector_test.py +15 -10
  711. cirq/work/observable_grouping.py +6 -7
  712. cirq/work/observable_grouping_test.py +10 -9
  713. cirq/work/observable_measurement.py +47 -45
  714. cirq/work/observable_measurement_data.py +22 -17
  715. cirq/work/observable_measurement_data_test.py +4 -1
  716. cirq/work/observable_measurement_test.py +48 -29
  717. cirq/work/observable_readout_calibration.py +5 -2
  718. cirq/work/observable_readout_calibration_test.py +5 -2
  719. cirq/work/observable_settings.py +13 -22
  720. cirq/work/observable_settings_test.py +9 -7
  721. cirq/work/pauli_sum_collector.py +12 -10
  722. cirq/work/pauli_sum_collector_test.py +9 -9
  723. cirq/work/sampler.py +42 -43
  724. cirq/work/sampler_test.py +31 -24
  725. cirq/work/zeros_sampler.py +6 -4
  726. cirq/work/zeros_sampler_test.py +7 -5
  727. {cirq_core-1.5.0.dev20250409225226.dist-info → cirq_core-1.6.0.dist-info}/METADATA +7 -8
  728. cirq_core-1.6.0.dist-info/RECORD +1241 -0
  729. {cirq_core-1.5.0.dev20250409225226.dist-info → cirq_core-1.6.0.dist-info}/WHEEL +1 -1
  730. cirq_core-1.5.0.dev20250409225226.dist-info/RECORD +0 -1216
  731. {cirq_core-1.5.0.dev20250409225226.dist-info → cirq_core-1.6.0.dist-info}/licenses/LICENSE +0 -0
  732. {cirq_core-1.5.0.dev20250409225226.dist-info → cirq_core-1.6.0.dist-info}/top_level.txt +0 -0
@@ -1,1216 +0,0 @@
1
- cirq/__init__.py,sha256=rUfvQDtywCak2mJQoihOSyRjGxQahK-YOv909us0w5M,28132
2
- cirq/_compat.py,sha256=_DknO27XngcjEidNApRsCzLUWDS4QmDk9M12BaqP5Is,29531
3
- cirq/_compat_test.py,sha256=0m3sYIyxRNv9jvAo6rzJ-cnbpny3KGnAByrbU7bApgQ,34720
4
- cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
- cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
6
- cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=1cff9uywGD1oY3zWyTThQr7dDL81SorHQcGzO_ZHH6Q,1206
8
- cirq/_version_test.py,sha256=EojiHleS-af80D_ca-brkraK6jRx45dZvbBsJbd_pNI,147
9
- cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=YVamU72nCUT5dG0bhAvRKVX5lXcZMNTwP3H36v-cYag,13615
11
- cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
- cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
- cirq/circuits/_block_diagram_drawer.py,sha256=XuqIQjyHc-B7TaSzuKJe9ZFwzItjxVGdmZjTDw0d2T0,9509
14
- cirq/circuits/_block_diagram_drawer_test.py,sha256=qEWEJ9gCYunxgJpXeZweu3fEnSBSWqGfre9fw0FO7zA,11391
15
- cirq/circuits/_box_drawing_character_data.py,sha256=5Ldk4XlJRacmyvsfcl2KhlMdXqO11uqJ650P99xjSuc,12115
16
- cirq/circuits/_box_drawing_character_data_test.py,sha256=b3BN-iVUkQENi2Ja-RYQ_-_lNcKgwV1F9DyalXxiI10,1624
17
- cirq/circuits/_bucket_priority_queue.py,sha256=ml98_VAwGXzASUS0hE7lT7PeA0Hugz-qAZtjtAdBsvw,6744
18
- cirq/circuits/_bucket_priority_queue_test.py,sha256=1FnB39rJKODvXP3SpSD6B8Tu02yQWCWOUQSPmR-22Pw,5288
19
- cirq/circuits/circuit.py,sha256=reDLqLMj3SZM-z-7vLZhvy4XRTnmkK0HigbknFtMDLA,119141
20
- cirq/circuits/circuit_operation.py,sha256=yOB9cWP2H8c8AyDrSj9FMZWsfvv_oa4z1MeaZzi_5Ws,36452
21
- cirq/circuits/circuit_operation_test.py,sha256=i_NZ5R9PhxjNK17DUY21rL_7O2JgVtkpn9YnWI-Ax3M,48598
22
- cirq/circuits/circuit_test.py,sha256=KjRYRwUgC65vxf_3hdZLgid7sNm5Fn_lcIp15Q4yWyk,162757
23
- cirq/circuits/frozen_circuit.py,sha256=TLjw_UmbnV-Lhtn63RqTnCBbQiZPvsJdS-s99-aMRGI,9232
24
- cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
25
- cirq/circuits/insert_strategy.py,sha256=JU_KPe74P3OpbVQei5iDPgEpOjpts5JFKXU5Xy1QYHE,3211
26
- cirq/circuits/insert_strategy_test.py,sha256=ttqhNP1G1jrtwFd0KIlqkTj_1C8F1K7Jqnaz0rEWAiE,1185
27
- cirq/circuits/moment.py,sha256=g6gPgOvRx7sVcxlmjzPvd7UkdFlElCw7bHrahWhrK5M,25924
28
- cirq/circuits/moment_test.py,sha256=672QcwLSTuuJzXIISH9UyMIOX89aYZZD3odvhyzhxLo,31116
29
- cirq/circuits/optimization_pass.py,sha256=8R3AqhL55giV4JPAX052r5hY-erG562Uv_SoNHHXeQU,6499
30
- cirq/circuits/optimization_pass_test.py,sha256=F1FB2_Jx5ZtwSyxMl2Y5ihA2L-ik60kjjQ4Ou8ebWX8,5887
31
- cirq/circuits/qasm_output.py,sha256=Kp0BWiMpCUxt5zXcE-tynU7R8U7hwCHG-hnjzfzeBiM,13120
32
- cirq/circuits/qasm_output_test.py,sha256=o4A24t-gcQF6EptY5zQE4SoGjycSQAyMJux1no7FPsk,13840
33
- cirq/circuits/text_diagram_drawer.py,sha256=EGnSC4lB12NdgAPeKWc6yaBUr1_bbcd1hhff4zm1GZM,16610
34
- cirq/circuits/text_diagram_drawer_test.py,sha256=CAp28ZagRpOZjRJ35uGQR7QmKxSLl65lgq8Vx8GKsjg,10751
35
- cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
- cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
37
- cirq/contrib/json_test.py,sha256=GKP_XKouLW1WPotgUDyHvdaOagrHnwdq2MVbhaseeQw,1117
38
- cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
- cirq/contrib/acquaintance/bipartite.py,sha256=8PsPAo2POlrQ4sw6pnUu_WOiGL9VD1ASCy8rkpm2XnI,6545
40
- cirq/contrib/acquaintance/bipartite_test.py,sha256=_Sx75GV9DEbyZB-zQ9mCj--SCr0aGVBFzo-YIwq1E6I,16064
41
- cirq/contrib/acquaintance/devices.py,sha256=5wnuG4IFrva4J3muqf81iOS3zlxuEZ81V2UA06PeB6s,3064
42
- cirq/contrib/acquaintance/devices_test.py,sha256=RnNwPp1PHNrcygibMdrJEMViBCm4eTXZgI0PUqAeoCM,1207
43
- cirq/contrib/acquaintance/executor.py,sha256=a6SIaykIfZaIlxHxlgpwzqfvUb46O2V2i_qEJsEGlcI,8661
44
- cirq/contrib/acquaintance/executor_test.py,sha256=VxmGijgjAjuy6s-H5L9Ynu4CxYXFr9rPc2FfuoQjdXs,7903
45
- cirq/contrib/acquaintance/gates.py,sha256=WiIbIEvzIsw4ny9PMaL0yMSu9JSCJXq9TarWGpq41zs,13542
46
- cirq/contrib/acquaintance/gates_test.py,sha256=m_QMKqElKXqDbtviwJcgwYf8E1ZM7jcFmb2iPbAIrGM,15010
47
- cirq/contrib/acquaintance/inspection_utils.py,sha256=yTJ-ferTfvLst8Lm6mchsQV5qgFI-D6LtnQD_dG-B9Q,2636
48
- cirq/contrib/acquaintance/inspection_utils_test.py,sha256=_ksOZ1fBkRsylRWKHWa2-sNgqJdlQK5mb5xZx57--dI,1426
49
- cirq/contrib/acquaintance/mutation_utils.py,sha256=q-aikSKFLGISgTNXYDGinFUW30mNLPjqTj00-SeDU80,4754
50
- cirq/contrib/acquaintance/mutation_utils_test.py,sha256=r_0IdvjSqres1KWs4o4HEb8a5WATovIBOUIAjVeIzns,7848
51
- cirq/contrib/acquaintance/optimizers.py,sha256=ZPsZW-ZakNcLMRATpVkNuBT7vBd55XqHUU3dtzMO0rw,2121
52
- cirq/contrib/acquaintance/optimizers_test.py,sha256=R_r_G7bBPBo_8qOjKgZsEBLMihZO6jlZ0yor-U25vBE,2455
53
- cirq/contrib/acquaintance/permutation.py,sha256=S9ngL-kIkTle0gBYbp-OzIxTUQl7Hp5C_w4UVd5apUg,11832
54
- cirq/contrib/acquaintance/permutation_test.py,sha256=6Q9s-qvEoLbDEmoPrtyXv_57uIDzggooJEcqY3mRzZg,11503
55
- cirq/contrib/acquaintance/shift.py,sha256=ZZ5Krvgx5OOLhr5qLOVvP0G_dvGMgy-fIrJPxIgY10U,3107
56
- cirq/contrib/acquaintance/shift_swap_network.py,sha256=WNWUZtUmyzzt3xZg6g_FgmbTNON5gtU9uKWXjWhB9YU,5311
57
- cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
58
- cirq/contrib/acquaintance/shift_test.py,sha256=FnY-D0i4CZsE0v1GLf30u_JyIYDtzV06O-Hd0tDnuXc,4555
59
- cirq/contrib/acquaintance/testing.py,sha256=auzzDDTTBiE6-0PGnJs-etYwozGqBoJ7JVlPuXcky-E,1582
60
- cirq/contrib/acquaintance/topological_sort.py,sha256=u57w5NVj3dddXMUO9N_WcOl0CaDA2nXS3SZtrlLEFCo,2976
61
- cirq/contrib/acquaintance/topological_sort_test.py,sha256=rW4Oa3A92kQfw2GQSxSXPIJfhftuh7eaAPJX8nUwcSQ,1672
62
- cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
63
- cirq/contrib/acquaintance/strategies/complete.py,sha256=Ty3ua6PC80y_J1lyCOmzoRmMmbv-lnjhS00uxChR8to,2194
64
- cirq/contrib/acquaintance/strategies/cubic.py,sha256=9ynZcuGJxG6eH3XZn_8hrDTGPzoWgbaeT7Z2a5wOHvA,3180
65
- cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=0ZgDl8uNv9lG1TxQSaCEjNGgRFMeaoETzKSpnhBlR8Y,1547
66
- cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=Cr7VeT4k8SUoZGdLtw9uw355uQV1fFT161rAscjZDDE,2583
67
- cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=zIMocEKc6rcCSJlyBsI2EJqiNY_iLVrNqruzqiQFDMk,2129
68
- cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
- cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=6MKRJLzXWTSUBQ3PPIxYY5ikBwH7MVu7DBAADgY0o-Y,9182
70
- cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=d263Wm3yGedN87SraSlea9OMb0yy3ZkNRnaEYZd8AcU,5876
71
- cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
- cirq/contrib/circuitdag/circuit_dag.py,sha256=chqf4O67gSq56uCSVMj8-n6eHGBP6NYZN9oYNI29p9U,6888
73
- cirq/contrib/circuitdag/circuit_dag_test.py,sha256=Daj480Yk0eisOsQXvYITy2kyLSQJ7g5AHirZzNs_dYw,8222
74
- cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=VMF_A0_2FYTR89PwgQl-l77U3e0n6PCyjLD-YA5g0NM,3218
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=AJgs1HIkXQvoJ2_ll4oSrT2dwzqFlP4By5B-nYHqUDg,7806
77
- cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
- cirq/contrib/graph_device/graph_device.py,sha256=Hi7KZnV_lY_qNhPFyrzdbqvpTHYu7XNc2RC0w96KdV0,7942
79
- cirq/contrib/graph_device/graph_device_test.py,sha256=2Z0jTprCZL4V5-gnOblOpz3p6IRsei1VCNxqLWoWnSo,7203
80
- cirq/contrib/graph_device/hypergraph.py,sha256=6hdKri90qqU6ujmR2y8nVyk2pr5wHvFhHAhLYbg5T7o,4716
81
- cirq/contrib/graph_device/hypergraph_test.py,sha256=ccwPqqHOWq-ZJ4abhyDrCjXQdrmY1Nb6lP9G_jdi6pw,3769
82
- cirq/contrib/graph_device/uniform_graph_device.py,sha256=ymG7X-wLzZE9hBc9P7Kixf4_Mg4ii6jxCWDiH2GJ3uI,2358
83
- cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=b49Kx1pH_VvD5m-DV2TSI1qe2ZjQQaB76HJVboGyRYs,1616
84
- cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
85
- cirq/contrib/hacks/disable_validation.py,sha256=wJEzMoK3qDzhIFDUOIgdKqNDcHl74MJAi0OJuCjl82k,1419
86
- cirq/contrib/hacks/disable_validation_test.py,sha256=nuDfktj3bD7oFlae3R0Jf_qcAo87Z9CphYxi9lFQ1J4,1711
87
- cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
88
- cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCYgow7tl8Pjf5Q,7674
89
- cirq/contrib/noise_models/noise_models_test.py,sha256=nELHWYWbRp6RCurjTSEAumpZPMY2gNN3S4Mhho3pwJ0,10488
90
- cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
- cirq/contrib/paulistring/clifford_optimize.py,sha256=zeap55snqMQZL7GiDHCdQztgsRlVYlEsAFYmPtrEBwo,7849
92
- cirq/contrib/paulistring/clifford_optimize_test.py,sha256=Q8REpwDRNEHVYl3yxfzxN7c5dsQLhZSkk842xaKvFrw,3889
93
- cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7TyfG3ieJluz8AziQKFCT1EgRKLzWu2aoUGAEcLblGw,6369
94
- cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=Q_Zqbfp6yVzLabpKLnhIFCnGBaCgsgiABXCuAixwySQ,8668
95
- cirq/contrib/paulistring/optimize.py,sha256=ArUWzXYpHq9SE7K9FdqsJ5WJg1ZvHs8DP6zHeJMlp18,2707
96
- cirq/contrib/paulistring/optimize_test.py,sha256=jdZBpXIialcHQGsp8LIuIpU9M5wBQX9HgnqqiMv5l8U,3559
97
- cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOWWOAOOcGuStfKPdk,1106
98
- cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=4XQ2IoXx-2g5OUU1SMCLbEvDWoGyDg9FMy3_rTTqfBk,1124
99
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=6sX2EBxwtgZ0F3ANaJVvfO_GEedLBSzu_K8wQA2Zq7c,15674
100
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=r2maZa_9bhuolXWn2OaSe3DucOFchIMoZrX3gWs1_l8,21435
101
- cirq/contrib/paulistring/pauli_string_optimize.py,sha256=KPFjsf_gzgvN7_hIcNslawcI2RGJKf5F0pDmYTHNAb8,2867
102
- cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=2wSpV7EVwuuK8wI_Pp31V4vCIkq-CEmQz3EjaFWi8fM,2895
103
- cirq/contrib/paulistring/recombine.py,sha256=zm5AJL80Xl4hgTe9U1YUEgWfcHZys_YcWNpnv02DcL0,4355
104
- cirq/contrib/paulistring/recombine_test.py,sha256=ClvleI2hVVBOA7sbi3yTth-fErJQYYCw-6ebAvXt-Ns,1915
105
- cirq/contrib/paulistring/separate.py,sha256=clzMvgTUyEW1l-fghk3EYUsKZNOBicy1l2MiuZaoc7o,3960
106
- cirq/contrib/paulistring/separate_test.py,sha256=FzR78MSHDhNJxizbXreK6u3BeYhT7xn7W1QyHfEZ34E,1267
107
- cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
108
- cirq/contrib/qasm_import/_lexer.py,sha256=RkrbOoT5flW_NEzdxRgv4nbmJ1mWJWlENPf7aPAVM9Y,2929
109
- cirq/contrib/qasm_import/_lexer_test.py,sha256=q-NgTZMeXFbBa1s6Q66qu0oHHO_f2Tsczn50kVw04Y4,6218
110
- cirq/contrib/qasm_import/_parser.py,sha256=lcXWip0si5ZI8iCEQ-oQQcKj08pPSDnk2Y3u55JiWys,26052
111
- cirq/contrib/qasm_import/_parser_test.py,sha256=aQZhZAjE8J7QH7fHk1RoFTKSsOn7PFhLcA4cQDuD7ls,39723
112
- cirq/contrib/qasm_import/exception.py,sha256=Wm6cwUPIkNMPjkv-ELpQ-zSoXaiLOddOQ4iYybwuS6I,695
113
- cirq/contrib/qasm_import/qasm.py,sha256=CP444IWCw4zlDNA7HxsTJ2xIak4mZhQv62ZiLlUc2zo,914
114
- cirq/contrib/qasm_import/qasm_test.py,sha256=Co2ksl14dBvYtBUB9-9DONjjyV7uTdZqNP8k8dBLS-Y,1861
115
- cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
- cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
117
- cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
118
- cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
119
- cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=LwXyz5_Amz0RCE4gQKmPgVp6HLD89htEvawqhuKuY-E,2412
120
- cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=rpb146aadlvEIHPXPyZqRlSDte2ldlKuanKryJU3cnk,1078
121
- cirq/contrib/qcircuit/qcircuit_test.py,sha256=g6lbhtkq85hKAwp1-dcU73LpAt0_RcmPKMApxd6X_6E,6041
122
- cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
123
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=x1nmPFHlp1ZAQC41aYZsHzvBvTRzNZ0azXb-a62ylsQ,19389
124
- cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=hVwInjcdS9jKPKeDoQ8EnxjwESC_QLvgEOaykwk27rI,12400
125
- cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
126
- cirq/contrib/quimb/density_matrix.py,sha256=Q1MOZYFsymYwx5QIi89ydzctO3mj2Hb5fpHujubykHA,8637
127
- cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
128
- cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
129
- cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
130
- cirq/contrib/quimb/mps_simulator.py,sha256=xEtLqkAHNavyUr8IuBJ-RHi_O4qK9DoIbNSOfZyR8u0,24710
131
- cirq/contrib/quimb/mps_simulator_test.py,sha256=sg1l7mtJh3HrUQkS3cRv5M0LAQG2RUR0Tr2osjjXG0k,17142
132
- cirq/contrib/quimb/state_vector.py,sha256=wc4-d6ZH-Mjqhb6vfftaV-YDoMJqJPNqQcNjfGcQTAw,6686
133
- cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
134
- cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
135
- cirq/contrib/quirk/export_to_quirk.py,sha256=RwxIyLSy0N0DjzKQDb2CcUBRvK7LX5NZ4Vgp4FvIRyw,3837
136
- cirq/contrib/quirk/export_to_quirk_test.py,sha256=XDs5VT-i78-Jw4kp4ZjDqNAi1fVzUqrHxVnANj_4l5s,11986
137
- cirq/contrib/quirk/linearize_circuit.py,sha256=Q5KEQ6L4QLqPwaLi4G-w06tWLvK5OOi0s209B2dpNqk,1545
138
- cirq/contrib/quirk/quirk_gate.py,sha256=aQkCCrMIlShNhKKWWY9rSSknPUVP_XSEmjHqZt1yd2M,7275
139
- cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
140
- cirq/contrib/routing/device.py,sha256=bj0AdDB9xnXqzrsSy2C3puVOza0bU-GhImoEr1IBZDw,2889
141
- cirq/contrib/routing/device_test.py,sha256=fGGN9agUEEusrzCaodsmCWMJE7LBF4Vc9JQ9KL_7b9A,1926
142
- cirq/contrib/routing/greedy.py,sha256=TBkt0z76Fefs_6rlKE3sQXGqo_96GYsVDixrMiz9Oaw,13929
143
- cirq/contrib/routing/greedy_test.py,sha256=e658tKz2SSqIUah6r9EMup2yxaaLBz0dz6xRryV_jDE,2238
144
- cirq/contrib/routing/initialization.py,sha256=M6z2eSiFaoZutZFQXhTJrQKdNVp2TEBtEPfmwGUlZAk,3733
145
- cirq/contrib/routing/initialization_test.py,sha256=_-nePdUmoE3IdW240GEMBCm0P8rlOWF_ENXb196LlQo,2473
146
- cirq/contrib/routing/router.py,sha256=KK4b8eZGxz3OrJVOaj9DnGONLXNGrOv1SBgMWcaa7tQ,2529
147
- cirq/contrib/routing/router_test.py,sha256=eIoKRCOMgXdAbxKURgD2rBhlz47AQXqDMbwyqKTz-ng,6330
148
- cirq/contrib/routing/swap_network.py,sha256=3isu0X6KZS6Fkp6ZdZcSNpqP4IJVjxfY818GCI_kQlk,2385
149
- cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98Ty2TtOI1zXzU,4816
150
- cirq/contrib/routing/utils.py,sha256=8fhDAqpYI8Tn12aTAOHjThzlv7QM0fbVrUWIUXgM9sg,3786
151
- cirq/contrib/routing/utils_test.py,sha256=WzOWrun1hnvSI6A4pA0jHRzSsiLCjZBa6ARGkYoBK9Y,2020
152
- cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
153
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=d7tW83RW5RW3s5NUTXSPlw1-KAk7mll3wrkJkuJXlcI,10844
154
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=TaO33Z5IYLQcFxpaYXbCiTjQdtgeBwL5qhT2TjbHpDA,13847
155
- cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
156
- cirq/contrib/svg/svg.py,sha256=QQs--lyGCOY8ynbUIxdJf-i-8X_fU8NRjPIn8ELUnIk,9410
157
- cirq/contrib/svg/svg_test.py,sha256=VUuaQGu0ZxnWXgbh7BgZYQK4zyaxdPfBrX9ifJ7quUc,2430
158
- cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
159
- cirq/devices/device.py,sha256=4MXGo_NHHlysc3aK5a29jgdmjJniA6VCum8tUDW4HFw,5407
160
- cirq/devices/device_test.py,sha256=9MDFBoTA2AwjhR65Dzmibohecah82yEM7d6w_ujWiSc,1125
161
- cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
162
- cirq/devices/grid_device_metadata_test.py,sha256=jUnuBRH_ufJUIp4fA70z7IOXCbIxYAbgfHwYbC-nTJ8,8593
163
- cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
164
- cirq/devices/grid_qubit_test.py,sha256=3-H-xzJre0H36J83vF3U2oK1cojZKyv2oJ6UeD57roA,15011
165
- cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
166
- cirq/devices/insertion_noise_model_test.py,sha256=YtKV1tI57ux_mXJbAF98TuTk2kpGeBxBQjzWWmkVtY8,3992
167
- cirq/devices/line_qubit.py,sha256=nZOtTehJq2JuKP4evGQkR-ktMWNizkDPtUQhU1A4u-s,11829
168
- cirq/devices/line_qubit_test.py,sha256=eu47MSzy5eymIccIuHct8Z_WJeHhZYEARR3yB3NXyO8,10287
169
- cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
170
- cirq/devices/named_topologies_test.py,sha256=4YURaPFHN7CAxl9Tve_kysJuEY4O1PPywEMkGGr12m0,4737
171
- cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
172
- cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
173
- cirq/devices/noise_properties.py,sha256=-OLtCTkLzD7w4HcwufftE9iTOkuC9Z9lNZQXXr4Dqxk,5085
174
- cirq/devices/noise_properties_test.py,sha256=0s8ROjcRyfXeExxGz4gyA79pZARXwHanzOpDpcXEmcM,2341
175
- cirq/devices/noise_utils.py,sha256=bec6PyBQa5gbPK3C_eYK2ejbAxiLZQbyQNBj6G7g-bA,7165
176
- cirq/devices/noise_utils_test.py,sha256=cMSiNoOIPeo40t13b3R2-RrFUITjJhOoKj1UGpmJ3cs,2063
177
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=JdMWh7Lf0qgcEpeGyg4YpDA2_oVYq4AxBIUnfFWbDTo,8145
178
- cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=znS1R4chjxZeUFb4W2GdhpWTwHDcdXpIJgIDHCXA5Tg,12207
179
- cirq/devices/thermal_noise_model.py,sha256=3vD8OGIZMjs0t-De0DwYHIqCxSEcAXppDejVCIHZKsw,11609
180
- cirq/devices/thermal_noise_model_test.py,sha256=ox9b0BoHH6d73CjWWI1fIAGd_o3r-4qy8v2ggUwc-pw,12246
181
- cirq/devices/unconstrained_device.py,sha256=dtpB_n0RpjyoUzcSkfT5dUuY9O2U1c-YM3m6V-jL9xc,1525
182
- cirq/devices/unconstrained_device_test.py,sha256=PZ2FeLbRYh38stk3AA03j3k_a6VaGdtHh3D2jrnjAIc,1047
183
- cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
184
- cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
185
- cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
186
- cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYFkeudQUlfE,8469
187
- cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
188
- cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
189
- cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
190
- cirq/experiments/qubit_characterizations.py,sha256=QBEUJGWVZxFzh28oZetAFpMagjhyhJk8qVjScwktZ7E,36785
191
- cirq/experiments/qubit_characterizations_test.py,sha256=km4-D-JrsxhjCjbpf7DTgHnGSNS3Iadtqt0b5hfTQqI,9716
192
- cirq/experiments/random_quantum_circuit_generation.py,sha256=7O2aQ8cPMrEsdu1yHQW0GWittRX_Q2y1f7H7m1G384g,28228
193
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=7Hs4bSxvOZOgiuAMKgLvTRVhu-kNykjlGLqFwoEbdaQ,16522
194
- cirq/experiments/readout_confusion_matrix.py,sha256=O7fLHGAZQ3UG8AhBBcQPeK2NO8jNE_70W8JF2PII0PI,20727
195
- cirq/experiments/readout_confusion_matrix_test.py,sha256=fIL-r9vi6QEp0Bt5Fv9BlJlPh-aWPSj58_enzNLafpE,10632
196
- cirq/experiments/single_qubit_readout_calibration.py,sha256=WJ6wM7hS5xEi71Nm4r-bwOYQwf3P8N0-wmax5EltVo4,14723
197
- cirq/experiments/single_qubit_readout_calibration_test.py,sha256=ivc7IDyxmrZXCYNWSOgJXJ4ZdYFbatmlFUf_u2Rh_uo,7718
198
- cirq/experiments/t1_decay_experiment.py,sha256=bnf9FpptNpZO1lOGCttrHA0IrykfviEVbjsWvCSiGn8,7086
199
- cirq/experiments/t1_decay_experiment_test.py,sha256=LauXCkcLNxrmM5gNCT5RSWaRQ8OnlV8sCZZ3CBrLjpI,9138
200
- cirq/experiments/t2_decay_experiment.py,sha256=JhIPsoPRV0g3j1wkDh61MkqBFJNDwjhaZK8Vy4eqCfk,19157
201
- cirq/experiments/t2_decay_experiment_test.py,sha256=dJhtdqgH2majCQ-sstyjog75wkzkzHrHVsQrGpuYXfE,15030
202
- cirq/experiments/two_qubit_xeb.py,sha256=vGKpfF_1141hjMRExqEtL7_2WyEHNqwbaw3W10ZXwiI,22764
203
- cirq/experiments/two_qubit_xeb_test.py,sha256=UnTmDbs02mjWZXOm_Yveun1G_pop9_w0rvYf6swv8wQ,10680
204
- cirq/experiments/xeb_fitting.py,sha256=iQq40iBHri5Ks2OTED5q3nOlRtFanGnGlV6ABo1Da40,30409
205
- cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
206
- cirq/experiments/xeb_sampling.py,sha256=1Js9QfJXZyz79VBqVEAYwCyuz5-McVQeDDbjvdqxX1s,14987
207
- cirq/experiments/xeb_sampling_test.py,sha256=0XkQGvcURsug3IblE_wZrHVDoOQV3WuQilrqCJbDHjI,6784
208
- cirq/experiments/xeb_simulation.py,sha256=_RhxisdCA4kO5dfBYNeMmpY3gem6WxSpLIddagV2DtQ,5077
209
- cirq/experiments/xeb_simulation_test.py,sha256=YWFKXPdtBFuZNhQoG06W1EetVhXighc3zyXwhKfGAeo,5652
210
- cirq/experiments/z_phase_calibration.py,sha256=t6hUKNnXzPSY8_o-UyLsZhRWUS1pdsJsaedd5c4rm4Y,15153
211
- cirq/experiments/z_phase_calibration_test.py,sha256=tcYBMWkhnEzP0lRbyH2OqZRTVHJ_dnn44weeEntANX4,9039
212
- cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
213
- cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
214
- cirq/interop/quirk/url_to_circuit.py,sha256=STj3-mv1ET5krlEfAXX6pCdr6ui4oHpNWUqMzWbubp8,14211
215
- cirq/interop/quirk/url_to_circuit_test.py,sha256=dB_QV_aT_9OfJS61JxHbe5oMbiJh-d6Y3aJI1LjqCFg,26282
216
- cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
217
- cirq/interop/quirk/cells/all_cells.py,sha256=Umd8wmwx51LzEqQbJFpWuvqL7g4MsSQXXztGzg1JbPk,2558
218
- cirq/interop/quirk/cells/arithmetic_cells.py,sha256=tUdzb9a4VBKqSt6WMqbSrBBAssq_6UTwVyxfOvGCmX4,13146
219
- cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=dalnDnHwMp2oBi9VpIxVNTz6nMZNYL5WI74kw7Flb5w,14625
220
- cirq/interop/quirk/cells/cell.py,sha256=dxdHNCv5l3ZH7XyvlnMPUX7qCJXf5_UyWpHx5uV-PPo,8463
221
- cirq/interop/quirk/cells/cell_test.py,sha256=-HDH3PIn8DPtaeUWlfR4bpLWQ-LqF6WQcjFUolUvXCg,2276
222
- cirq/interop/quirk/cells/composite_cell.py,sha256=9o1aP3YeYOqdCE-t4wNiysdCOFBSV1nZm8ovN_SPba0,5352
223
- cirq/interop/quirk/cells/composite_cell_test.py,sha256=3qiQb0VOLtr1ZBKjCMRrJm_AXALDBLK9DwBTu3kQG6o,5308
224
- cirq/interop/quirk/cells/control_cells.py,sha256=WDXGjcUk4sOzphJcnXGC-Bvzxcq0BaZJBZxd1ETB8sg,5579
225
- cirq/interop/quirk/cells/control_cells_test.py,sha256=rqCmmjE5ym5wqzpTrEGso8dCgrIC6JxnMHqzuk4hfsc,4673
226
- cirq/interop/quirk/cells/frequency_space_cells.py,sha256=eAkPlz1rqnWqs8ljh_kFtuWnwmeBiN5XQp_e25lqa98,1890
227
- cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=fPAjxnD8sKnuxNdY89K66pdbV4Hi3IxhdeWWni5-Uno,1812
228
- cirq/interop/quirk/cells/ignored_cells.py,sha256=SVYXVuVM7FWfIPQdTSS64zqadxwpVDnaMmA3AG92nqo,1378
229
- cirq/interop/quirk/cells/ignored_cells_test.py,sha256=46KXRNPM_t6-aKklrDpLbBDXijHDDafepE2KKuJGNLA,919
230
- cirq/interop/quirk/cells/input_cells.py,sha256=1BsH_7oJnOynmt6VmJQnUSFUW48VB3eJB9VIYgwHhmA,2927
231
- cirq/interop/quirk/cells/input_cells_test.py,sha256=Aavp8SHgnF0vAG2fvcX1y0x6Hzrz6dg1tGMjBNLyl5o,3500
232
- cirq/interop/quirk/cells/input_rotation_cells.py,sha256=sUVe5Kkxfww6uh3EFDI62GAGKzqmAxWfOZpvGO-spQE,7369
233
- cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=o56BWKRiE_MFSZldbSa9PnDlnOFslEyODbmcjzRlqjM,6318
234
- cirq/interop/quirk/cells/measurement_cells.py,sha256=u_J9-sz4L3zy5eziUiVhT__oW4ax5jxPhg2QZRcL11w,1504
235
- cirq/interop/quirk/cells/measurement_cells_test.py,sha256=AYYzjn3BrQbk-Rg1L3WjCOQN9eGLRQzqwYr6i8UH0Fk,1574
236
- cirq/interop/quirk/cells/parse.py,sha256=Ilyzz9rbe9XYExVlj4rcJsrIWN4TnAj6LlVl37S9MO8,11873
237
- cirq/interop/quirk/cells/parse_test.py,sha256=1L3qRRaz8Q0vh8N92uFwI7G-ez97mKIqubQgp10uPsI,7473
238
- cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=F9Br_SFB1ys4pP-hYlpPRMXH_4Cd8LePtOl4aTE_p8g,3390
239
- cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=n0veQKx0EdFzu_gdY_AVjwqyoHae7JGkDFX6qhLeGrQ,4460
240
- cirq/interop/quirk/cells/scalar_cells.py,sha256=TuV5TwiY2SEb3776k1MvkSMcJoP2uQVXfpWf4uaNf30,1246
241
- cirq/interop/quirk/cells/scalar_cells_test.py,sha256=1IrttKsY0921W-885PnpZaYe8OQXKVQ9g7semm28W4E,1367
242
- cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=rlRRCWKf3jYj1u1XXtyIAAivH2zv8sK9lSH9pFGRlBw,4463
243
- cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=NZ5r7sLQx9p3yLCQ0RQmX-8R6e2vPtXmpL8_xbv1PnE,5037
244
- cirq/interop/quirk/cells/swap_cell.py,sha256=6pE6hFcMxLSr1F8_DhwNZulWwO2lKDVYnRxK6Bl-Ql0,2421
245
- cirq/interop/quirk/cells/swap_cell_test.py,sha256=z3Dz7jrkEI7ri2vOqQQAO8bbhUSRYU4JORgF4YqOY3k,2321
246
- cirq/interop/quirk/cells/testing.py,sha256=eHnAwIyQvVesYK3adyCo7-HPTbAADugs2EMuoNoSvP0,3318
247
- cirq/interop/quirk/cells/testing_test.py,sha256=Qb__MOXjUrna7Wy6mlRWFyyy78KfzqlKsTvNfdR8-fc,3929
248
- cirq/interop/quirk/cells/unsupported_cells.py,sha256=xTE4aKpuVocey_lvWwb8Q1fla6oMqI1S4rc7a2UtDgs,2841
249
- cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=5bl-maazy7Dr8u6kwK1AhGT4vtHqzIMRKxoMKYC-JWs,2178
250
- cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
251
- cirq/linalg/__init__.py,sha256=0dSlIBy-TVzf7b_-rLLlrS8ZFkgCfYg0pJjWs72xYOk,4045
252
- cirq/linalg/combinators.py,sha256=0tts29gbwQg9lpZvCSX8QKMIMf38NGGdBJqI911m7jA,5336
253
- cirq/linalg/combinators_test.py,sha256=eRy1FrGujE8UC3pP1X5MfWmKlpjimHTxdiixr-G4nJM,4829
254
- cirq/linalg/decompositions.py,sha256=9dOJSJuYG8_dk3zdBO5rXDONKkw7SKZd5ZpWK4FnypQ,38652
255
- cirq/linalg/decompositions_test.py,sha256=cPTOr6Cmyx9oVQStIwxN8TA9jAJzgh6QGdbCmGc-rBM,25438
256
- cirq/linalg/diagonalize.py,sha256=Y3fFcyEWKH5CGbGY8KeQPGBgdDgvETF3WUCkVNIVfNw,10051
257
- cirq/linalg/diagonalize_test.py,sha256=Jn6Gc1R_1MaL6vUUqjIx_6WvMDTIj7l8OxUNJgWKmsc,9089
258
- cirq/linalg/operator_spaces.py,sha256=-i5DEAW-b_sgmfZKXFf37XzX5h7cZ7R6EeW7RcFNeE0,4128
259
- cirq/linalg/operator_spaces_test.py,sha256=Hbm8e4kGbGw9c4O3v5o0kYbcikwDkdIoAy3V8EofJr4,10605
260
- cirq/linalg/predicates.py,sha256=vLTRaAYqVf0mk6Qgm53ROhLDtXxxoEhHbYxQN74aGRk,12076
261
- cirq/linalg/predicates_test.py,sha256=syNiyS-clEGeZnbKT7zyR8_ClDnXFYtDnLKozLbitzw,21504
262
- cirq/linalg/tolerance.py,sha256=a68RNOmCw0ybFwhXOq6DERK5gHAOlPJIRdPuMzV6xuU,1870
263
- cirq/linalg/tolerance_test.py,sha256=wnmuXIGEn_mugGoNm3AigSgjV2DMFdj8xpgRTMBbO7A,2355
264
- cirq/linalg/transformations.py,sha256=zo9Gwo4VX2uQfN_7iOzQrxI-27uDj7s8eTUe2eJQetU,32519
265
- cirq/linalg/transformations_test.py,sha256=4GnfQhB1lERteVxvTHXMXxEt4vwQLZBXNJOvnFY3AKY,25636
266
- cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
267
- cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
268
- cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=svleNo8P_cQLCMfcGLkU896cpLjZKPynDKnJGM2pyJ0,1861
269
- cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
270
- cirq/ops/__init__.py,sha256=Fvghj3MopLpeIdbpb6en855QgwperBs5esV1iszhBDA,8274
271
- cirq/ops/arithmetic_operation.py,sha256=gAup6Gou7oIbfjIdjXIDFff-z3ybdjlkbsBPly-oQ30,10125
272
- cirq/ops/arithmetic_operation_test.py,sha256=iKjnwOvd1wCWk-byeUC14aGwYuHXOlkrtlOvNRUcMqs,4942
273
- cirq/ops/boolean_hamiltonian.py,sha256=li003lNq6zS8pNPTobqzfzYJvyvaIpCVo3wkliI6Hzk,14930
274
- cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
275
- cirq/ops/classically_controlled_operation.py,sha256=ePhBPrHymodrsztJFk_g2IGI3QSbFnpQ54d-6AH9CN4,10374
276
- cirq/ops/classically_controlled_operation_test.py,sha256=qS9yzhZeWmsDzg-MM-g3njvGMRWPK1muoG19A6mIcTQ,52468
277
- cirq/ops/clifford_gate.py,sha256=hBuNKKE5kmB3W4oQxwdG1SF_NFblkcSIAUeacECRAVY,39495
278
- cirq/ops/clifford_gate_test.py,sha256=dqghYb7_afYxCLceBarX56Tn9y_dSWCKF75W-Qrzvcw,40341
279
- cirq/ops/common_channels.py,sha256=lGDOSdstoK57DingL-lo2n49-a51MshhJOl4LOcpQfg,37126
280
- cirq/ops/common_channels_test.py,sha256=nQsSSxu7vtedb3ZUuw4hNKIX7MYI4x8lxvLyWMZNt10,30079
281
- cirq/ops/common_gate_families.py,sha256=2E31Qr_Yv1zI-r_MNWmr1xJYrEHHU45274iDrt_oKPE,8611
282
- cirq/ops/common_gate_families_test.py,sha256=bEF6Q6GtEOTc9kHM5WC1UIULPGnMPXdtm8gzLT_aNBI,5276
283
- cirq/ops/common_gates.py,sha256=WFNrvxaHQdfS_2sm0-Kuq4VaH-qcgbJOFi2_PBecBX0,58481
284
- cirq/ops/common_gates_test.py,sha256=bASPqAkuN92Ij3CCAVwOftL0heIu3J5VPcCtmm6nVU0,46873
285
- cirq/ops/control_values.py,sha256=Loi_voLNOzPJpjD6AnQz8JrqJLOAUe0jvV3XB_0tTGE,13430
286
- cirq/ops/control_values_test.py,sha256=K8tbKM6b6PqMEL_lHLFzdrnWF1SkLN0Scft6YMT7FlE,12907
287
- cirq/ops/controlled_gate.py,sha256=uzQL7scPsKmnu3Kdiw-zF7b4FxdyqvaD6oPkczs1skQ,15234
288
- cirq/ops/controlled_gate_test.py,sha256=8PprvTdGMfBQOOQ-BpW_decRQU39P2gM_xJfX-fawMo,25512
289
- cirq/ops/controlled_operation.py,sha256=kfZUj5XISlHJGvm2mzn7-UzNmIFimLMNvn9QhD68Lro,14077
290
- cirq/ops/controlled_operation_test.py,sha256=kHdHGR6Q6ROgUJqG4DSKOvyrLJhi-u4uMh-rM3QRJ8o,16525
291
- cirq/ops/dense_pauli_string.py,sha256=nQs4lfm9zSGPGE9p9KAJbEhkldpg9krqTwvIkLePs90,24477
292
- cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
293
- cirq/ops/diagonal_gate.py,sha256=NpCGuZpdqMGoM6ya8Q8Jp7UTut2WglMB7DK5oqBRXiE,9021
294
- cirq/ops/diagonal_gate_test.py,sha256=wsPZWhImVGNrEg1mYnXsO4nJ6VziDBfvEilAFtJJ8b4,6224
295
- cirq/ops/eigen_gate.py,sha256=GRtLML2LbTBvVMNlar5SIzdDVK6UHL3lRwAPR6JOPOQ,17494
296
- cirq/ops/eigen_gate_test.py,sha256=D9ETnoJ4NRcz9EvzQOFra84bonph8optp7zhW57rgWA,16139
297
- cirq/ops/fourier_transform.py,sha256=_YWqBq7zqRv7rH5oQPPg7zdUSiTp2px8kaaWZZmakZA,7513
298
- cirq/ops/fourier_transform_test.py,sha256=mtWhiC_Tg60uNh7mhhMb02cckGfNC_Tjte-Q4gRcF8c,6226
299
- cirq/ops/fsim_gate.py,sha256=Avzlcb_O201K0_tBmNR5m9fWkpBM7Nby0MfJjNJ9g_8,20136
300
- cirq/ops/fsim_gate_test.py,sha256=4kFk0ALzTmaskQURHPl6JerNvw8gbZn49nt1_WAjpdY,25671
301
- cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
302
- cirq/ops/gate_features_test.py,sha256=mnlqJnSpllcOnTUdvmUs_ssnPRhAIgHhKIAK2Z86Dfg,2347
303
- cirq/ops/gate_operation.py,sha256=0o-lkWQSwtdFTorMHYXL_7VxEvaQmUI6RPpl0j5gvxQ,13728
304
- cirq/ops/gate_operation_test.py,sha256=24RJmqG65_Z2ZeO1jnVT_VCKwfHcxP25Zfh3_JmjWpk,17517
305
- cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
306
- cirq/ops/gateset_test.py,sha256=XqEgjuUga5gGUjHRBIbA6Pe7JCgCX-UBxrnXALMvrxM,16557
307
- cirq/ops/global_phase_op.py,sha256=3WLv4ul5Ifhgra4I6uf1yj-zKoMkh829NVemhzyEC74,4885
308
- cirq/ops/global_phase_op_test.py,sha256=C-YMN5ja9IKKgmwC5w2sPDBpFr8p0pJrE5WFikCVZOg,9833
309
- cirq/ops/greedy_qubit_manager.py,sha256=O9qY8GB1KGxm3B7JEjq50sGVD51bNwTSupJpi3WUeAc,4039
310
- cirq/ops/greedy_qubit_manager_test.py,sha256=aixmKja9mp0WvLQE92aFpQLVEwJilsKV-5YWDO2a4_s,3404
311
- cirq/ops/identity.py,sha256=InfS8sxU0pJT0W1Gvp-QwC1-1TGATqKWQV9OZEaFVb8,5892
312
- cirq/ops/identity_test.py,sha256=OIrm8v4wBVq8bbAGZ-f5TERt8Hl6aD1bL8iHCOEhzNo,7939
313
- cirq/ops/kraus_channel.py,sha256=qX828mvPSFgEaG0I3Jhj04y5rD7dUjeEl2HYDn7_7j4,5086
314
- cirq/ops/kraus_channel_test.py,sha256=-E6ExIO3P0y2T74Gx-RMu0kLpy1RWP9wH6UGDI21oFU,4820
315
- cirq/ops/linear_combinations.py,sha256=PE1o_mvpdnlg3o95iSn5ID18kuxwS2q3DGDuFnlNC90,39916
316
- cirq/ops/linear_combinations_test.py,sha256=ip-wN8T8nUQviD3ql42eet7k_MQ6DVUfIK8aX-_ygOs,67217
317
- cirq/ops/matrix_gates.py,sha256=PoaJuONeh7wFQ0iJUtMsN-OdvYW9wm_q8kFBLWu6I1k,10221
318
- cirq/ops/matrix_gates_test.py,sha256=m5rMwq_sqVvsmkc5opVr3Ikd1ERuULmSRNAvGZUg7ds,14224
319
- cirq/ops/measure_util.py,sha256=ZaH1Lze4Yk3nYrojn7SILUeIN96p_khIoa25ixXLu6A,7390
320
- cirq/ops/measure_util_test.py,sha256=Yzlced4nb4DHO-0cM_a-QZGO_3R8oqExkpIALN_pG4A,5307
321
- cirq/ops/measurement_gate.py,sha256=yc9ccbzpy-si5TKF72Vmrqzqgsxg_60RXCWHOj1d9w8,11993
322
- cirq/ops/measurement_gate_test.py,sha256=1DenBunnVVqx8uWxhdi4rCMQHxmQ3X7hqPdsB27FUHA,18299
323
- cirq/ops/mixed_unitary_channel.py,sha256=IqkZOBTf7wSUJaYIznPZnB50Se8YZPBws_aN1EYBZR8,5260
324
- cirq/ops/mixed_unitary_channel_test.py,sha256=bP3fUC7dtIFOZaJd04Ovz-lChzLsXF1Jsq8tFlQNpfE,5152
325
- cirq/ops/named_qubit.py,sha256=WzGsxgkjRI8rS692zpIrKS3rWBF0wvX76GjsSnF-g7k,10005
326
- cirq/ops/named_qubit_test.py,sha256=mtJVRe4JzFSNckMQJSGCj1P0VBtpGh--6YxKbIEE3TQ,5221
327
- cirq/ops/op_tree.py,sha256=wnOa8fhAWHHVIJCTRhX37IM6BPqQ2QA_0XaBW3Y0syY,5276
328
- cirq/ops/op_tree_test.py,sha256=FzDaDjooimUEYvCvXrTCXbR2Je8QjRTZ0VXoeI7AGyo,5700
329
- cirq/ops/parallel_gate.py,sha256=lkwaatEWd0roRbRKq_fkBz7nmZoMB4hdwFT6LUNxmJ4,6318
330
- cirq/ops/parallel_gate_test.py,sha256=lWCLnlEhs_LDNgewp7e3uN-23Q513i4G0JMva96_GiE,6299
331
- cirq/ops/parity_gates.py,sha256=WjuWb69Deym_g22ZJIurrMGY0AWdLQjxNkOFnnrbzAg,14383
332
- cirq/ops/parity_gates_test.py,sha256=43k4Q6YIm2wOVxaAgp02ki0zpAQ271_lcG2GbWR4TJc,11289
333
- cirq/ops/pauli_gates.py,sha256=NTt6Jd1WrlkqyvEDNKTLvzSR5pE4Imr-SDTZUs3gPgA,6831
334
- cirq/ops/pauli_gates_test.py,sha256=3AX2hzr-xeXrZUeSr-yBFYhbLeHK1qEh7_Bq9vGUAgo,7753
335
- cirq/ops/pauli_interaction_gate.py,sha256=2e0VaCO0IE0rdwPb5F50S3rujqOuSWz54r2lNWUDrBA,5603
336
- cirq/ops/pauli_interaction_gate_test.py,sha256=adnIIgCvFzO-inNaN77HER-WJ0hg6L63_HfiT60oV3M,4543
337
- cirq/ops/pauli_measurement_gate.py,sha256=ODHQJgy7oEuDb7qOJ2ja_i0w4jvbV202FaO4O_deo6Y,7239
338
- cirq/ops/pauli_measurement_gate_test.py,sha256=acKmYvwSQniIX2FtOCVrIPRPmyUBeV4uNUFmyShJixE,6778
339
- cirq/ops/pauli_string.py,sha256=09vO175cvhA1H_c_X4Hb9uSSIjWx3mKRx_XV8wGG_SI,66968
340
- cirq/ops/pauli_string_phasor.py,sha256=-86hl5D6TIgV5WaQLd1X0sARnNebFTXDpSTlS7T0Czg,17518
341
- cirq/ops/pauli_string_phasor_test.py,sha256=PT2PmSeXG8JS45gyUrVpXdTifwpNTCmU0ASUZ9WDk1Q,27865
342
- cirq/ops/pauli_string_raw_types.py,sha256=IdJgzqF66hGkuJckAxxnyRLc-jMLFTPjnpePzhNdlRw,2241
343
- cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BEX6dQuawRQE,2648
344
- cirq/ops/pauli_string_test.py,sha256=OcOUSiR-ja1yfEr3GY8Mx3yogmDwr6_yCuXOU2XF3W4,78869
345
- cirq/ops/pauli_sum_exponential.py,sha256=6sKJ0ky2pcxoSXaRtYnlIdB6A3oMYHX7nqBx1i_GEkM,4876
346
- cirq/ops/pauli_sum_exponential_test.py,sha256=Vi2-0zDUCS4XtFn9dfmkgh9dH2ncuKYOiQLCZPoLMkg,5369
347
- cirq/ops/permutation_gate.py,sha256=2h8n76N2M3nu5MA8JkRQgVLByq5cOEluKUN042ClSRs,4196
348
- cirq/ops/permutation_gate_test.py,sha256=qroZ88JYhSU6rxuQsJ2pS2XqPFJ1BGvXYVy3cnpUc9k,3281
349
- cirq/ops/phased_iswap_gate.py,sha256=Q-1PuSc4F3gsZL9UUN8EgrO31Ix6mA-7HoUIndvePbk,8990
350
- cirq/ops/phased_iswap_gate_test.py,sha256=tB1MqH8Y0Kgr0QIxs1kq1yl2g0mKYI7Q_AaadBhFe2U,7360
351
- cirq/ops/phased_x_gate.py,sha256=ykYG1wxKh1649B9V1vJPOUsE5Z3hmm5t0sa9mCdn530,9331
352
- cirq/ops/phased_x_gate_test.py,sha256=g_qbhl2OesKgXkzECv-7FJPMlOBzv9-AzkVZgfflxbE,10821
353
- cirq/ops/phased_x_z_gate.py,sha256=E96p1za5rN3Q2jwOfV1HWnkvb9mcxdV9ZaV8FzcpJHE,11518
354
- cirq/ops/phased_x_z_gate_test.py,sha256=KK5-FD5zoaqZkw7p6UKxFddzaFWoxnQnE8LpCiKtIk8,10690
355
- cirq/ops/projector.py,sha256=y3ignrYFmthdPm_pjJ0Y0xp8SGPviqcT07Y9KEZ231Y,5646
356
- cirq/ops/projector_test.py,sha256=Wq7ddj-PV30yUXJxJoT3XIw2sIUC1AilnZ9m9N5Ejr8,9063
357
- cirq/ops/qid_util.py,sha256=SxyoMy_s070lcqXV7ny6vE8pp082OrTjBtawZtHOhXs,2071
358
- cirq/ops/qid_util_test.py,sha256=JdViBgFfH4bZJyPKTjUf9MuPxMQe08JV_Tl6tusekfk,1061
359
- cirq/ops/qubit_manager.py,sha256=BT-1lpp7MTdBHtVekwQw3riN936hipwiDxdzNKIM5Pw,3540
360
- cirq/ops/qubit_manager_test.py,sha256=HGPOQEwVujNFngi6iAGOYKqqWDwFp0jcA8nbU_GFvpY,3372
361
- cirq/ops/qubit_order.py,sha256=2jCQE6bebhwkTphxJvPfAvGp16Dyees-erbPrBc4ibw,5616
362
- cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
363
- cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
364
- cirq/ops/random_gate_channel.py,sha256=Xe87IijowzE8UPtgKgmAiA2iwKwC0_poON5D5TfBVoE,5121
365
- cirq/ops/random_gate_channel_test.py,sha256=6pJgavUZAw9WSxgcDPNwQk1Wzt4ffD-1dED2IcpKUcg,8398
366
- cirq/ops/raw_types.py,sha256=IAPFbqoqTX9Y5DjZx9mhmo44nKRY868nyf_H5aB_ixE,43874
367
- cirq/ops/raw_types_test.py,sha256=HkrTqWqKtReUgCBTPsljrdfZndNkpiizHYX0Sbyuf-0,34669
368
- cirq/ops/state_preparation_channel.py,sha256=0t_mowWYTFspRpRWJ2xvQtbl7iAQTF282TdP7nF4Kto,4778
369
- cirq/ops/state_preparation_channel_test.py,sha256=tSjrd5cCkd0nEV26WzJN-IVVHtm7HjfHGImYcvhYec8,5923
370
- cirq/ops/swap_gates.py,sha256=OO6oPeXUiCgp_I_6-X6po4Ql_i7hm0kCmNs3_S6mwpg,11792
371
- cirq/ops/swap_gates_test.py,sha256=_CihLf6rY4PNphCkH-S5mLJQYZW9ILjnnwUyQ9b0Blg,7452
372
- cirq/ops/tags.py,sha256=B3nEsZQTurGPJodH7aDoreNSatqawTxwsmw8fSKaIlc,2294
373
- cirq/ops/tags_test.py,sha256=4V9twOuCXd7Glvj9p3RW-tZ4-bfLtC1tmonR4soKNA0,1158
374
- cirq/ops/three_qubit_gates.py,sha256=IGJ5emntBp7qSdcI9bxYTprSz8SwVovZYhb3GbJsOeY,28522
375
- cirq/ops/three_qubit_gates_test.py,sha256=jCwb6nHl1Y0qdvqzeLW2TRIWEPLmGE47SwacdzUcFiU,11779
376
- cirq/ops/two_qubit_diagonal_gate.py,sha256=xaVproIB3r8f1hPbuN_9YKaGJ9iVF7p5J0oHjydB5gE,5397
377
- cirq/ops/two_qubit_diagonal_gate_test.py,sha256=qiuREluCDKMok3ormBOdDYCFlOS9u1zFLqTsORO5JtM,4000
378
- cirq/ops/uniform_superposition_gate.py,sha256=CdwVJsHCYO0IXcWNQJk4VD_7aBSQHpEfGF3YlC5PP4Y,4725
379
- cirq/ops/uniform_superposition_gate_test.py,sha256=gbtUQzWctZzSXNrWIq45s37J5L-hTyz9H-rtUzWcL0s,3552
380
- cirq/ops/wait_gate.py,sha256=x7S7bGN_KbkN8SRvlxwBwwfhsneR1xfUzfh1tYCW8g4,5581
381
- cirq/ops/wait_gate_test.py,sha256=2Uw8ZjFkYGhDosoxbJr_IW2wWdxY8kXR-CLyC69DYRg,3543
382
- cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
383
- cirq/protocols/act_on_protocol.py,sha256=pRjl2lHqxuYWlJopkWCSPiwrHPggHOdRMb0nu-kHe2I,6886
384
- cirq/protocols/act_on_protocol_test.py,sha256=q4vOBfG9-O8CIzmwU8HaB2HZR_U1fk2Vm-q1QhyeEpY,3147
385
- cirq/protocols/apply_channel_protocol.py,sha256=s5gkjAcAMe_qdPJGPuZnt4r6zZhszpddnK8Ed-wEO90,15678
386
- cirq/protocols/apply_channel_protocol_test.py,sha256=ETAWrBTVkPuUPUgHsLZo1HUsJnZsO0hD2fQeXlXtvjE,10582
387
- cirq/protocols/apply_mixture_protocol.py,sha256=pYxlpOXxPjMIddyYtEw82_18ioNNvEEcmsImaQ1YiBc,16479
388
- cirq/protocols/apply_mixture_protocol_test.py,sha256=aWyzK9h9QNmpZJBu0ASaQ8BGYJt5T5KugN4OPMO5pCU,11129
389
- cirq/protocols/apply_unitary_protocol.py,sha256=giJwec5XCEt5s0_uyNEuhGBlcDeJymPvuoIVx08hszY,29772
390
- cirq/protocols/apply_unitary_protocol_test.py,sha256=ajjHvcBBv5n8Qh_hMPZkdsOvy1xJ774q4kuC25DJnKM,26136
391
- cirq/protocols/approximate_equality_protocol.py,sha256=ZqnkoltD8vS1eQjV7Lw3RS49cdjZjGTF0LbdRUlBOCw,6257
392
- cirq/protocols/approximate_equality_protocol_test.py,sha256=HRjM3PVRGgJNM1cqq7NQ3cMlsiYwL6zEm-MN4y7t1_M,9176
393
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=msCejCJx5QtvJHM-yro5gbyUfave7FNhqjr8bUw9BIg,16011
394
- cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=dSvjaGEbMGuSrs4kpFen5Z-_dC1JzPvl27Dg47di4A0,10415
395
- cirq/protocols/commutes_protocol.py,sha256=n7EQYs2giG3_Kh0bVhOXYQD7we7vTwj8IklBqQdolgM,7394
396
- cirq/protocols/commutes_protocol_test.py,sha256=h0Lky4jrs7Hxrh4MeHxmxNciuofKGGZ2eC-ceWP8wKU,5849
397
- cirq/protocols/control_key_protocol.py,sha256=sq4CswLr5TDHPmviNMF1shlL14D6XXlPxt3P985Esy0,2614
398
- cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZOOWGOXp0RIFgqc,970
399
- cirq/protocols/decompose_protocol.py,sha256=YkpkZrvcXQ0fk1Nf7fT0Rfnee1SDzk0-d6dVE_ODCPY,18874
400
- cirq/protocols/decompose_protocol_test.py,sha256=C3iON4sHaU9laztTV4HDbHnaSMwvpMYMG-ikKSnPf_A,16046
401
- cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=7uF0v5c8pzmj9j7SbgG-dJ9nd4zddKMRf8tPx-Zr8Ys,4070
402
- cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=4lTuxGY4-JfoK9vr_2OUHxr5IAnVeveq3OAZFkLi_eM,5965
403
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=JyJFMS_OdSr9kCS7INgfHrqjym9vSjOdTg6lK17KkK4,4295
404
- cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=0ia7ehyGpmscjRP448dBANZKwnlbqSODdPUYRUhDEN0,3879
405
- cirq/protocols/has_unitary_protocol.py,sha256=sOP_qz-9JKZ_yg9QDpF0uw0qGfV8dTS_UpPtEpk512I,5372
406
- cirq/protocols/has_unitary_protocol_test.py,sha256=4KmFfE3ciJtHBwnYwXcu0uTzQyfeVz-YI3EyAxM9ZP4,5761
407
- cirq/protocols/hash_from_pickle_test.py,sha256=YvDlLEQKZLhTaVhtHXGB4MntUhxN1Za9rQqf7ZfAfdw,4634
408
- cirq/protocols/inverse_protocol.py,sha256=aicyqdJVDbd-ZO-wKHA8S_5CcPl3HDhRklSSdosRdy0,4115
409
- cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
410
- cirq/protocols/json_serialization.py,sha256=VJCEXB9fkIZh3_d6dkh_QDxwjC3iJAlELGHsCmAMvE4,24779
411
- cirq/protocols/json_serialization_test.py,sha256=qrh6XTy6k-FCVAd3QvSV_ENHVf9UUgHOt_pzsniI6UM,28144
412
- cirq/protocols/kraus_protocol.py,sha256=NVzMsIyqxytGAui-avLdq3K0C7UqjckrTDvr0ENmDtQ,9300
413
- cirq/protocols/kraus_protocol_test.py,sha256=NYVayiCaEpfvelsoR7bP57lUKn2pjFKYOiVOFHeZn9Q,5400
414
- cirq/protocols/measurement_key_protocol.py,sha256=vqoxjmthtmQ1nWbi7Xd4fdxFNe5y3WL7DZkQ3M_VPnc,13409
415
- cirq/protocols/measurement_key_protocol_test.py,sha256=W7yWKFVo6fMr7JjTECe8bMh1-NMDOpGMh3S-vmNl_3s,8654
416
- cirq/protocols/mixture_protocol.py,sha256=L6FDIJmYqirVGsNwoUz5sulEDFoRUbhwz4yFL0ML2Po,6448
417
- cirq/protocols/mixture_protocol_test.py,sha256=5mCh6JjlumMiSwDM818Nvo72AGxttuIYuawyESIQFtY,3818
418
- cirq/protocols/mul_protocol.py,sha256=ZhkowiHCulggWanjoz6HpMGf0ODqDNIjM32knFKPuJ0,2770
419
- cirq/protocols/mul_protocol_test.py,sha256=Qv7y17r-HjLXC7e-6t_Y6ht8lD_iiXE6CRyRFb7noGE,2136
420
- cirq/protocols/pauli_expansion_protocol.py,sha256=vtpVoBlU1pXm4RQf3DDGervXwcW8jqNxs6ETHPSsp1I,3750
421
- cirq/protocols/pauli_expansion_protocol_test.py,sha256=z6eo1mBCVa965OAbVYKlTAqN2VztjqgMVvcYVC2C46s,2728
422
- cirq/protocols/phase_protocol.py,sha256=dXZRJb7aT8ZvtliItZOvoiaev-QvjBT4SknwZ5p-RUI,3612
423
- cirq/protocols/phase_protocol_test.py,sha256=eU4g6VDqfWZCpklVlY1t5msc5kAZsP-UlPrROLll_ms,1939
424
- cirq/protocols/pow_protocol.py,sha256=nFeSTr9mNlbU_8eQvvy6OBjW0ukTFM0wYXRrZvrpgZQ,3290
425
- cirq/protocols/pow_protocol_test.py,sha256=8eBcGUqRWSSYkEkvSHXL6tcv1o-ilnl6nzgNl9vfctg,1626
426
- cirq/protocols/qasm.py,sha256=fvypAAtkpTAiduQThswrPFJ70oK8BIYW5Bd7aOa3GRA,7406
427
- cirq/protocols/qasm_test.py,sha256=O6QdL45eEPigqzy_oLB_CjFSQhtKUBmCtQWNdk7j8Zg,2216
428
- cirq/protocols/qid_shape_protocol.py,sha256=kIsdspR6O6B_e2K7SKrRmmJS-9XSoguzEIGrsV5jzfM,7690
429
- cirq/protocols/qid_shape_protocol_test.py,sha256=Qjo-wemjkP__1jQnVkkB91mUs8EpfXyKI9GzeZQVb1E,2303
430
- cirq/protocols/resolve_parameters.py,sha256=XpHmkDCw94kWO-pimyXvdqdQ1MyULtiM5aP1_2woVqU,7398
431
- cirq/protocols/resolve_parameters_test.py,sha256=LrgTQRxeL8VSBqs_YOM3JxikIBg-bZwwworjyVLIcos,4889
432
- cirq/protocols/trace_distance_bound.py,sha256=vfZ1ecyjpOg-zg780uLy9vL8cBD_Vy4xY5TRP-CAPNM,4172
433
- cirq/protocols/trace_distance_bound_test.py,sha256=FHec7-ngnDjdEf9APIMqU76XCcGO7bCjHkinjA0k5us,1936
434
- cirq/protocols/unitary_protocol.py,sha256=ZH7sVFIKSqWQD4GrsM3BLlswWPiErXCl8aWSO1taow8,8152
435
- cirq/protocols/unitary_protocol_test.py,sha256=PTvhsLPsRpfto5pkiaMSPcrxMkM9_53M81U6Ev7pwjU,10209
436
- cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
437
- cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
438
- cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
439
- cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.repr,sha256=tJKnheCoKcfH81vhzmCNeMzCygxmcRobaU-lZzYb4kY,62
440
- cirq/protocols/json_test_data/AnyUnitaryGateFamily.json,sha256=_BSIwi_UcdOVf2JiXp_FKTUqjE0wP8W5UMblFdeT1mA,60
441
- cirq/protocols/json_test_data/AnyUnitaryGateFamily.repr,sha256=Z_S5nP5R3pPhYHa6Jqsj34G-CcOx_psHBesDvHTz5AU,41
442
- cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.json,sha256=dsqeDJmjtcIk_RKVoCyX1XYh-toMnGGBGuZ59_RFNbs,152
443
- cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.repr,sha256=yxGsJgd17f0gqjR6Czu2S4driAi0gd9YElTbtIg3EnE,51
444
- cirq/protocols/json_test_data/BitFlipChannel.json,sha256=4ZfpIzTz4499IaLZFj2kV2l20JUgNlANYvELa9IW5Qc,47
445
- cirq/protocols/json_test_data/BitFlipChannel.repr,sha256=z_s9pPlKy_giiBKhm74FH2atbyHyaQDurqFWKwV2CdY,20
446
- cirq/protocols/json_test_data/BitMaskKeyCondition.json,sha256=e39Vw4ZsMFshlgFfbRYK39XRHdms3eA2P38GiDAzYXY,1596
447
- cirq/protocols/json_test_data/BitMaskKeyCondition.repr,sha256=bg5EWWsUcYOC9Xb904GnxnCLZJXz8YTUKBNLlx_OGh8,844
448
- cirq/protocols/json_test_data/BitstringAccumulator.json,sha256=YewIkbw90dcbB0D0mGU5wf4obwH6nsyWO5EG9mh3rtc,5661
449
- cirq/protocols/json_test_data/BitstringAccumulator.repr,sha256=7jc5mO0lwMODjK4sJAI3hQeHmYyw_jIKMtsSEYN2h9Q,1260
450
- cirq/protocols/json_test_data/BooleanHamiltonian.json_inward,sha256=oHhPkTBsLogMKpgdAr7RKA4EJ4XNCaSStxalfN-OETQ,218
451
- cirq/protocols/json_test_data/BooleanHamiltonian.repr_inward,sha256=1KX1OeEy8AvSYU6iFSOFtt6e035nbM13W7fpN_jkAk8,118
452
- cirq/protocols/json_test_data/BooleanHamiltonianGate.json,sha256=qtZSlssekN571-icySvnBAyD0b6ObsBMN1UTUEnYq4E,143
453
- cirq/protocols/json_test_data/BooleanHamiltonianGate.repr,sha256=NQXjrOyXnZTh2RSJ8oIDcmbPeKncnyS4pBZ4YQMIpgU,98
454
- cirq/protocols/json_test_data/CCNOT.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
455
- cirq/protocols/json_test_data/CCNOT.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
456
- cirq/protocols/json_test_data/CCNotPowGate.json,sha256=viYGbzfYTdxWq79Yabk0-0yiDV8E0-3CB4Sq-tSHujM,77
457
- cirq/protocols/json_test_data/CCNotPowGate.repr,sha256=VBrxMM23-57e6jmh-tJTfQz6vAIhdhjUPsMJgVvqvjk,51
458
- cirq/protocols/json_test_data/CCX.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
459
- cirq/protocols/json_test_data/CCX.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
460
- cirq/protocols/json_test_data/CCXPowGate.json,sha256=viYGbzfYTdxWq79Yabk0-0yiDV8E0-3CB4Sq-tSHujM,77
461
- cirq/protocols/json_test_data/CCXPowGate.repr,sha256=VBrxMM23-57e6jmh-tJTfQz6vAIhdhjUPsMJgVvqvjk,51
462
- cirq/protocols/json_test_data/CCZ.json,sha256=E9YJcaSgLejcpb2qzP6kmw_bDJnirgoBpQf_EuMroP8,71
463
- cirq/protocols/json_test_data/CCZ.repr,sha256=C0oYQm7yAuePAgoL2aLHPwQB9vIJx9l-UXx6zBWKSUQ,8
464
- cirq/protocols/json_test_data/CCZPowGate.json,sha256=wU-ICHSSR-kw_9z3HcTwSBO6ie69Jp4e7d7ONQvrfcw,77
465
- cirq/protocols/json_test_data/CCZPowGate.repr,sha256=3qz_NybAjA_TnYX0QDQNL3A_Zx0GU71MpZI-btvnxsE,51
466
- cirq/protocols/json_test_data/CNOT.json,sha256=0IMXOU49nZ1xYhd8gRr5yjYBJTUOcyViCHSXde570mg,70
467
- cirq/protocols/json_test_data/CNOT.json_inward,sha256=T6n85IkNi_UA1M0Z4vJhLdTvXT_C4BT591Xf2epkdm4,72
468
- cirq/protocols/json_test_data/CNOT.repr,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
469
- cirq/protocols/json_test_data/CNOT.repr_inward,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
470
- cirq/protocols/json_test_data/CNotPowGate.json,sha256=2t2RbA32D4_bdjgc4JXExjTYvUmvV38ejY9jvr8TUKw,76
471
- cirq/protocols/json_test_data/CNotPowGate.json_inward,sha256=YfnlP4Nj60fTqQ0H7sIVKCWn1ijQGEwQxXIAAm_Q1Hw,78
472
- cirq/protocols/json_test_data/CNotPowGate.repr,sha256=SCJLIkXQQwqH9NBEX_6ZBa6mqplL36fL81NYBT_6hbM,50
473
- cirq/protocols/json_test_data/CNotPowGate.repr_inward,sha256=lFWRKAyZwzu14GKSKgU4SFWKGbqE-YgWa8dy5p6TIWM,52
474
- cirq/protocols/json_test_data/CSWAP.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
475
- cirq/protocols/json_test_data/CSWAP.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
476
- cirq/protocols/json_test_data/CSwapGate.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
477
- cirq/protocols/json_test_data/CSwapGate.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
478
- cirq/protocols/json_test_data/CX.json,sha256=0IMXOU49nZ1xYhd8gRr5yjYBJTUOcyViCHSXde570mg,70
479
- cirq/protocols/json_test_data/CX.json_inward,sha256=T6n85IkNi_UA1M0Z4vJhLdTvXT_C4BT591Xf2epkdm4,72
480
- cirq/protocols/json_test_data/CX.repr,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
481
- cirq/protocols/json_test_data/CX.repr_inward,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
482
- cirq/protocols/json_test_data/CXPowGate.json,sha256=2t2RbA32D4_bdjgc4JXExjTYvUmvV38ejY9jvr8TUKw,76
483
- cirq/protocols/json_test_data/CXPowGate.repr,sha256=SCJLIkXQQwqH9NBEX_6ZBa6mqplL36fL81NYBT_6hbM,50
484
- cirq/protocols/json_test_data/CZ.json,sha256=732Zza9yot4TpapFbJaQj3Q0NrcqbolTkyPtr8N0pmA,70
485
- cirq/protocols/json_test_data/CZ.repr,sha256=PjvOrt0zh_3EWbqxrSVw1o8pIQjIkEBObeM8tai7uUA,7
486
- cirq/protocols/json_test_data/CZPowGate.json,sha256=3N2Ageh6MeH0ZbqUY549dDkQQmtcOzGCOmbMe7Gfn9M,76
487
- cirq/protocols/json_test_data/CZPowGate.repr,sha256=r73dZkZPUKUoKycbPay4pUKgQm3iazvrNRdgCYSJbok,50
488
- cirq/protocols/json_test_data/CZTargetGateset.json,sha256=awjiW6WeUI76O6ONwObe7JQpz-GQOZH-uckpojiTRP8,1256
489
- cirq/protocols/json_test_data/CZTargetGateset.repr,sha256=ua9QtMoUcuErWoH6M4IsBP67M41KXjbeOD4dDKodYPA,596
490
- cirq/protocols/json_test_data/Circuit.json,sha256=pQNIcjuIYBfXnGkqQnn4xuSLoHysFELzi01SxFfcOAY,4379
491
- cirq/protocols/json_test_data/Circuit.json_inward,sha256=z62hEHwGtkVXrZNfxHX71_lDQ43wk12qtPO0Q0i5qwc,4574
492
- cirq/protocols/json_test_data/Circuit.repr,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
493
- cirq/protocols/json_test_data/Circuit.repr_inward,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
494
- cirq/protocols/json_test_data/CircuitOperation.json,sha256=s7jp0RDf_dz4eIvYMNDgpkoERfDBvqPWDrjWZ1Jxdck,6949
495
- cirq/protocols/json_test_data/CircuitOperation.json_inward,sha256=EP3fiuDhxStcshrJC_Uot1hzYxEmlKk4dW66DMK9ALg,7951
496
- cirq/protocols/json_test_data/CircuitOperation.repr,sha256=zjkjsVG9m3jedRYhKVJG_gqhwYycaqRRCcOuk1EKWvE,1711
497
- cirq/protocols/json_test_data/CircuitOperation.repr_inward,sha256=rsVxASnsKEPxfJFZhXw-PPjBV_7RYTrLCglxUTXjcLY,1083
498
- cirq/protocols/json_test_data/ClassicalDataDictionaryStore.json,sha256=G09lSA5vshMhiXz_jgFw0STHjc08pJ0UczVCz8SGYLE,1185
499
- cirq/protocols/json_test_data/ClassicalDataDictionaryStore.repr,sha256=bOLOBw-nLRvdkd7oYcLzkh5r-cBZAxwo7H6xdDgtOHw,404
500
- cirq/protocols/json_test_data/ClassicallyControlledOperation.json,sha256=7t_Yyjhk8Ig-XyfOboE92K149csQbwvLoEwIsuDVHDw,669
501
- cirq/protocols/json_test_data/ClassicallyControlledOperation.repr,sha256=NHZYgJuaXSbTZl-X666hSmzH8OhGk8SUap3gVV1ScpI,173
502
- cirq/protocols/json_test_data/CliffordGate.json,sha256=4YQxUNn3U294raiXxRahGJNb5-vbfm9-94Aj7gtVl24,382
503
- cirq/protocols/json_test_data/CliffordGate.repr,sha256=xmgFCWoMGH8XbRlrJx0RRBOR1XQuepE5LhJUCR3zUGY,72
504
- cirq/protocols/json_test_data/CliffordState.json,sha256=kocv5UWA2qb6JXsk0KZFN0sJiuwzAbSb2_gkyGlUL4s,464
505
- cirq/protocols/json_test_data/CliffordState.json_inward,sha256=HZJxJ2_qtv8M0rqfILPsGK368XWz5dnWiLsiLzv56gI,733
506
- cirq/protocols/json_test_data/CliffordState.repr,sha256=irZZrWXfNYM-bjA4IqHhgJMlTDlG6rtlP34t9ix71co,52
507
- cirq/protocols/json_test_data/CliffordState.repr_inward,sha256=irZZrWXfNYM-bjA4IqHhgJMlTDlG6rtlP34t9ix71co,52
508
- cirq/protocols/json_test_data/CliffordTableau.json,sha256=ErcX0cp1XEM28GvuVCxbWNLOx7OfVQtsB6cYwGOHfms,209
509
- cirq/protocols/json_test_data/CliffordTableau.repr,sha256=BA-VCQ1WeZNyhIwlQLeZUiLCeU2mTVuY4LA9Og0tJZE,34
510
- cirq/protocols/json_test_data/Concat.json,sha256=yBNdsxH1jxEcLPnGpW1Ndji-68C1N8M-CQnco0WWCWA,311
511
- cirq/protocols/json_test_data/Concat.repr,sha256=WG2vmD9Z1odmwXJA2N68cFjz4DkkoHJYPGNzOc0NUWo,105
512
- cirq/protocols/json_test_data/ConstantQubitNoiseModel.json,sha256=dbe4xJvXXIOv1KyjGJXlvJ3kd3W7XEHQt5xFY0bGEtk,144
513
- cirq/protocols/json_test_data/ConstantQubitNoiseModel.repr,sha256=OIRaaB6GlqJY_8TkEwvZQ8VpbPNi6fWii1vhTJn0t4o,36
514
- cirq/protocols/json_test_data/ControlledGate.json,sha256=CjFsQaCrr84mZ-fD2els2AQ0QZNlK9Jv4AP0znV02kA,757
515
- cirq/protocols/json_test_data/ControlledGate.json_inward,sha256=NeXhBSiXf8npvH319na_0aqCk7rTEuL_kBY1jlB5i-M,238
516
- cirq/protocols/json_test_data/ControlledGate.repr,sha256=YNbRlUv2JRbe6zpids4NwwYLhlWCpFs2SAHgx3mz8UM,243
517
- cirq/protocols/json_test_data/ControlledGate.repr_inward,sha256=ZletyOLNa31cg5LTem_PSWu6uFVJKrmL2mezc6kcDME,90
518
- cirq/protocols/json_test_data/ControlledOperation.json,sha256=hUhXlUJH2NrRX-lGO5enx0wKUXBgtlMGUO4Bd2nlzAo,1338
519
- cirq/protocols/json_test_data/ControlledOperation.json_inward,sha256=1C81pXWbBH6pogBGuRDOAPy0T3tRvUiky1-CIuWZMHk,502
520
- cirq/protocols/json_test_data/ControlledOperation.repr,sha256=ZROxgs5jdS-zohMfm7rXjgUrERCCE6_aO6QQkub91oA,361
521
- cirq/protocols/json_test_data/ControlledOperation.repr_inward,sha256=txZg3KyY9vW2XWVBwOzXFdb9E_dJVEFW78DYfH5sG8g,154
522
- cirq/protocols/json_test_data/CrossEntropyResult.json_inward,sha256=93bRLYDToFI7Qanz7cJjvHpA76zZLy8IyKCXvzbql1o,478
523
- cirq/protocols/json_test_data/CrossEntropyResult.repr_inward,sha256=uW7xLk0vetWFLtBs7DJN70L2O9wX2BA_FreMCa1knSc,233
524
- cirq/protocols/json_test_data/CrossEntropyResultDict.json_inward,sha256=qY6ZzGWM23sMH2LRr0e8rWcIxkfUBJhDSpO5hP_-mEM,1046
525
- cirq/protocols/json_test_data/CrossEntropyResultDict.repr_inward,sha256=nbUsiyup-uqBFH_Oh4wgVRR7ce4mF3t7y1Nq01BHqpA,370
526
- cirq/protocols/json_test_data/DensePauliString.json,sha256=0oR08nXQ9sauMF8Q8tcLRqX-_VDmZ8C98Fm-e-M1wtg,172
527
- cirq/protocols/json_test_data/DensePauliString.repr,sha256=aS0Ey4uZCNvo_WFF8QmUmY12gyNMBd4v73mF-U7qNUU,45
528
- cirq/protocols/json_test_data/DepolarizingChannel.json,sha256=ykTAIXaLq9qWESrGEA-yh3AzrR2170IQqe5gdoECr-M,52
529
- cirq/protocols/json_test_data/DepolarizingChannel.repr,sha256=WPSvrB9Y7Pnqkil2Iju57dtBFus-rWAosO00wz70jq0,22
530
- cirq/protocols/json_test_data/DeviceMetadata.json,sha256=6zZJs9XRvDuhuRWd0Z86EsCdo8L2UY6R9VZXCuD47W8,719
531
- cirq/protocols/json_test_data/DeviceMetadata.repr,sha256=LJ1ltuguMUs3y2o2oZcy-fvEgTcdCchp8IB4Eyl9RAo,62
532
- cirq/protocols/json_test_data/DiagonalGate.json,sha256=AuxY2cHJMpAfWqyccp6Iq-OawfDxs3aL3ytaE2z-uS8,101
533
- cirq/protocols/json_test_data/DiagonalGate.repr,sha256=ZK3ToH0R8BQhxUfhbY6VtSORTPDnVy7C-p5z-opq3LE,60
534
- cirq/protocols/json_test_data/Duration.json,sha256=g-Rtyiupttvbdq28uEX8pejBAp-6Zrx6_c5bk9KBseM,43
535
- cirq/protocols/json_test_data/Duration.repr,sha256=-t9oVLMifuu5Dau2m5nWT1SQ-jjc01x6ScrdVcOW_WY,22
536
- cirq/protocols/json_test_data/FREDKIN.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
537
- cirq/protocols/json_test_data/FREDKIN.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
538
- cirq/protocols/json_test_data/FSimGate.json,sha256=rYHToOnu4UaEEsv1E78s5OQpqynk9vkIx3aWWQBpLiU,63
539
- cirq/protocols/json_test_data/FSimGate.repr,sha256=IBm0Q5w6y5q_6GAkevA1Xqhw3iJX7I2ja2EhMBlkz7c,37
540
- cirq/protocols/json_test_data/FrozenCircuit.json,sha256=pmNbBikHVtR3AuyU47GEIbhWQxH54kQyU8Q4V3T6WHA,4965
541
- cirq/protocols/json_test_data/FrozenCircuit.json_inward,sha256=xRJhdBlTFvWUwJJR6tTqQsx-OY61c028_KubMcAz4l4,6776
542
- cirq/protocols/json_test_data/FrozenCircuit.repr,sha256=heGqAXaCvVhECDDolqwnCTWECNKf6rr_XCDx9Er7F2I,707
543
- cirq/protocols/json_test_data/FrozenCircuit.repr_inward,sha256=EwE8nM5rQxhP5CH1a8cDiDy2IUMJKA-o5BfmIekl0iQ,819
544
- cirq/protocols/json_test_data/GateFamily.json,sha256=r_a61qQDvSE5EUv3ypoF2_6vaKUmWAjCaM-3hF_XpsM,1202
545
- cirq/protocols/json_test_data/GateFamily.repr,sha256=iiNLDxjKNOlyrGb-ytHIgX4csX4cKDk3eww6Sb7VtgA,616
546
- cirq/protocols/json_test_data/GateOperation.json,sha256=Nuvle9pqzceiWU5fqxvngWKbAs2psc4R1C7vOHz2TEE,1634
547
- cirq/protocols/json_test_data/GateOperation.json_inward,sha256=yUyTMmOzBrnqGrtu3Zku1El1dF8QNj3dD4Tt2mNbTt8,1636
548
- cirq/protocols/json_test_data/GateOperation.repr,sha256=i_xPGhMjcO5OZkodaKJplmJ9LrbhiDd1vhyZx5UhYWw,318
549
- cirq/protocols/json_test_data/GateOperation.repr_inward,sha256=TfXbA84DmmjbCke25ZHFGopxRE64S3mlmGaa54HnYEA,320
550
- cirq/protocols/json_test_data/Gateset.json,sha256=nI5lhoUgsF9AGEeuMoHuPz3ulr9al5N00qh9lbtaKcw,1636
551
- cirq/protocols/json_test_data/Gateset.json_inward,sha256=xak5xkOb-rSHOnFPfDGGT1ru0tBcHBBu45vYS6E2PUU,2037
552
- cirq/protocols/json_test_data/Gateset.repr,sha256=z-F0QpxV4ERHOWrywK3obgbzBVYp0U8no8YRPWDzqLk,357
553
- cirq/protocols/json_test_data/Gateset.repr_inward,sha256=bh6OK4Ly3j6EbytjVdyyZEI7kr4irdBEotu7UfiRcpE,386
554
- cirq/protocols/json_test_data/GeneralizedAmplitudeDampingChannel.json,sha256=9n_9YB2RedyBFAiSJn8cjG4pVCkOhhYzDGfKxuyi56U,83
555
- cirq/protocols/json_test_data/GeneralizedAmplitudeDampingChannel.repr,sha256=B8IcecjURK2UNviwn_HEZgDRiW6DhgmMJiVWJykLjNc,48
556
- cirq/protocols/json_test_data/GlobalPhaseGate.json,sha256=A5dqfTH23rT77sO4EHeyfzL20y0fhKvODmudMevsgYA,123
557
- cirq/protocols/json_test_data/GlobalPhaseGate.repr,sha256=gDLHpkg-pfN4-lz_abzZb3K2DgulpQ2YR5uAu1Dykwg,29
558
- cirq/protocols/json_test_data/GlobalPhaseOperation.json_inward,sha256=mjssuAqSqgGpNmX7RKY6d1LgkCPeVe0TurimhJQ3128,128
559
- cirq/protocols/json_test_data/GlobalPhaseOperation.repr_inward,sha256=E4q15ArsJmEVJKUD7M5s0CIGHRoj3n318XtyF2PZ2EM,36
560
- cirq/protocols/json_test_data/GridDeviceMetadata.json,sha256=VUf487Y5_BN3FFNGyvUAHp6BgHl4i3jvngaM45n9B2A,5961
561
- cirq/protocols/json_test_data/GridDeviceMetadata.json_inward,sha256=X7VkPt3dmKNeU6j3EEzBlIn3i_R47b2kt0nSDy2HOqo,4507
562
- cirq/protocols/json_test_data/GridDeviceMetadata.repr,sha256=CUgbaLZ0862iK2mLS_TT1KQXPpSW1GHBYL129k7gJW0,1643
563
- cirq/protocols/json_test_data/GridDeviceMetadata.repr_inward,sha256=5-tHgWDBLwj3pO9zk8PwFI2WVQehlNiuD-RpzzvqRmc,1483
564
- cirq/protocols/json_test_data/GridInteractionLayer.json,sha256=cknuXeHfwGozmVXd6THWPYekpzI8HnLWl5jXSkbI0A4,101
565
- cirq/protocols/json_test_data/GridInteractionLayer.repr,sha256=TiFgGlm8d2jCVCDzhx9cszrLQzcv-VPFK3LoQAan9B4,82
566
- cirq/protocols/json_test_data/GridQid.json,sha256=hWMrmU0ghYgnQbl68phBRJOa_KBUZIv0iTmXgmVpDqM,72
567
- cirq/protocols/json_test_data/GridQid.repr,sha256=XX1XEb941M6if3604YWq9WNgSfjUGD5NLYOpeBsUntI,33
568
- cirq/protocols/json_test_data/GridQubit.json,sha256=-NehjeVv5xBjj70mdVIQNwLCI6-p1RI0lGN75IK4srU,56
569
- cirq/protocols/json_test_data/GridQubit.repr,sha256=t5ScTXpGREbMhtsC6w196bYMdoZgBGC_zWuiLbyTSsg,22
570
- cirq/protocols/json_test_data/H.json,sha256=Z_ZInvhKgdgUxHklH8vzlBl5_VAbQrQeP8VQrWQkdm4,69
571
- cirq/protocols/json_test_data/H.repr,sha256=bOk_DwlVKvg48KLllfHlj692wQq_3rnbvM5Bd4QKE4U,6
572
- cirq/protocols/json_test_data/HPowGate.json,sha256=VC9CnubF8nb1pu51zOgN5y1wbouBLZVefKwiLZK_TBk,169
573
- cirq/protocols/json_test_data/HPowGate.repr,sha256=giHvI1G1YiG-nEjiP-F7GSvfms6Dn5Zv8tvr1j5cMCU,31
574
- cirq/protocols/json_test_data/I.json,sha256=JUZNEOMEuG8ZxRLPit0pnzBZWkIcUhXfJWnEfWNVu9Q,52
575
- cirq/protocols/json_test_data/I.repr,sha256=TDlI3KYiF-_gSlrB8teYEPCbL1vgTxInjBF9k1RroBo,6
576
- cirq/protocols/json_test_data/ISWAP.json,sha256=LXDo7JPW4UimvFbb6ca1i5sFG-6Xa6Jp8iq8bUXZzXg,73
577
- cirq/protocols/json_test_data/ISWAP.repr,sha256=FCxdKHgZP6bRBGDjchQw96XEecVKBuqHMlixauTuvFM,10
578
- cirq/protocols/json_test_data/ISWAP_INV.json,sha256=LZSKWT-pxVfcvZskof3HwXm1FuML-ZDx22z3zvsvvRo,74
579
- cirq/protocols/json_test_data/ISWAP_INV.repr,sha256=_hZ_9aRtWGnXfd2K5UmNeNBkwA6ugzBprJmfq0BD618,14
580
- cirq/protocols/json_test_data/ISwapPowGate.json,sha256=qH0ShbfvtKy0sFGkAd9iKMUX3W5zcdonrIyFQ5TsPgM,177
581
- cirq/protocols/json_test_data/ISwapPowGate.repr,sha256=nJGTK2uGRSr3H8uCKvIUJqapGtNfoF5kYOpJL35CpQ4,39
582
- cirq/protocols/json_test_data/IdentityGate.json,sha256=JivT5zKI7qd3RKRmD6urzp4upxinYIBj9qasxdsFHGM,258
583
- cirq/protocols/json_test_data/IdentityGate.repr,sha256=gMYOMtrfRgb4RVK3uUwD1midnCM174zAcHr5s0LXCSw,69
584
- cirq/protocols/json_test_data/IdentityOperation.json_inward,sha256=xR_zlzYY6guLBmnP9wT8jMH1LwSkd-PBNeLIpuT_oyc,600
585
- cirq/protocols/json_test_data/IdentityOperation.repr_inward,sha256=oIJ8KA4aHJYMtLirsUu0a-F8hyQ2qUZ87Cop6SKnAFI,185
586
- cirq/protocols/json_test_data/InitObsSetting.json,sha256=40kW5h0F_HC5SOEFFtbTgymLJjcZHwVRUzfvAnTT8oA,1048
587
- cirq/protocols/json_test_data/InitObsSetting.repr,sha256=QpjddPOwqrVFkc0gHZWOdJYXlO5Q4ftbncY5ST88xuY,197
588
- cirq/protocols/json_test_data/InsertionNoiseModel.json,sha256=pjRRfBlMY1LT58HBYxCnPYs3hvXTP5SIEecKINPXuJw,2245
589
- cirq/protocols/json_test_data/InsertionNoiseModel.repr,sha256=_UuncrqSmJtanZeOUgB4XlkG5eYtSH81YPIwQeTUrBw,582
590
- cirq/protocols/json_test_data/KET_IMAG.json,sha256=PjVfVhvJTTDTlhl53RNPs78m7L88K1G7d0z2Nr2T-b0,52
591
- cirq/protocols/json_test_data/KET_IMAG.repr,sha256=Mh3qpHzI_0JEN-j6qOt73vK-q78XIkU81GxSul9wH3o,13
592
- cirq/protocols/json_test_data/KET_MINUS.json,sha256=JaA_j47GDV4O3I8tA1cfArWAi6LOqjNW0dNmi6HKef0,53
593
- cirq/protocols/json_test_data/KET_MINUS.repr,sha256=RwCQUjKloqOD4gg4n72soY72RZTYnNuN7ioaJpe5tkM,14
594
- cirq/protocols/json_test_data/KET_MINUS_IMAG.json,sha256=CuE3gXWVnaoVhrHSxuA0pqRNHvud-Gvpnwb5aV517oQ,53
595
- cirq/protocols/json_test_data/KET_MINUS_IMAG.repr,sha256=VHn7DNkf1oGZFIXHhzge1swda7vMJc7kbtJdrRvopDI,19
596
- cirq/protocols/json_test_data/KET_ONE.json,sha256=SWXNCTHlDwV0rkfheuXUYEDPjGwMxQb1OrCAbIGpYz0,53
597
- cirq/protocols/json_test_data/KET_ONE.repr,sha256=curoumsWdLNOpS_D0ivqWX7X-BX9SoOPK2EJtIDjgvo,12
598
- cirq/protocols/json_test_data/KET_PLUS.json,sha256=djvMv4dxwk9nhgkCSffV5T3wImPTfhn2TeQzE-lu_L8,52
599
- cirq/protocols/json_test_data/KET_PLUS.repr,sha256=4RJb7-MiQjEXHAWWZr2ADjAh3sx-yBjDiFMysuqYuws,13
600
- cirq/protocols/json_test_data/KET_ZERO.json,sha256=IGd1lD9WjahoinpIwm5-MJHxOeWVAqjPP7-MtsfwsRM,52
601
- cirq/protocols/json_test_data/KET_ZERO.repr,sha256=Eb_mFAAl6WAoHRTWP8GM8M1NSPripi9iN7oRsYbjyCk,13
602
- cirq/protocols/json_test_data/KeyCondition.json,sha256=4n-CpHBqQW6028gXMLyNFwtsws2L4W-nMFcDumpNUpc,131
603
- cirq/protocols/json_test_data/KeyCondition.repr,sha256=-oP0cu3yLYfhCLkGyEBHs69MD53ieWbM-jzZH4x-1QU,47
604
- cirq/protocols/json_test_data/KrausChannel.json,sha256=KpwkT0v62A-szlcC6vTNKwSQxL0LLR_xK9KLlFpKMrw,703
605
- cirq/protocols/json_test_data/KrausChannel.repr,sha256=MTfDMU4wuUcPgpF_Ic0ZoDR95vcwODYGikaPMVEkTFU,333
606
- cirq/protocols/json_test_data/LineQid.json,sha256=ZglITwWO3eA7eoPvNcIkt0ZVALj7m3SgQUmsSBi62Rk,209
607
- cirq/protocols/json_test_data/LineQid.repr,sha256=EQ4_z67ASw4XWLl05qlHGT4ysysMtH1nht5sfXwYbwY,93
608
- cirq/protocols/json_test_data/LineQubit.json,sha256=FRphBwNwyT9G5AaRAEQUhSJs5pp5m7fwbFanHzHgUuk,104
609
- cirq/protocols/json_test_data/LineQubit.repr,sha256=5luUi7hiv7HmjPsu88aj7v4LID8nDOPQG1m7BIt6Klc,40
610
- cirq/protocols/json_test_data/LineTopology.json,sha256=zy-oVNfzkyc7DwLHfWXUNjxzTrmsQvFYv3UDb_rcoYM,50
611
- cirq/protocols/json_test_data/LineTopology.repr,sha256=6XRmh7knnEW1zeWssm26_ySTY7xyNUKkne_ol7otidg,30
612
- cirq/protocols/json_test_data/LinearDict.json,sha256=EqCoSR3SqwmTfkuqII-AP7iL0EObemfWvlFAfCAsX1I,520
613
- cirq/protocols/json_test_data/LinearDict.repr,sha256=nzooCij_zEBNKhKW6q33JahEvuHfLIKvzHOuG3CtmOI,126
614
- cirq/protocols/json_test_data/Linspace.json,sha256=ygvT3kNsZuq_PKyPRhRthfOHXCfsaYthGXlhdTsE9m8,329
615
- cirq/protocols/json_test_data/Linspace.repr,sha256=PJbvEv4bwJckZhaTTtgiuzI-9ug-fYXKi4FhbvSj73E,136
616
- cirq/protocols/json_test_data/ListSweep.json,sha256=I1_NvIs06X4xaZdswIvXb0FD_DopX54TPhSZ_MizMRQ,311
617
- cirq/protocols/json_test_data/ListSweep.repr,sha256=8pbPgdn325CqWWWHKO40KV1guu97zBABL_AL1E9CS8A,81
618
- cirq/protocols/json_test_data/MatrixGate.json,sha256=0wyhxqGnR-j5roWX58TC2mRwkulO8796D9nRGYbaMhw,3806
619
- cirq/protocols/json_test_data/MatrixGate.repr,sha256=et-yPv6f-XKxvNwxeL92QAamGzpTuLsxolFibenMris,243
620
- cirq/protocols/json_test_data/MeasurementGate.json,sha256=ojFPaCG2HwJ0WVoH0kA4LekVBagAEUvDdwY_do_4XzQ,831
621
- cirq/protocols/json_test_data/MeasurementGate.repr,sha256=TBX8BBb3fQbWcMDGFXfnWhm6qIoCjKjG47A0JLzTLzY,372
622
- cirq/protocols/json_test_data/MeasurementKey.json,sha256=6j_4eY5lfnhA2rVt0eWcYle50AF2kddvWP8zvlhl3wk,259
623
- cirq/protocols/json_test_data/MeasurementKey.repr,sha256=DiAyQ0u0LWepSi3KPgYhMWHlMRQqrXShtOSeHsUP4Pg,157
624
- cirq/protocols/json_test_data/MeasurementType.json,sha256=OjFtbTIm-EweRuREf6jV_YAL_0obxkmBUlI81KYCtps,6
625
- cirq/protocols/json_test_data/MeasurementType.repr,sha256=GKWPv9INNDbe8VHe-Ef3i1ykQ9aGIxaom-8Q3E4ptYc,64
626
- cirq/protocols/json_test_data/MixedUnitaryChannel.json,sha256=S44Yl3LDXyPuvCs_8oU0iA4hXvm4k11_FnQ-FwrE11A,2890
627
- cirq/protocols/json_test_data/MixedUnitaryChannel.repr,sha256=btyHCJZOc0KUvNHOCYqvsDkPi352tjy9O7Zf4XI5zL8,486
628
- cirq/protocols/json_test_data/Moment.json,sha256=iTcMbe_lKBpAKmcQT62y9CDwORvkoUgk_oob71CAKe0,897
629
- cirq/protocols/json_test_data/Moment.repr,sha256=6nuVloJ1MBxO-mWnLHymjO1Ylqsi39RrOpf_S95ccl0,109
630
- cirq/protocols/json_test_data/MultiAsymmetricDepolarizingChannel.json,sha256=FQ68e4brRCsjN_5CL53DeF14QgCqO4V2mjV6HoGMX2c,115
631
- cirq/protocols/json_test_data/MultiAsymmetricDepolarizingChannel.repr,sha256=nqLmF-C4XmYAfQ6-uV70uPnHj4fWmiP1axVyWb6DrJA,68
632
- cirq/protocols/json_test_data/MultiDepolarizingChannel.json,sha256=Iyhfj1Te8kmiohUbYDliUgq8eSoYmAd2flDtq1UopBU,69
633
- cirq/protocols/json_test_data/MultiDepolarizingChannel.repr,sha256=irweLwoQcgXjo3rauM_LFr6go18AmEFuUVoJrPJ167U,33
634
- cirq/protocols/json_test_data/MutableDensePauliString.json,sha256=8tacPXw8rBV16LtAAqgYbC4e9D6x9d_UAh4N6wAguug,180
635
- cirq/protocols/json_test_data/MutableDensePauliString.repr,sha256=beJuIhJ9znTlwmi0dFZVuNH5Gg08ldZyTaUrgEC56Lc,57
636
- cirq/protocols/json_test_data/MutablePauliString.json,sha256=Hh55iSakuxfvcR9o4H5jJjxJGLtH5YVPWeYUQ9Dez8Y,411
637
- cirq/protocols/json_test_data/MutablePauliString.repr,sha256=Z14lmAcnb1epu42k4IaluTWDYfE34R9ZbDUMprgR6JI,102
638
- cirq/protocols/json_test_data/NO_NOISE.json,sha256=DVqPv7EmW2CPheT6K6wXRIT06BseOJhEDnXnNbXIdr8,34
639
- cirq/protocols/json_test_data/NO_NOISE.repr,sha256=3tDPJlXEx0xQnRqISC0JA9o5ADWiUrtXSSy0DaxsTLw,13
640
- cirq/protocols/json_test_data/NamedQid.json,sha256=74fdT6slQkdk7mQN1OjXF8OrfGVHMe__S3H5K_HEqSE,68
641
- cirq/protocols/json_test_data/NamedQid.repr,sha256=94WW-0lj8ZgjNtMnJfTgsWsk4rh9uoUIkxWfEUT9Cfs,32
642
- cirq/protocols/json_test_data/NamedQubit.json,sha256=9-71jVCxE6vh9Y-q5sL_hqbDTX65ODZ9MB-env7jJ8k,51
643
- cirq/protocols/json_test_data/NamedQubit.repr,sha256=5Quly9x0wrDBQck_eQqf-wSBeV-2hrP8pCaL0ILZ6bQ,25
644
- cirq/protocols/json_test_data/NoIdentifierQubit.json,sha256=7uWqyPYDlSLDd_sPiIkvMVwtGjbZPlKZEl21wihWHkQ,40
645
- cirq/protocols/json_test_data/NoIdentifierQubit.repr,sha256=kYHtz0ffOnpMWi2o-64okh0aFgGCEcU5vvoJd_pvVs0,32
646
- cirq/protocols/json_test_data/ObservableMeasuredResult.json,sha256=ujXPPI_ImhnGUR-4_I13-l4fB06ymiC8M59busJd55o,1324
647
- cirq/protocols/json_test_data/ObservableMeasuredResult.repr,sha256=uKBxHZ9bIK-Uy8trgpJlI7e9gJaOoeHaasZaXk-L_ek,310
648
- cirq/protocols/json_test_data/OpIdentifier.json,sha256=c2gI3xWXFit000q2leQ2hu629u28oIwG-vDkhMKo1-g,605
649
- cirq/protocols/json_test_data/OpIdentifier.repr,sha256=tmqKctXBKHa_sLxCgwYBOD-UFh3VBd7_6VGgX_9MR_c,415
650
- cirq/protocols/json_test_data/ParallelGate.json,sha256=S3ciRlLrJ4qlFaTxh-N8riCUZzdevbYhuQ6dWAkxEkc,146
651
- cirq/protocols/json_test_data/ParallelGate.repr,sha256=FmcbIVImld4M45OsTWB3vw6wUlVrSyP1bVxiuNpaZZg,48
652
- cirq/protocols/json_test_data/ParallelGateFamily.json,sha256=XKp4GHHi_cH2ClHAWawt65c34jSV92sQPfi4ccMqJEw,727
653
- cirq/protocols/json_test_data/ParallelGateFamily.repr,sha256=Gpsub1A32f43nhteY7XiVKoSmDxfmAMjKS6zELi7lDY,268
654
- cirq/protocols/json_test_data/ParallelGateOperation.json_inward,sha256=lfnenzoIc07jdoGhqQRC0GRzDuRR3-kCmzZm6R7aar0,278
655
- cirq/protocols/json_test_data/ParallelGateOperation.repr_inward,sha256=uDcNTd-vqq7ztuREIStrnNWva9AZdsWTBFkHLqBMF6U,75
656
- cirq/protocols/json_test_data/ParamResolver.json,sha256=n3pj6g_tPUz3GMFtpyGdYmpI_j5s1EtViUq8miWxmDw,464
657
- cirq/protocols/json_test_data/ParamResolver.repr,sha256=wUFtM8qsZWlRZdPSCuS7zs7ZETS6glRCqyyIDZkWQWw,107
658
- cirq/protocols/json_test_data/PauliInteractionGate.json,sha256=GB0nyDvh-HIcfjwGXabcDuaFMPzIX34yjENuUWSp0Vs,264
659
- cirq/protocols/json_test_data/PauliInteractionGate.repr,sha256=SS8sW-Jci8dEiRFaE-d1IIBfErp07zGf-YF4mHyzCuI,54
660
- cirq/protocols/json_test_data/PauliMeasurementGate.json,sha256=ItpEiEGSiBMmmud0YYdT3S7EwVDADQTfUSsz1BSHnrY,907
661
- cirq/protocols/json_test_data/PauliMeasurementGate.json_inward,sha256=3-6Zz3miag760VWRohQExraDuLGGqt63edB6z_tjqJ4,718
662
- cirq/protocols/json_test_data/PauliMeasurementGate.repr,sha256=UiKJv71DKgJpPtnz2s7a7tuCJ2qOWHn1i-_e6wUuLoI,316
663
- cirq/protocols/json_test_data/PauliMeasurementGate.repr_inward,sha256=DM9k57g_OpoJGYPqU_9-lwa8LflIbBfmLLQI_MZou3U,202
664
- cirq/protocols/json_test_data/PauliString.json,sha256=v3EiJjP5VPjzkCvwU273p0LAI_MEkidJk_mQ_UNiZOY,1336
665
- cirq/protocols/json_test_data/PauliString.repr,sha256=EVRdOk_vwXyUeuM5DfrEfhEeP0xkXRpgEtMczkiVREA,160
666
- cirq/protocols/json_test_data/PauliStringPhasor.json,sha256=7VnUMndJeetKM8vZocs03SndGzootSkGJi1OJ7aueD4,1066
667
- cirq/protocols/json_test_data/PauliStringPhasor.repr,sha256=OgMMabgKRRix69peUP67Kn-Ru-F491F4wEikMBAGN64,212
668
- cirq/protocols/json_test_data/PauliStringPhasorGate.json,sha256=iQv1JVC6Fns8WNrX-GabE6kx9XZKFGYaDVf1IIZHHq0,314
669
- cirq/protocols/json_test_data/PauliStringPhasorGate.repr,sha256=BYA8PFj9nC7r-7FmY4qNVSsVHkhyHf4wMdpft0nic7A,108
670
- cirq/protocols/json_test_data/PauliSum.json,sha256=nR9mDEzTNyusHSgdAPNMIaTtgfEeMr5SqmLdQrwTECw,1178
671
- cirq/protocols/json_test_data/PauliSum.repr,sha256=69HYGBriUoFZhrD-nk0V_kLxjMPIKCVFrWP067InJVc,188
672
- cirq/protocols/json_test_data/PhaseDampingChannel.json,sha256=jDg59mvWzp1HD0tUJajOdKeAjefjpomffUIbFWd7jac,56
673
- cirq/protocols/json_test_data/PhaseDampingChannel.repr,sha256=vN_-T0lCAExBtHuZVPXYOK6h2krukXJ1sLjY1gx7iUg,26
674
- cirq/protocols/json_test_data/PhaseFlipChannel.json,sha256=OsPwcDJzsK_8NG8kO_JqmcMmxlBprGsEjDGFYNdVwSs,49
675
- cirq/protocols/json_test_data/PhaseFlipChannel.repr,sha256=e8fv0dg5519VlADuQT4KtNQ7g20vgtXeA8BUM6A2eRs,22
676
- cirq/protocols/json_test_data/PhaseGradientGate.json,sha256=ItZqMV0dCckm0rt9xn1mgbJK08bODtFmqE3yltwWDiQ,78
677
- cirq/protocols/json_test_data/PhaseGradientGate.repr,sha256=yFN_g2cKEm2meituU76iT2bKj1y3sFHVFPJ8OQn4XpA,52
678
- cirq/protocols/json_test_data/PhasedFSimGate.json,sha256=nrINsqITzy1AHuEEvPrsQEpIu-5kwGh5MngUAP_KEgQ,114
679
- cirq/protocols/json_test_data/PhasedFSimGate.repr,sha256=ogfTz7j5522Pwndh1785ZpZFfxY5X50vA6xyZrAAxUM,73
680
- cirq/protocols/json_test_data/PhasedISwapPowGate.json,sha256=KBEeJUr2pLAlD39snTCuNwkjirOETbInmSctetLLDNQ,106
681
- cirq/protocols/json_test_data/PhasedISwapPowGate.json_inward,sha256=TX-OfxAzGnzplTjic1UVWSuakhAXyp4v38-0MQ-fVCE,91
682
- cirq/protocols/json_test_data/PhasedISwapPowGate.repr,sha256=ls3jjhD8CJyBQeaMvmtgLiT-sxWVg-x1-xwkIstHYmI,75
683
- cirq/protocols/json_test_data/PhasedISwapPowGate.repr_inward,sha256=9XgdIrvAJKw7roVwlGzpZtcqWsHQYSKVvbaQchlCSRk,57
684
- cirq/protocols/json_test_data/PhasedXPowGate.json,sha256=ewn2xXnpIVF7NjvG5HjiaIYBbRCoa_45ZOzItaHifrU,108
685
- cirq/protocols/json_test_data/PhasedXPowGate.repr,sha256=zI_RuyoAIM-EslzgKf6aDeEE08L29zquNKeyRbfzEUM,77
686
- cirq/protocols/json_test_data/PhasedXZGate.json,sha256=rMzDLWKmNnTY8P5oLyqYYbUYhr-ZVAFrsGh6yVuBPKk,123
687
- cirq/protocols/json_test_data/PhasedXZGate.repr,sha256=VFYDGRF1Hry_RSHRARfaVJqwCot5N4UPxN6dLP9ubWQ,81
688
- cirq/protocols/json_test_data/Points.json,sha256=GNCyYvsJqDwWzAYMtZ7xOXb7V7W92-uKOZXTW0SAZds,269
689
- cirq/protocols/json_test_data/Points.repr,sha256=lu59UtH-fJdBZ63pycWOyVAYg0sZfFHjqAvfmcbFj6o,107
690
- cirq/protocols/json_test_data/Product.json,sha256=MJDuyFnoWdanmKRisswWNcQ-Ma3LA2NczLQRTSzNz9k,277
691
- cirq/protocols/json_test_data/Product.repr,sha256=qrZLz0E3ibSAbdFOnlNhoYciOqU8EhpbX0scqEz73Dg,107
692
- cirq/protocols/json_test_data/ProductOfSums.json,sha256=L7tvSt3w6hjqcqt6VFonRybF6oAMCO5n1bBfOqa4xjU,101
693
- cirq/protocols/json_test_data/ProductOfSums.repr,sha256=q5sXPQDDyUPDJUxo2BF8RZvVejfNB3KoaHmZW7IpASw,34
694
- cirq/protocols/json_test_data/ProductState.json,sha256=pGip8chPaRpl8wYwrK_jhy44P-NEEJOMsgXqb70LDCA,404
695
- cirq/protocols/json_test_data/ProductState.repr,sha256=PestrcrZ7FLLvqAlK9C0LnMJ-OghX7yz3spPKbmti2g,95
696
- cirq/protocols/json_test_data/ProjectorString.json,sha256=Tvibo1oeUEIYOU_wNVNvbmDJoATJZ3ObB7PxpPmBSDI,247
697
- cirq/protocols/json_test_data/ProjectorString.repr,sha256=swANVCex7bWLYu0efisAyAQuriH47AvIFCoA1XzhmSY,86
698
- cirq/protocols/json_test_data/ProjectorSum.json,sha256=Oc3fzi_4nZJkoFA3aTJvMMc1gb92ilfm8Nfrhw2exzc,296
699
- cirq/protocols/json_test_data/ProjectorSum.repr,sha256=TOx1KgSMfJ2P1fTUaCLaGHBZBnTzMbbTVNSc_fq3LpI,105
700
- cirq/protocols/json_test_data/QasmUGate.json,sha256=4Hlw1tWbxx4JN6ECHCZl6HCZjQKvLJCfDiq79nlzlko,85
701
- cirq/protocols/json_test_data/QasmUGate.repr,sha256=aOeuwnWe19GR-YphKZ-YSIZ4pbu88Lh9bk9EW7GNth8,50
702
- cirq/protocols/json_test_data/QuantumFourierTransformGate.json,sha256=q9hLmKiaQ6EkGE_IHX4R8Ajk8TudtylriUwN7YOOyog,94
703
- cirq/protocols/json_test_data/QuantumFourierTransformGate.repr,sha256=p9ZBLLvpwEPUWRAVnNYgadfWycnQNHr4To00M24wi1A,68
704
- cirq/protocols/json_test_data/QubitPermutationGate.json,sha256=Zg8E-L75KRmeEkpL17jxtehXWbg6XVXs7NlEiOrDBtA,114
705
- cirq/protocols/json_test_data/QubitPermutationGate.repr,sha256=L1791EEPRlnjTszhMwMGiAZWlIwxJfyxF0V0a0QvMt0,49
706
- cirq/protocols/json_test_data/README.md,sha256=P6S2QZFQbbLxPeygz-9q3QHXtddUhT8fhhhe0TG3YU4,215
707
- cirq/protocols/json_test_data/RandomGateChannel.json,sha256=Q3WaKzmlQbYp1E50Cmly7MZoCslymyHn-q1lP7tIAhM,193
708
- cirq/protocols/json_test_data/RandomGateChannel.repr,sha256=BAMMnz2qd4vH4oYSVH-Xvh-3rndU3QXxMqCm-Z_0hdM,57
709
- cirq/protocols/json_test_data/RepetitionsStoppingCriteria.json,sha256=T_TkyEk3_KbSZXcY3mLXw1SSAbbqJqa-4cWb8KG9Bpw,114
710
- cirq/protocols/json_test_data/RepetitionsStoppingCriteria.repr,sha256=mRdW3VnxB1QHMq_z4g9VEMuuhrI-d1CHxXr4oZZQ_-I,93
711
- cirq/protocols/json_test_data/ResetChannel.json,sha256=XopXjQRJPwy4EIEJ-fxxsCo6v_zUsOp8tfvjxLB8Mfg,51
712
- cirq/protocols/json_test_data/ResetChannel.repr,sha256=y_DTKiB-gSoZK8cfs56ryByM7nvMOosVFCv_ZvzAonA,19
713
- cirq/protocols/json_test_data/Result.json_inward,sha256=9Zk7D0QYXO6ON8BRizgzPh9IgcqFmNY8jzej_xiIyTk,7908
714
- cirq/protocols/json_test_data/Result.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
715
- cirq/protocols/json_test_data/ResultDict.json,sha256=7v7OztzxmNHNvjMvPC6A0l9mGyyXXZVFLruevDI4oQg,8053
716
- cirq/protocols/json_test_data/ResultDict.json_inward,sha256=Dt21hALykx1owFtqYzXFS_IRT-ZvIb7pNAkQv70Ctpo,7952
717
- cirq/protocols/json_test_data/ResultDict.repr,sha256=Rg_YVj0A-lvjkUVQLjITfupNaZ8ZeImVnvo7AZjG1WU,1861
718
- cirq/protocols/json_test_data/ResultDict.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
719
- cirq/protocols/json_test_data/RoutingSwapTag.json,sha256=aMYzQBB7FV2xYSkaqZCKGD-hMr1wCup0bdc9odMwYzs,36
720
- cirq/protocols/json_test_data/RoutingSwapTag.repr,sha256=jg-0sfn_2E2LqxrffPB6qpB7BB4Mz9bfVwQsfb465d4,22
721
- cirq/protocols/json_test_data/Rx.json,sha256=M2FSXDaSdnc4VLgS1a0fGB002JASCF1PGt0st6No338,53
722
- cirq/protocols/json_test_data/Rx.repr,sha256=YmJsb3LQGqNwKTWwLC0DgYP8Fwkb93iN8p5d3ucelbY,24
723
- cirq/protocols/json_test_data/Ry.json,sha256=KQr0YcErHPoIslazR9haDU2b_8bbsI2J4JMiS86xr9Y,53
724
- cirq/protocols/json_test_data/Ry.repr,sha256=8ksMXR9iMUL0NCdidg2CYmXlutN9dtOZcGwgF70gMVQ,24
725
- cirq/protocols/json_test_data/Rz.json,sha256=cQlA-IKDYKA5kb4HR0g2lewqt8VSHXN4XqgzmzZJP2Q,53
726
- cirq/protocols/json_test_data/Rz.repr,sha256=GC2K3WiTdUdx1HAe_Xh6pFAiwnvRnUqHpphwVkrQUsE,24
727
- cirq/protocols/json_test_data/S.json,sha256=Odmu6S8K3Bw21QNe_B66Ykq7FmSagtstyNM9Xkpx29Y,71
728
- cirq/protocols/json_test_data/S.repr,sha256=f_7YwqyoWCj0oZtwelOzCwxoOpsPakFriVlA8nxIGcQ,6
729
- cirq/protocols/json_test_data/SQRT_ISWAP.json,sha256=D063vfjZV3ghvmxfn_xNKlMqafpl_I7jhj2qwxW2MPg,76
730
- cirq/protocols/json_test_data/SQRT_ISWAP.repr,sha256=9hTJq3nvneofeURraNJL6FKSJkcR7Yclj3UkmHdWzcE,18
731
- cirq/protocols/json_test_data/SQRT_ISWAP_INV.json,sha256=2dSJApOTXr8YAyp4QNGVDOM-u_-i3d7giv5-KepEEOA,77
732
- cirq/protocols/json_test_data/SQRT_ISWAP_INV.repr,sha256=TvoXx6uHH8lv7VrOnWnJTNZAwvzUH2MbsvcbixJRp88,19
733
- cirq/protocols/json_test_data/SWAP.json,sha256=X1i1HMF2uVhPeh_K9cZatliHl-gCyd76vYoATkktn8o,72
734
- cirq/protocols/json_test_data/SWAP.repr,sha256=csJpdSIRJzgNCdQ0GSxVjkyULLkaJin-BCOv9XUedec,9
735
- cirq/protocols/json_test_data/SingleQubitCliffordGate.json,sha256=pk3iBcQz-PaXiVCaCCrThTkaLlz5aWeAnJRtNuJfeqQ,216
736
- cirq/protocols/json_test_data/SingleQubitCliffordGate.repr,sha256=gt5YFNElLlatEeVFzRt6c8KzcH6KtxMuyeRq3LK6bns,82
737
- cirq/protocols/json_test_data/SingleQubitMatrixGate.json_inward,sha256=oR_yF-BH50zFzKr7x6YmSzMdKLpgkssZMI5YpVfQUKc,907
738
- cirq/protocols/json_test_data/SingleQubitMatrixGate.repr_inward,sha256=yBed5edr3k_VaaKOJOf_nRxoAJV8IloTq58Qjt3GHfo,115
739
- cirq/protocols/json_test_data/SingleQubitPauliStringGateOperation.json,sha256=GW18FC6UgGIGR1bZLImAC410cXIXi1vRLYOGKea7YIo,204
740
- cirq/protocols/json_test_data/SingleQubitPauliStringGateOperation.repr,sha256=Cf0BGK1VW4ZmEgRZaPum1u530la9lAqzF5ljlw_cGYU,28
741
- cirq/protocols/json_test_data/SingleQubitReadoutCalibrationResult.json,sha256=VJA92-u50S7h7zpQ99nHh-piCP_PQS_V--FjrHFB9uY,334
742
- cirq/protocols/json_test_data/SingleQubitReadoutCalibrationResult.repr,sha256=Jzwoa3ZdvXXEFioymxNd6s5zfmsl7iJXFAo4RLIXn88,173
743
- cirq/protocols/json_test_data/SqrtIswapTargetGateset.json,sha256=vLzsG3NbPTfuQgB6WBhIEt7jKZiSPhfK6_Bh1nf8u8Q,1515
744
- cirq/protocols/json_test_data/SqrtIswapTargetGateset.repr,sha256=EXUCNTxyDqKbq4Lw6kbQbWgfT6YIkvB740z5CZjZ3Ik,875
745
- cirq/protocols/json_test_data/StabilizerStateChForm.json,sha256=alT_EJt0Ex6cxerka9_YJi9JhB6gvgLofH8Tl4dRw2E,251
746
- cirq/protocols/json_test_data/StabilizerStateChForm.repr,sha256=oDtEuV2Q7euJ1axVTB22AxFXwu9j99uqZutnFD19j-E,40
747
- cirq/protocols/json_test_data/StatePreparationChannel.json,sha256=NBMRv9lxsdWb8Os1hcxHloidKzC0bhalgIxhc6OPt5E,414
748
- cirq/protocols/json_test_data/StatePreparationChannel.repr,sha256=bMWj3BJjE3cnt4KxrwA9WjJWPLti4KcsuhKye0swDZM,115
749
- cirq/protocols/json_test_data/SumOfProducts.json,sha256=-_KMfwWm_Wobx_1K4Fy7PfQNt7JanvMtuvxFUAhmZb0,88
750
- cirq/protocols/json_test_data/SumOfProducts.repr,sha256=EK1HbGdUzaBXgjHI4a56TCmGopKkP3cSrOUwnRt_ccU,56
751
- cirq/protocols/json_test_data/SwapPowGate.json,sha256=I1ZVxusP8SzxwW2n3Z1XjIuguxGCld-mFuaTCnf30-Y,172
752
- cirq/protocols/json_test_data/SwapPowGate.repr,sha256=Zr6oWijotmJVMeywjUikY0dPwXUZnfBJ6UMDqZIEwLI,29
753
- cirq/protocols/json_test_data/SymmetricalQidPair.json_inward,sha256=RfD0Jy1OE8GRKrMHYLy5ADQsYZ2n_WUFKPy3YMEfihw,171
754
- cirq/protocols/json_test_data/SymmetricalQidPair.repr_inward,sha256=HoS6O8xbikCUU1k7CGjkCWNqBq0UUl-I5B1aQ7ebSXU,49
755
- cirq/protocols/json_test_data/SympyCondition.json,sha256=E3CHdecvRGhpukhJLxRUzwU-7j_xOV2SpYHCMc6oasg,1244
756
- cirq/protocols/json_test_data/SympyCondition.repr,sha256=bLvqMeovrpidl37-x46NhKkVbR-erYpZnVa1cf5g0DM,254
757
- cirq/protocols/json_test_data/T.json,sha256=cQ6Lr96RK4lbRN8w7BkhzwcyjbN3zEdOoAa1RPEmbEg,72
758
- cirq/protocols/json_test_data/T.repr,sha256=HNwqoQ8INnlYEf_he7OVMYgMGw_eQAjC1umsxuA9YRA,6
759
- cirq/protocols/json_test_data/TOFFOLI.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
760
- cirq/protocols/json_test_data/TOFFOLI.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
761
- cirq/protocols/json_test_data/TaggedOperation.json,sha256=aAOHhS4FRqMMoWW6gBXt94MJ8WD044K7VQbFgnehc_4,373
762
- cirq/protocols/json_test_data/TaggedOperation.repr,sha256=gTNiZlRQ2MVpAVsJTmvIZ1cyMDZQWe0KuP8mf97D0LE,85
763
- cirq/protocols/json_test_data/TensoredConfusionMatrices.json,sha256=Irb4yYzbuvaraH4VI0geh5FM1G7ieEkt0msF9XY3QbY,828
764
- cirq/protocols/json_test_data/TensoredConfusionMatrices.repr,sha256=UnEJkd9BUy501X3zY3UDdXkn-Aj8ZT76qh4YcBOEPMI,535
765
- cirq/protocols/json_test_data/ThreeQubitDiagonalGate.json,sha256=Giy1bSDyP88AxpvTuHUIf_ikXhO2XpDLO6XZs2SxrZk,147
766
- cirq/protocols/json_test_data/ThreeQubitDiagonalGate.repr,sha256=pBPE3IfuWgPtebLWcqpTguUrZ--j-hS1PDTTC7KB1hI,90
767
- cirq/protocols/json_test_data/TiltedSquareLattice.json,sha256=A7hGSskEasyAu-o3PBsRlFzFrRgpPOuuaFRNGns08F8,69
768
- cirq/protocols/json_test_data/TiltedSquareLattice.repr,sha256=zQir9B6BBbrIGKYiVAdnFstEBii5Q4AojSPYvXdrDJI,44
769
- cirq/protocols/json_test_data/TrialResult.json_inward,sha256=4Ab89MBflxH1yJMw31DkITTVLpRp9KDiv6VXksDca8s,7963
770
- cirq/protocols/json_test_data/TrialResult.repr_inward,sha256=7Dh72uey8KFCYabUIAlQYJhxpO8N4Iw41z44ji0Zgp8,1942
771
- cirq/protocols/json_test_data/TwoQubitDiagonalGate.json,sha256=IBdqZq_rM-rmW2k3G9cf9fW5BSgjgNbaNKk2EhjQCfU,109
772
- cirq/protocols/json_test_data/TwoQubitDiagonalGate.repr,sha256=jSNbYpfBtGObgCq2WDqZiMPwDkUiycT8NE14Pfim45k,68
773
- cirq/protocols/json_test_data/TwoQubitGateTabulation.json,sha256=fbiJdPGLwHGBcVYG-oZFCORG7QuNQmA6MfReqUtMcCQ,12038
774
- cirq/protocols/json_test_data/TwoQubitGateTabulation.repr,sha256=dF2MlMleKNobgDWF0mCTqH9JkdrXoQOqgKtfoMAM2WE,3728
775
- cirq/protocols/json_test_data/TwoQubitMatrixGate.json_inward,sha256=2E6o8tzoiTnt8ViQGn2PG421UEh8JBNSlYGz_qN79Wg,281
776
- cirq/protocols/json_test_data/TwoQubitMatrixGate.repr_inward,sha256=G6v-BqECV3dcPiIjNLRUQYrRVtyLt0HqD00fDXwzt8o,151
777
- cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.json,sha256=EK2bbhnx9EEnhJx16J7LjamlC6nUwt_DeKaXmcxcTyU,41
778
- cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.repr,sha256=qPILaenyLEonsD0rywxnEyICOS7ANVo6X0cb7Sg5sj8,25
779
- cirq/protocols/json_test_data/UniformSuperpositionGate.json,sha256=iK4MquwPDvWyDaEzkz7cERIc1xcbNZ-MScdttjHb2VU,81
780
- cirq/protocols/json_test_data/UniformSuperpositionGate.repr,sha256=lft1g9nxkx_63DFHixSQL8e8tIOoz4PXDW7RqEhGw6A,57
781
- cirq/protocols/json_test_data/VarianceStoppingCriteria.json,sha256=PVdbXD8P9qjLqBI1ULgEVGEHxZhl0ahduLASk2VhrDU,105
782
- cirq/protocols/json_test_data/VarianceStoppingCriteria.repr,sha256=8J4dzmOZuhZ8jjDISwSLwY3JqIFG8f_8HvLT7az-tqA,84
783
- cirq/protocols/json_test_data/VirtualTag.json,sha256=yd6Yr22V94ycuO8UoYnWkV5Y8LgX83M-6Us2mUj7wq4,31
784
- cirq/protocols/json_test_data/VirtualTag.repr,sha256=s_nfJTD_HDvQL0cCLR6WJNlnyazmn94JcY7SNHsC6fQ,17
785
- cirq/protocols/json_test_data/WaitGate.json,sha256=MxLHW5v7gpbBpEfKfIBJpOPkyc2A9dAS98AuDnXC6zg,98
786
- cirq/protocols/json_test_data/WaitGate.repr,sha256=1Ew7Ry0oWQ5I1crjJEC31iVQQUid3jOJqUF-T7t1Msw,38
787
- cirq/protocols/json_test_data/X.json,sha256=J04Nvrf7z3XSsO8Bo6M9vlEuBVpnNNbAf-pTRbuK3AU,68
788
- cirq/protocols/json_test_data/X.repr,sha256=-aRvGMrV63KbtLXNe1Yopej13KJGWbUtPk2p1cixHdQ,6
789
- cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.json,sha256=xX1bU6phU78ftaTQYXZdyTvMGfqz7DJOFvqVK2S635c,317
790
- cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.repr,sha256=TxzEMzHVcjMpzBOxHxOVpLuFH9AsJlsN664ckGhHaQA,263
791
- cirq/protocols/json_test_data/XPowGate.json,sha256=B5Qwp1ymyJafCOJPZcop-llaHnPI1AYRRcVaSpqu21I,192
792
- cirq/protocols/json_test_data/XPowGate.repr,sha256=Rd5IQsO60R40kQhtmzfiuHJ97mny9t-_ODup5JGykuw,61
793
- cirq/protocols/json_test_data/XX.json,sha256=aNryR4CwOwb2JROMElYJN_E2C3mOKmqYLFeJAFCEwzw,70
794
- cirq/protocols/json_test_data/XX.repr,sha256=NTwZnJd6uVeqWF7yd6PWEESp0Qlxx5M-T4iSHkQ84nw,7
795
- cirq/protocols/json_test_data/XXPowGate.json,sha256=AmnTH_2yIy8c-rt8WC4YZWmbV-WWJCJrxhgzMxH-NUU,170
796
- cirq/protocols/json_test_data/XXPowGate.repr,sha256=E_NsbpQbq06ydw0OAickWIVgI4xr7vLFWrs5n6SmFOQ,27
797
- cirq/protocols/json_test_data/Y.json,sha256=IuO7QER1c5GAn6RFWW3wcR1c41uc-yVCA6LDBPw9y_M,68
798
- cirq/protocols/json_test_data/Y.repr,sha256=n-PSf-8nfhNQf21iY1omHIY4qhmwXhtYGz_uGK69ZsE,6
799
- cirq/protocols/json_test_data/YPowGate.json,sha256=3KDI069fobCau50ybBxbpqHzVjadEeviLIILwDtsRj8,73
800
- cirq/protocols/json_test_data/YPowGate.repr,sha256=84-k5JQcph_7rfx2GEOtAOZwd4EjWYb6tFF3rjxSIgc,15
801
- cirq/protocols/json_test_data/YY.json,sha256=OavnJy5jOl3Tp---FMNrUzmNnZrDzbXpzHraDCwzjIo,70
802
- cirq/protocols/json_test_data/YY.repr,sha256=0dsJmae55jTVHUOTvrncDMU9boakhGsWP6Cd6q3_ofA,7
803
- cirq/protocols/json_test_data/YYPowGate.json,sha256=GW6e0KcTfVxBOjqY8MZ2RZPXnU_9pFFMr9bmSnXncGc,170
804
- cirq/protocols/json_test_data/YYPowGate.repr,sha256=cJg_5p7y2WLYAwbSRWHPBvKIHx6CZF3oYshjO83Q7Nc,27
805
- cirq/protocols/json_test_data/Z.json,sha256=ieNVrFbjyt3Vgj6nWCZvJ0iwsuAeNscz6zRfaHBpapA,68
806
- cirq/protocols/json_test_data/Z.repr,sha256=Esepg9w9ld9F5bSSzbY2VfVe5174Ul42nAefRZ3gmdM,6
807
- cirq/protocols/json_test_data/ZPowGate.json,sha256=wX8aUqY_A0i9nbz9gzgp7r_qVk7BsAneMq9kom3V3fg,192
808
- cirq/protocols/json_test_data/ZPowGate.repr,sha256=qRfL7Fg9Mv02nGtaAJNLzhtL4l6QyZ0v1C0N4A0kJtM,61
809
- cirq/protocols/json_test_data/ZZ.json,sha256=VaYRetX-YoVEt8d0N2TO4-IWFeiRj_xH8AGnPfgAjHM,70
810
- cirq/protocols/json_test_data/ZZ.repr,sha256=hANyYzdHlkmvVAFJU-erxF6CGJyDQrrHeMWXlJg0WvU,7
811
- cirq/protocols/json_test_data/ZZPowGate.json,sha256=XWPJnsaryyYIfPiQA6ln00Ie6p-G_ykN3MSX9ASfRp8,170
812
- cirq/protocols/json_test_data/ZZPowGate.repr,sha256=_5zZUxhZ2n9V5ulQ6sO69sFEi7X8_T4Z_HEQtpD7BQw,27
813
- cirq/protocols/json_test_data/Zip.json,sha256=3L4Lazj5oksJCit2cvXhwnNJSDNh2kCGtcCjoUwVQes,272
814
- cirq/protocols/json_test_data/Zip.repr,sha256=xlnQ1-q0aTS9t1mMO7vdCSj14QAuff1kTMCTX7TvzIk,103
815
- cirq/protocols/json_test_data/ZipLongest.json,sha256=NEPlMm8IPrDHBrvyASwq9IZu5fROzqG5u9PiTbe8vXM,280
816
- cirq/protocols/json_test_data/ZipLongest.repr,sha256=F-Ds7_1eqKgis0YvJqj3LwiXbkH8ZdP9k_ThmWsJL4k,110
817
- cirq/protocols/json_test_data/_InverseCompositeGate.json,sha256=04Jo6qCe2RCkOZZHP_jMqgSkCP0Y26ZdXOeU9UJuQd8,172
818
- cirq/protocols/json_test_data/_InverseCompositeGate.repr,sha256=MiivoajhEj7wtXepm3ZKJC2tKKN4LUFbmZBe2WQU4mg,54
819
- cirq/protocols/json_test_data/_MeasurementSpec.json,sha256=c03X4XXcc9xz8rqLHnlUeEI74JeDcT1AuafZUyqNOtg,1288
820
- cirq/protocols/json_test_data/_MeasurementSpec.repr,sha256=RO09cD6h-Th8dwtERQ6bPW8tVZFFUW8JngAzc-ASib4,285
821
- cirq/protocols/json_test_data/_NoNoiseModel.json,sha256=mgmgKTFYinC7Jy6tyVtLzDlNAs57OtgImnGLS3D__TI,44
822
- cirq/protocols/json_test_data/_NoNoiseModel.repr,sha256=gmrS4PKW2nLntZwr1egmF6on_dz0g8R_A_0hvllyD0Q,18
823
- cirq/protocols/json_test_data/_PauliX.json,sha256=ZMgvQzSejILeutxsN921hs3MR_lGotKm5WQZy1JpYJA,84
824
- cirq/protocols/json_test_data/_PauliX.repr,sha256=xhLaG7OF-9wEpRFw-Adsz56gOkn13nAueX-1STTFeHI,11
825
- cirq/protocols/json_test_data/_PauliY.json,sha256=baGT5Fp73wG7JDwAIdgHevmsOuuU9t6JHR3dRIOECYE,84
826
- cirq/protocols/json_test_data/_PauliY.repr,sha256=DWUDgFXr4_Ms1oj3ttCJjmbm5u2ttP4CI8EF07g7mXc,11
827
- cirq/protocols/json_test_data/_PauliZ.json,sha256=G1u-lbIVsfDH-qVue8tjY2X0jONeKx-7gjHW14fiff4,84
828
- cirq/protocols/json_test_data/_PauliZ.repr,sha256=tAnAqtqpeQYSaNEj0LhFYw63yzJZQHLqWIGK0nJxQ4M,11
829
- cirq/protocols/json_test_data/_QubitAsQid.json,sha256=4Q3Y4SMamfOPsLWJCR1id5XqkXaX-IaxF_Mbdc1uQOE,105
830
- cirq/protocols/json_test_data/_QubitAsQid.repr,sha256=zl0LkSVwGHAdx-Pyd6HNcZ9IsYBqBEvpRsEuosuIDTM,50
831
- cirq/protocols/json_test_data/_UnconstrainedDevice.json,sha256=1QyTPzb8XCpzmwY_qINFDV7B1WmeOoAxivp5UBecvp0,51
832
- cirq/protocols/json_test_data/_UnconstrainedDevice.repr,sha256=N1wr20BY2S2XC4NmOOLkHJbwbfyJmpwlBD15CCttx4I,30
833
- cirq/protocols/json_test_data/_Unit.json,sha256=WV_rtQ2tUJPzlq6kG3498qHQOpPXAQpXZ8uBZXQtjDM,26
834
- cirq/protocols/json_test_data/_Unit.repr,sha256=UzkB1npUVoSQ0s0JS8mBknRSSI8Y8egOClVegEfecss,14
835
- cirq/protocols/json_test_data/_XEigenState.json,sha256=INFjtLztdCsSICfKkomxsovoQCYdo8p7eoZSbagMVeI,127
836
- cirq/protocols/json_test_data/_XEigenState.repr,sha256=fsxe_-I7y_0MN9wTo89gbc3ofdVHjRd-tJlxUJo50ic,36
837
- cirq/protocols/json_test_data/_YEigenState.json,sha256=1mIWq2O_hOuOfCOdThTf2iNx04GemwlD-WnaWbG6Ahg,127
838
- cirq/protocols/json_test_data/_YEigenState.repr,sha256=xOsv4JMPz5zf4P9o2ezAROyUEVua6aIQYYCPXB3dZ7g,36
839
- cirq/protocols/json_test_data/_ZEigenState.json,sha256=DnBLzEfAc-tfaaVpBy8hd29Cn5NTDwcJwxhpRZ1SpZE,127
840
- cirq/protocols/json_test_data/_ZEigenState.repr,sha256=V2P3aMF1iBbzud8CUvnSVrBRt7KjOPbeWdeZKMRO510,36
841
- cirq/protocols/json_test_data/__init__.py,sha256=RIJ_YGR076gQ3AA0BBqlj_Uhi0iYoHu9KkFgzLY8kU8,653
842
- cirq/protocols/json_test_data/cirq.MSGate.json,sha256=G_roYqHu9XgZSu1lMZbInFsefVvgZfKuRubengXuawg,63
843
- cirq/protocols/json_test_data/cirq.MSGate.repr,sha256=grCt0Y_v0_26K-HgqtVzc8pRgS09z1s4JhjE-cAucoE,16
844
- cirq/protocols/json_test_data/complex.json,sha256=fGbU2uxufM6Pt-sg3sHazL0oiqusseIPOid-1sxi0Do,212
845
- cirq/protocols/json_test_data/complex.repr,sha256=A-Gf4uPuecYNJPvdQYJ694YCx0uy1RV1HD3MYN6WUlo,19
846
- cirq/protocols/json_test_data/datetime.datetime.json,sha256=fb50Dr0wfnkYrG_pBzUsIstWb9GsFHbpnh9eZKEqhAc,67
847
- cirq/protocols/json_test_data/datetime.datetime.repr,sha256=IDEKudpeojzrhU4klq49vtF1j5OaVObd85I2c50et1g,71
848
- cirq/protocols/json_test_data/pandas.DataFrame.json,sha256=IBwVTX_VHkXyjcNF19Douy-wTOoY-t4as44FAYNAucE,1476
849
- cirq/protocols/json_test_data/pandas.DataFrame.repr,sha256=c2a42YxLzFAM_H-2ERv7y44trdmXXhm4Ar6cXnFhbuM,565
850
- cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJTF_R9lRheE2MPNq7AHzA-xOs8,110
851
- cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
852
- cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
853
- cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
854
- cirq/protocols/json_test_data/spec.py,sha256=b_9-k4vW8eHi8umSwo7ryDAkjvUb74aW-UvZRKONaXY,5615
855
- cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
856
- cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
857
- cirq/protocols/json_test_data/sympy.And.json,sha256=eaM07ihBPjZbn44gRIy6TbXeEwblF-QN32Jb1ATAQ5Q,178
858
- cirq/protocols/json_test_data/sympy.And.repr,sha256=EFN2FEj37avIYn5AUyYycrQdIXANEABEdS2xKjQaKRc,47
859
- cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
860
- cirq/protocols/json_test_data/sympy.E.repr,sha256=5TZkWsfhPeqaM5BUy4U_PrJOeJi4OogjqHSHlNPwMb4,11
861
- cirq/protocols/json_test_data/sympy.Equality.json,sha256=QB4ZR-brr3-DYLIDlzesq9Rcy3GlgU4YS12psrzur5M,183
862
- cirq/protocols/json_test_data/sympy.Equality.repr,sha256=5SidbSHI4xbF6XgSKVMVOYfdtmJSYtX9rhrxGYI2wJQ,52
863
- cirq/protocols/json_test_data/sympy.EulerGamma.json,sha256=nEbXjVXJ27G_bX3SQp1-o7Do113yClYrGrOVwDTgvjE,48
864
- cirq/protocols/json_test_data/sympy.EulerGamma.repr,sha256=GIUTA9f1CDmN44kIFYyErdsGCj6NmwXJww7R6MUDYvY,20
865
- cirq/protocols/json_test_data/sympy.Float.json,sha256=HFkBmN51ZoGF93U16X_9vRUVkNsputnOfxTVP-LlpQo,61
866
- cirq/protocols/json_test_data/sympy.Float.repr,sha256=H2uK53HNWTF4tAG6TTP1Wuhvss-aAqWnI26sLNWOG60,52
867
- cirq/protocols/json_test_data/sympy.GreaterThan.json,sha256=RceHlPzCXOgE-hRrW9BMsXgR9DF24ok_Q_ptbMHtZec,186
868
- cirq/protocols/json_test_data/sympy.GreaterThan.repr,sha256=1O4MH_mCEhNaksrE_Fau_JW-mENwZSpSEZb2D61OsYs,55
869
- cirq/protocols/json_test_data/sympy.Indexed.json,sha256=p678vhUV1kP-O7TL85V3OWfGDxWP6p58sL4dX3K1e8M,270
870
- cirq/protocols/json_test_data/sympy.Indexed.repr,sha256=oheRHGYZc1SRGSr7UeVbg0SAuQM-z4qNbqRlzUKByRw,68
871
- cirq/protocols/json_test_data/sympy.IndexedBase.json,sha256=ROJjG422YZbFmC4AWbQN9cMQkXC50VRIbo_Bq2OifOk,120
872
- cirq/protocols/json_test_data/sympy.IndexedBase.repr,sha256=4YW8dM4s85Di6x9B8ZBV5b3Lxccelt9Y-C5U4OlVygM,36
873
- cirq/protocols/json_test_data/sympy.Integer.json,sha256=P1T8fJhXoMMN9RwTCXNAVsPA0022btcv1NkyP5QA7_0,56
874
- cirq/protocols/json_test_data/sympy.Integer.repr,sha256=dabVVMIK3-iXbhD4-8GR573r8CXfC2gyTu5GX_8JoFs,21
875
- cirq/protocols/json_test_data/sympy.LessThan.json,sha256=pYMllJqZcjAcH6-EU_N7lmcyQkR4pAXwH-UXaEKveaE,183
876
- cirq/protocols/json_test_data/sympy.LessThan.repr,sha256=UiCWBJlPEM1mTrXODmmHdigaHjv8olz9hodXSJtfPkM,52
877
- cirq/protocols/json_test_data/sympy.Mul.json,sha256=v6ync9FPSpGCMm215OFP6Ys-aNzZEUfoaJjQvxjGwJs,794
878
- cirq/protocols/json_test_data/sympy.Mul.repr,sha256=PyuiEzSnRFkhTO43ZUyL5H63mWEIcPSYrsEtOSsLdQ0,179
879
- cirq/protocols/json_test_data/sympy.Not.json,sha256=pbGra21C3e6nYfVLQPSUZi6-fGjDMjkouRpKqZsvy8w,112
880
- cirq/protocols/json_test_data/sympy.Not.repr,sha256=4np2NPnSsMJJRKO1W1ez5Fsj_HKzDnItzfNNLhhYeyg,28
881
- cirq/protocols/json_test_data/sympy.Or.json,sha256=ldjgZWPfy2SxrPtPIAoD5aJ5r5zUlS52K1FN4IQWyr8,177
882
- cirq/protocols/json_test_data/sympy.Or.repr,sha256=_jBJmKzI6kOtrG17Fme6LcTRZa7A3L2rgBoqDBKuZ94,46
883
- cirq/protocols/json_test_data/sympy.Pow.json,sha256=9t2ho1233pZBRu42LWfplkLZb4mqmRkQQ72dZx28GeY,612
884
- cirq/protocols/json_test_data/sympy.Pow.repr,sha256=Pq980YU8aHzUv5j_BUmwDHeGgzVi1rXX8N06Uqc_exg,148
885
- cirq/protocols/json_test_data/sympy.Rational.json,sha256=Nwgk-Tu5ycAjHhuhkokNFx4nIl4zuw4QTwMYiTLIZvc,69
886
- cirq/protocols/json_test_data/sympy.Rational.repr,sha256=2ufFnZ-Grjz7r5rmHfSjvgbrjfC6tsB8c0ed0K3UsCs,25
887
- cirq/protocols/json_test_data/sympy.StrictGreaterThan.json,sha256=fE-e7g6TkxwRGdFGvJqmiL8atgxtgGb9zmoFBHzABvs,192
888
- cirq/protocols/json_test_data/sympy.StrictGreaterThan.repr,sha256=ceYzWJ53MsbVmGLzL-bx52SomvkvPyxqs5WTGpbNp14,61
889
- cirq/protocols/json_test_data/sympy.StrictLessThan.json,sha256=ygJAkBjja77dyq0h7_FElht2PMsAOj5_JP0Nhv_x-no,189
890
- cirq/protocols/json_test_data/sympy.StrictLessThan.repr,sha256=hm0clQiNf8rBDDOfCPElcRAkscsGKEKFRBffQydLwRQ,58
891
- cirq/protocols/json_test_data/sympy.Symbol.json,sha256=MvEdH0ou6Z1CRhKrTcPAABSlDC8BZHj-R0PdD34QX-s,118
892
- cirq/protocols/json_test_data/sympy.Symbol.repr,sha256=vnQ0m3ghzzcMgF7aQqFAIX44BKNzAKGArMuTLjOypKc,41
893
- cirq/protocols/json_test_data/sympy.Unequality.json,sha256=Bd2vedLFPwZuWyIcipOYXT6G3wfTj-_I8HmoZ0_pBLY,185
894
- cirq/protocols/json_test_data/sympy.Unequality.repr,sha256=PsC01doMaEuySfnFUQhHdcAq9tlmLzSdQ8WKe8PUaTM,54
895
- cirq/protocols/json_test_data/sympy.Xor.json,sha256=irgOYOU5To1SNNxdGC_mRveem8RpX-dn8VUThzJOFZY,178
896
- cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPWquua5VsbJ8V5slw,47
897
- cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
898
- cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
899
- cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
900
- cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
901
- cirq/qis/channels_test.py,sha256=x5pM-H790sck8uzon0dp4zHwLGxvZNZuJNGzjxw1rcE,14092
902
- cirq/qis/clifford_tableau.py,sha256=fD5JCdQgJ5801Oohm3rl0bi83E0XarfuF_iJXTiH1oA,26232
903
- cirq/qis/clifford_tableau_test.py,sha256=sHmHC3APFc5tpAkSSpVsywVgvAnkg5cYcj8KQjifcBI,18440
904
- cirq/qis/entropy.py,sha256=KFMp9oH_4_q7emYiD5wIVRZFpgamyBXrA61_Ul7XGCU,3954
905
- cirq/qis/entropy_test.py,sha256=FEx-cK8LMfj7iDwX3u-60U_Kg38l00K3uJfkLTQbuKM,1673
906
- cirq/qis/measures.py,sha256=JvqbqMAlPeKlRNH2jPEpHHWlSPN7Id3axsSeFw7z5ik,12257
907
- cirq/qis/measures_test.py,sha256=avHuP1sbU_uOnaJDMQFoQULPO7Q9npOUGZgZmXigHJY,10268
908
- cirq/qis/noise_utils.py,sha256=wakkdQdBzOUWCf71sCxMCWwfPPAnJi5bNYsXDzGzkx0,3680
909
- cirq/qis/noise_utils_test.py,sha256=EX392K8scTM7gpSyfTk6KxH5OHA2zfzRQ-Hb2KiT1mU,3391
910
- cirq/qis/quantum_state_representation.py,sha256=dDWjauyL5WIGuPJ0eCU-LSIh5eG3nTtg0tXdjbcvxbM,3238
911
- cirq/qis/states.py,sha256=m_pkBFBX6FjuZkJf7e64PemCAlpnzC2IUvoxu-aKilQ,41908
912
- cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
913
- cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
914
- cirq/sim/classical_simulator.py,sha256=zrkFEiCuRo1lbO4sx6WVi_BQb120Dm18t8iRjrCGWPg,9335
915
- cirq/sim/classical_simulator_test.py,sha256=FzQlf2hsyOjn0KL3QGpzXFPzJ_n73G5RoeuDxSV0-6E,12703
916
- cirq/sim/density_matrix_simulation_state.py,sha256=XRxKsKq13OlXR7429WBbKps_jmOoCBRa6U9PzYrYrTc,14065
917
- cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
918
- cirq/sim/density_matrix_simulator.py,sha256=tBXKxxt_RyUXfZPqgIY8BcwOR8oguM9RfywjxAl7gfE,17564
919
- cirq/sim/density_matrix_simulator_test.py,sha256=6m9V7ujqy-PML8fAi-42y6OI2sdeWl4TpLSypOHpJPE,61348
920
- cirq/sim/density_matrix_utils.py,sha256=miwBOle6XjA3VdfF_wdAj1xeSGT5QPwYpjrZ_q5b2x8,10273
921
- cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
922
- cirq/sim/mux.py,sha256=lZdA2wczdnK40GBTVtCMu89-6Ow6j6LvPRxG2pPWIE0,12509
923
- cirq/sim/mux_test.py,sha256=uJUUnE9qg10rF0pGWo_bAWhp8JzsmOGW4hFRZeTKwdM,13680
924
- cirq/sim/simulation_product_state.py,sha256=ehrEXLCZkcthtdYMZTZragWsPmsgzxxnmXuPQNEEg-k,7052
925
- cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
926
- cirq/sim/simulation_state.py,sha256=lnOKBgwheQnl-iaGLxys5AVhul04CM_8VIHiUbdLd78,12659
927
- cirq/sim/simulation_state_base.py,sha256=QYlVrDkW3xC7tSG65WySpW63_1HdEAEMcAhGXeKE-KM,4180
928
- cirq/sim/simulation_state_test.py,sha256=dGS7F9IjEMyHp_WEJ3jtY7nCM20yY6Lt0rh3C3AUZG8,7430
929
- cirq/sim/simulation_utils.py,sha256=hsR4ea2eERW3ugNPSheE0bNBYEcJl6US-a6rmu7CSOA,2598
930
- cirq/sim/simulation_utils_test.py,sha256=iBJJxPs0J2HVpAIvuRwg_kiq3-VjhWSJhOM8irQVAkQ,1332
931
- cirq/sim/simulator.py,sha256=d5EFMunjzPATr5p3O4e8x0c-Ee3Bd3XQeOfyPXBwPsQ,42046
932
- cirq/sim/simulator_base.py,sha256=KUkNDra8sSIPl3i9BTkXa8RH45wr7Qi-oc-2UGyDWPQ,18186
933
- cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
934
- cirq/sim/simulator_test.py,sha256=6Yna8Yuhz9iWIByPbLrFJct7f1QSrhb9JSIo6Beo6EI,18609
935
- cirq/sim/sparse_simulator.py,sha256=ELRhQblGnEfyGMJuM0QZ5Q0zlXEHuW6LovWZ_A6TfuM,12956
936
- cirq/sim/sparse_simulator_test.py,sha256=epPvf_e3TVQTSBDq82lBZj4oCHKt_JX1oZGfOYRkkXI,53806
937
- cirq/sim/state_vector.py,sha256=-uPCN7MjorKZfD-LZU3-0Ld74zUgmOWD4cGx5BxB1HY,13428
938
- cirq/sim/state_vector_simulation_state.py,sha256=e4it_DT1J-30S3OX_gfMJiWAttFaVOMEPQ-Y1ARWnDg,17616
939
- cirq/sim/state_vector_simulation_state_test.py,sha256=DyHEbI1ahfjV-jqE9Iak2qKWYCM1IsirrbSuSCJ5GWA,9861
940
- cirq/sim/state_vector_simulator.py,sha256=uHK8nEWAu0oOlgGhwHsnwE05BxY1X2GEoMpyoC5K9DM,8201
941
- cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
942
- cirq/sim/state_vector_test.py,sha256=AF5LbyRymSjuFDG19gPetp7morKLl8v5yfgf17TFCNg,16586
943
- cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
944
- cirq/sim/clifford/clifford_simulator.py,sha256=vE25toK-IROCSFgnN5e7xY_fPUqV3kDx7gCfuQCNyx8,9857
945
- cirq/sim/clifford/clifford_simulator_test.py,sha256=E-OGm0ec6qBlGdr4cepouERc-4PkwT9399uZj_FA6M8,21381
946
- cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=YO_I-k-WeIqbwRapUMoJxKA3B93uof8ewbBvVNNIu8M,2159
947
- cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
948
- cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
949
- cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=P6MEakfiHrlVYyoNDOJt9_txIdq9y87WD9lrtJIcM48,3874
950
- cirq/sim/clifford/stabilizer_sampler.py,sha256=XfJ2Y0bpCZTdAmiOVMIYPKDQ5SII5EuDJ9WFXRC-8nM,2540
951
- cirq/sim/clifford/stabilizer_sampler_test.py,sha256=sNqJyUY--wqHjsPfm4E1YPBll1-GirvxKFz04n5I0f4,1338
952
- cirq/sim/clifford/stabilizer_simulation_state.py,sha256=mqADFqLHg2Kit9EsuhNp8ntZQQnTRXc51ZQ9LdqQ4PM,6723
953
- cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=dsphoXTaIwRCjprGJQirSs0qeVKHlni_pt_GZJn5Vpc,4317
954
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=K3tmFeEAwuZQT3C48lHED67B11IHHeWsGoj4WRIsfLY,14029
955
- cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2xpzUT7RG6P6UQw_61c6kU,3149
956
- cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
957
- cirq/study/flatten_expressions.py,sha256=XUvPFOnuV8jOO2ZyvL4dsD3UWJXhyN2YfyVyq01BJgQ,15582
958
- cirq/study/flatten_expressions_test.py,sha256=bJZKjgz_brS71Zf-cdpI7MCY6TMhzilHp96Vhn3DoOg,6078
959
- cirq/study/resolver.py,sha256=h0K-oymS620W2vLlC22FOe8TfraLNF3N_F-Ra24y8os,11790
960
- cirq/study/resolver_test.py,sha256=VjZn0408VHq9JLB5Che2d_cZhO4JchnrMgnyLL6gjtE,10531
961
- cirq/study/result.py,sha256=IjeBZ5eiYC92xDG8VbbH5avZzJl0nh_rArZu5oOIIHY,19285
962
- cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
963
- cirq/study/sweepable.py,sha256=TXry4R8jDqhbq_FXPFdLlF9vEHA0MQrmFbJd4K6PlPc,4358
964
- cirq/study/sweepable_test.py,sha256=ENv03_GJmbUc_ukJoqfgG-H5C_yyx1jCcvxohSMyQVU,5502
965
- cirq/study/sweeps.py,sha256=q6wHpIEjK5sQQdxTERFqp_BxDtiHKVQ50zyS7TOrYa0,21673
966
- cirq/study/sweeps_test.py,sha256=1DZboNgbOMvnP-UYzjVN8uPCbkuj0vw7gKi2FW7fMzQ,16160
967
- cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
968
- cirq/testing/circuit_compare.py,sha256=7Y9agOcdxDnOvigN58OH9NNvlW-HGTGLjZaj0tRVep4,19175
969
- cirq/testing/circuit_compare_test.py,sha256=yGf1ZqiYzvEj_mepbwHo230d3mwb_4N7K0E_Lhxms_Q,19702
970
- cirq/testing/consistent_act_on.py,sha256=aMdeUGXQFQpBAEiKPOQPS75HlKXR8cgA7KDJCUknhmw,7733
971
- cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
972
- cirq/testing/consistent_channels.py,sha256=hrPRjaabPko2l0xqqkJ8F3OM7pornkDNCP-St2noHXI,1737
973
- cirq/testing/consistent_channels_test.py,sha256=KTh4v1esq6Wy01QnRQJzL74FGmcnfrKRJStazZ4UcI4,3486
974
- cirq/testing/consistent_controlled_gate_op.py,sha256=P3-xUwoWbXEjR_e5EHWNEiFc0rI9CKAxd1CuCOGCWvA,2676
975
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=L1ZBrgcwYoaHiwfhc9PBDPQJ2zwXXp908siovKeco1I,3251
976
- cirq/testing/consistent_decomposition.py,sha256=FecPij4-79tDS76tumbzFmCXVNcdDNS7DkTFzKF_qbQ,3704
977
- cirq/testing/consistent_decomposition_test.py,sha256=QZ6dp76_X00a0z2Quu_jjwDnCfq5MQo5ochC6do9mFo,3819
978
- cirq/testing/consistent_pauli_expansion.py,sha256=NVloOg1I8LGGIEoZxvtUQIUHRvMgo9CNgw5-atuXGsE,1580
979
- cirq/testing/consistent_pauli_expansion_test.py,sha256=tElSpORomKnd351GsdBUZUtUXViRfN4YVAZav34Ocu4,2422
980
- cirq/testing/consistent_phase_by.py,sha256=mxZiGh5NV4CFpta8mleJc0yLSWrwVUMsyD1c8v229vw,2085
981
- cirq/testing/consistent_phase_by_test.py,sha256=ik887z3ZsJs949Rbx6gvdIicNf5pc6uyyUqKgA3IfvQ,3272
982
- cirq/testing/consistent_protocols.py,sha256=xf9F41rUENCj6wARpmhWG_-xg0kH5P2tfxwNNAiH2b4,7754
983
- cirq/testing/consistent_protocols_test.py,sha256=1lizbN-A19lY0Ii9T2ulySbM4SMAp_rl2RrGC2sT5vA,10003
984
- cirq/testing/consistent_qasm.py,sha256=oXd20Hfkjkdl9n5i4tgxIwuE5wx1-2GF8XHXj8uCpG8,5041
985
- cirq/testing/consistent_qasm_test.py,sha256=KRIP7WbaPu8QZ-KalZvV6kQSjLmtjzhU6Tz51rnTaHw,2883
986
- cirq/testing/consistent_resolve_parameters.py,sha256=fa8_3KjsS1O0vPJ7P68FBjg56f2IqadSCYfU0ClnoKc,1974
987
- cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
988
- cirq/testing/consistent_specified_has_unitary_test.py,sha256=fKSSn_cZjcJCQBtKFZfU5hBNlEeJompD3mKs6Grju8o,2529
989
- cirq/testing/consistent_unitary.py,sha256=hDeMI5sVJB7RsNMjiEv5sGRCKHUeigq0WvSeSro5pmc,3249
990
- cirq/testing/consistent_unitary_test.py,sha256=DwlqkwYZL5KM8J8JJXLpMBP0x56lLk4Znziyj-xd81s,3260
991
- cirq/testing/deprecation.py,sha256=neyww8gBZZmgwPX8xPw8Mg4HgG0OXwSixhOAHnIU2ks,2152
992
- cirq/testing/deprecation_test.py,sha256=bWq_VY-rGnfvdeJVqdkMIDzMtxQRj9rdR6gu0kCHtzo,2166
993
- cirq/testing/devices.py,sha256=i3v7hOGgblJXxOdZhWeAd-XszsF2PX4-ooTmqUdkAoM,3259
994
- cirq/testing/devices_test.py,sha256=TDtCNDj4VemrpjJxJsUgwz71crvpJLM3h-HDoAvfZFo,2853
995
- cirq/testing/equals_tester.py,sha256=3rTAyPAQs-Ocy8v26SzSSjmaqz3ROk0oZw0DpNWaWs0,6587
996
- cirq/testing/equals_tester_test.py,sha256=9Rl9i-ccl7OAF_aXbVUiBgF08BeHJfn37I5Nk1etRag,10366
997
- cirq/testing/equivalent_basis_map.py,sha256=y9OlbBOWn-AC7l5x4iLfq5T4q8SxaWX_a-__QjL8_p0,2633
998
- cirq/testing/equivalent_basis_map_test.py,sha256=4oRrDR5e9RilUF5QEGg5QAg-pCpIeALHGmUPLd3CtrU,1487
999
- cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
1000
- cirq/testing/equivalent_repr_eval_test.py,sha256=FTe_1O9sl84cSmTuxPP8m38P_3mzXrF4yU5X8Bj2wnc,2964
1001
- cirq/testing/gate_features.py,sha256=39lXCy54-V-b7WT0UC4CQaNCsFLHDLagJVVMG8fCz98,1367
1002
- cirq/testing/gate_features_test.py,sha256=yqtiMXKqktYnpkceXQnmkBixHf7DO_RRbJ4ccuKd0jQ,2314
1003
- cirq/testing/json.py,sha256=vFCtegpsu7LG2Bc83Nxy_dM8AuIpxA0_10PWE1vIpVE,6639
1004
- cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
1005
- cirq/testing/lin_alg_utils.py,sha256=SiW2C_ugq3OKfyioD48INjILg7AjP24Jz6q5l6L1uEI,6353
1006
- cirq/testing/lin_alg_utils_test.py,sha256=t5C9Sx51l1xscYzmTzrJj7wmYucAIrHHgyW4hF8eXUQ,4113
1007
- cirq/testing/logs.py,sha256=0nTTrOQX-T5rspj7kZxtGsqPQg06ZddRAyABT03tYrI,4053
1008
- cirq/testing/logs_test.py,sha256=iBFaO_cwddBlaCYhX13GL9nqRBWeGPekT9hAuZOo1CQ,5719
1009
- cirq/testing/no_identifier_qubit.py,sha256=aRnTp9a7BQguSdZzcGV4_W-1URjTHTYsa-xxov2H4_o,1195
1010
- cirq/testing/no_identifier_qubit_test.py,sha256=mNjvPIqh-G_t8TsWIa3-9J2i4rqpt9CndKDBb7dnz6Y,941
1011
- cirq/testing/op_tree.py,sha256=fb3bOoTihGWp_NvPHekI7s9YZIaBoiufDVhh4ARCfhQ,954
1012
- cirq/testing/op_tree_test.py,sha256=MwDpi5Lw1e3Y_-9Psx9MPvbbW2x4JlOpp7hl8mBvOQA,1073
1013
- cirq/testing/order_tester.py,sha256=_qGL-kb676FBdn0Bv2Bj0emRKQeFcGdJcDyLHsVu10I,6690
1014
- cirq/testing/order_tester_test.py,sha256=qHqIM9FoaOBtQYA2jUUjP-mSVCLRp1jhUyxlaJF-EO0,5111
1015
- cirq/testing/pytest_utils.py,sha256=I3R5oGjZpoc2eWzEVU940hnDLwlDlD5cSa9-B4le-1I,1920
1016
- cirq/testing/pytest_utils_test.py,sha256=LbgQP5UrMapU8iB53DzBdtg69lGKnfCIjGM-yJzEp54,1314
1017
- cirq/testing/random_circuit.py,sha256=UnMFu2Dsl2JQEp_5iy75cjOiwBAPRrPPuXSYvEmU0d4,5900
1018
- cirq/testing/random_circuit_test.py,sha256=ZElBd-x7l9J5NiaP9O35b810zo2liC6f7JU2-dupSzQ,7026
1019
- cirq/testing/repr_pretty_tester.py,sha256=dtk713qmE87Biaez3c8R83Wb7tlb4xWFfzt44iKkbto,2899
1020
- cirq/testing/repr_pretty_tester_test.py,sha256=wvwqD72hnAJe7Vg90goZ1Voz5PNGtWELOxAyEn58ivo,2226
1021
- cirq/testing/routing_devices.py,sha256=uIm0j7GcChiHog9-c7kyIw9qdfBEmLLETRF37UwLviY,2530
1022
- cirq/testing/routing_devices_test.py,sha256=qWyXzI8UI2_HhzDGkVZLyQz6LtHFxwho6ZHTlq1gBHA,5599
1023
- cirq/testing/sample_circuits.py,sha256=O0K1wNjG6dAqvXlwYhP4AmS7Y8RmbfrSKwT9y7Cvaos,1585
1024
- cirq/testing/sample_circuits_test.py,sha256=IMz72CMXJeRt7Eg1rRB68hFV1v3k7OQpYUyhqmfjNpo,876
1025
- cirq/testing/sample_gates.py,sha256=XM5v31XdW_HOtvmp24QNgONf8_eQhHN_BzgcEK6Xp-g,3280
1026
- cirq/testing/sample_gates_test.py,sha256=Nk35G5th4OJebzkGd7edi-bbbM0nO4EryUJUkFzUcbw,2377
1027
- cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1028
- cirq/testing/_compat_test_data/module_a/__init__.py,sha256=hiodvWwXhGy7bG6L5CrM1vC3UIHY351RuK4As_joaMk,415
1029
- cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
1030
- cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
1031
- cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=QPjVtgaK3kM9SPi3NocWmZ4FGh_V6Ct5qDHZkDIeCCU,159
1032
- cirq/testing/_compat_test_data/module_a/module_b/module_c/__init__.py,sha256=InVpoxhxUpAKUFiY_M6DK6cCw8Qgxv6JEYAeUQ08rjI,88
1033
- cirq/testing/_compat_test_data/module_a/sub/__init__.py,sha256=yJoMq-mlYtYsUxms4ItX2NeSRrZYirmc-9sZ9AV0oCw,124
1034
- cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py,sha256=ERf76Zh2nhGeoGky01MHwYVdhZZZG0gpqhOWKhp1Mvw,155
1035
- cirq/testing/_compat_test_data/module_a/sub/subsub/dupe.py,sha256=L7pscpZJYh5jPDgnLF0aecWGJ7G8-IqkdAhjXYHCbog,77
1036
- cirq/testing/_compat_test_data/repeated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1037
- cirq/testing/_compat_test_data/repeated/cirq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1038
- cirq/testing/_compat_test_data/repeated/cirq/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1039
- cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1040
- cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/repeated_child/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1041
- cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/repeated_child/child/__init__.py,sha256=8G8BELwcj3pa6VIhrqjPX4KnhiCuPbe-JRR4_R8RvM8,82
1042
- cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1043
- cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1044
- cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1045
- cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1046
- cirq/transformers/__init__.py,sha256=QjYovkmQHRi7D6nPHkWrszVBM_1__thvOXG4wcYvX_E,6905
1047
- cirq/transformers/align.py,sha256=qb6tOGydFE3gXwfutND2gKSz5_w7ImRHtxaoU85FRgA,3331
1048
- cirq/transformers/align_test.py,sha256=AI26PxERbtJDfjKtoz17xVAKn6TSr-9pyImqfr5LJWc,7686
1049
- cirq/transformers/drop_empty_moments.py,sha256=B_wGBEnhc9ILLDwxNsgt_13aVhhDYs1g9JzDzdD9Nrk,1518
1050
- cirq/transformers/drop_empty_moments_test.py,sha256=G8pZmTfi8NG2NpGz_K3LZu5NQoqa-xPMCuZjwEu07xk,1907
1051
- cirq/transformers/drop_negligible_operations.py,sha256=pd9fkVRrP4TX7MxwKfmFPiwuvre7vEHW0wqD8wDK89M,2084
1052
- cirq/transformers/drop_negligible_operations_test.py,sha256=gqL6RoDPm6Zf4RxtprBenFyIsZQPUxmPur9oRl0Yr3U,3823
1053
- cirq/transformers/dynamical_decoupling.py,sha256=dIh5mgE8OKA6RDBvWW4MDbTzs2R-lG1QDc6QHa6ppMc,14700
1054
- cirq/transformers/dynamical_decoupling_test.py,sha256=7iPpgEgA6pZ_x6we8JnqwIzTUrg-IN6ItK8Fp1kIw0Q,44692
1055
- cirq/transformers/eject_phased_paulis.py,sha256=zOvCiSXKBNex-zWB8BnhiIY8E34Za8XvnNSMmN3BCu4,14780
1056
- cirq/transformers/eject_phased_paulis_test.py,sha256=nALOTD4leNU8RBsjdyzTsrqOFZR6h2Z56SiWebmXM4Q,15682
1057
- cirq/transformers/eject_z.py,sha256=Ja5lU8RMSSrnUr8n8_15Miqruq4L-Y-r4x6jB3rwCUU,5824
1058
- cirq/transformers/eject_z_test.py,sha256=f0H_oxe-whPlrrg7vaHRmjVWoRIyh_xuvVk3WjxuzhQ,13226
1059
- cirq/transformers/expand_composite.py,sha256=nASRoP4qfjsnX_t2a2hBw8BE7B_JD-0XLGIIXxbIdbc,2387
1060
- cirq/transformers/expand_composite_test.py,sha256=4Gn6LVqr0DeuUumde80O4esOLGIoo86_S_Mk-HwnMfk,8640
1061
- cirq/transformers/insertion_sort.py,sha256=biwPNET6LlFnnzzHks1pjQda7OMNRnzwNQjYYJVL820,2612
1062
- cirq/transformers/insertion_sort_test.py,sha256=q81tMHSmlxTRqznkfgIGxanF-1fX8GclopAHTaF6yHs,1187
1063
- cirq/transformers/measurement_transformers.py,sha256=ewHTeY8QuEYCXact4XVCKD-VCCAGg3OaQiVDonSH8dE,19581
1064
- cirq/transformers/measurement_transformers_test.py,sha256=VXXqJIfXJcduJXXXz0_yq7onAlAe3FDd7l3EHmp9YyM,28983
1065
- cirq/transformers/merge_k_qubit_gates.py,sha256=c6F33qJeTlwRxneNkgcQoLFgR7MyiY1yaTEfV12A_hM,4390
1066
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=k_ROZvUebHgPy5vsNnWNMBYU4kfIkrunPsw39ZngMwo,13920
1067
- cirq/transformers/merge_single_qubit_gates.py,sha256=TFlW-iZuUnlGTsnj6BI_z8P16ZkZbHUi69iHyi-0HPs,5826
1068
- cirq/transformers/merge_single_qubit_gates_test.py,sha256=O0my-DZ_KdBZn1ACf_TDgdlsYdf4b46C_6ov6vWJHBM,9947
1069
- cirq/transformers/noise_adding.py,sha256=UPqLAqXxeDkj0HeYGhFE6oCKGRdT7mQOA60UbUH9zl4,4440
1070
- cirq/transformers/noise_adding_test.py,sha256=8bTcxE4oiqmZ3H1QJhjP_VImdBVpmdI1b9dxQ-Mz-Pk,2135
1071
- cirq/transformers/optimize_for_target_gateset.py,sha256=Kawt_ltBP7DX0Wo-f4U6_lEDGfSfCDYU_Qj5mvHdM7k,7229
1072
- cirq/transformers/optimize_for_target_gateset_test.py,sha256=NJ8H8BPHVEPGhJ-4mewq-49st8Vqz2hHhlcGr6QqBdk,19525
1073
- cirq/transformers/qubit_management_transformers.py,sha256=fIC5rGPdDmYJ3rZNxcJ_aWtvoEkTFZjAjq-MdS0BTI0,9450
1074
- cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
1075
- cirq/transformers/randomized_measurements.py,sha256=BR0UQympwlJ9NqxmWkx2r83qBRZGURtQEwJXLAzvUu0,5687
1076
- cirq/transformers/randomized_measurements_test.py,sha256=udQZWgM8_atTQ4i5tPhGnrLu7D9WGvRaLNeeAwUGWeg,2737
1077
- cirq/transformers/stratify.py,sha256=wXOZI6MrV3R-p7Gd9Np5NTpjJe7OOHUFBYzaJx2YM8M,10469
1078
- cirq/transformers/stratify_test.py,sha256=17ic2VAUPEGuPG2o5j98yDxQ2j2J_PN3EsPsfh5xwUk,15220
1079
- cirq/transformers/synchronize_terminal_measurements.py,sha256=H3O1TiKGLYx1po7RCrSXhhLTTTNNRMCylDv5Ww2dJnY,3843
1080
- cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1081
- cirq/transformers/transformer_api.py,sha256=d_voglut7ogMtxrEY00ZnCYSnwmofaT8AKJulLl1QZY,16957
1082
- cirq/transformers/transformer_api_test.py,sha256=YBkIX-R6vYeQz1Y_sqpzDlvNYszEtfvkegoA8dAVVVc,13286
1083
- cirq/transformers/transformer_primitives.py,sha256=LMZ0CIIKpyyfkF4l13LGCP5AItptjzdyLL6xyfYkCq4,36660
1084
- cirq/transformers/transformer_primitives_test.py,sha256=Q0j8XmmDsTYpoZj1Qc4kDlMhpU4cpuBf77eBV1epM3o,41766
1085
- cirq/transformers/analytical_decompositions/__init__.py,sha256=hMsoQSQtSvEn5mNohSvGPjsmf58VN4jzmIFnchVhZi8,3760
1086
- cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=x8Xvuvp_-Qf2_Xo3hY6YhgjYO5gGY1MkyMw_47C5ndc,6727
1087
- cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=iIU5FhXlmnKoA0cIIp0lnYGcpyCJ4bevNheYNN-_FAc,7102
1088
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=Z7XA_lvr9ncPLbuon82LJdg43OY-he6mbQ5VECYa4bA,8675
1089
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=sZ2eDF5foEyNhTDqSzTYKkug4CMY7QmF4NCN-FaA530,5050
1090
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=YPkHUwi_FXzjYudOyACXKoa787Mi4chPhxuvc2dQM3I,9109
1091
- cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=RbtQKHz0uEtbfaUejfXGgi6ngjPQ0yQtgM1alxKJUr0,5568
1092
- cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=NmnR56BRoOU1Fone3V8EIBy0PbvwXDqsZMuHTjZYXqc,4524
1093
- cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=j-7-rCKpciBt5Qu67A0grMo3AZYtpakkL_dlZ2M3G44,2112
1094
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=cineE--vrEkTyuM2s2RDPkQUHe1sZRi9rDCHh6CPcZE,11784
1095
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=zG_7_dtmkpVrzeiBqDsO85SbUdlEvsIxSii23GYaGjk,7685
1096
- cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=YIM0q_l9fnY63Pbyg1uSfW66W-CwfFQGVsv-4DfID-U,8436
1097
- cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=4GfU6wctBoG-OVFqFOE08xymd5dXzY-doE8ZNpsKohI,12308
1098
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=Qmxv4YJgiBSbZUoonwSSBGGmzuPsUQLQbNTk2z59xRg,2439
1099
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=qBoSS8OoM2HdOIM_46pSdbWFsQBu0aeQxUqiJ9znlnk,2517
1100
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=yrVbl6TKffGltCuDTxSs2vMoe5kMuv7R0yJKtOZjvm4,9742
1101
- cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=p9H-XuoQ3jdR5NTcAcbW6Pak69qGfzvBN4N1SDw5eg8,7847
1102
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=OOjIy4Nw_28CdcmK5OE8uQEzy0wO5ITEF_tSZKaFSMM,6178
1103
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=486hVPQp620r8SPKlhyaFIK8TC5jDngX8WqHY1Hb0Hk,4458
1104
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=plRY9voElUECp8fcL-31R1odfSEv03dwkX7q4fB6aDI,9341
1105
- cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=TK7uykykqA3HY7M8lEeY73gvktaJ4HrfWo-EBZMxETQ,9941
1106
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=Jv5zfIDSsZzQsaO69Su0AWbeVS-32vasxz-xZaE2JD8,9721
1107
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=U4FJj3Xn417yqyg313ONf4l10d7FR5pKUwMlb87mfco,6989
1108
- cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=MUt2ThFMbCCapcRYGY_3cBRwYoZSb4ZFuua1doZsyJA,3772
1109
- cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85MbuIAos7o1371wXs_KH-Bk6jsPqSBKAx9GJ9c-wVo,4160
1110
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=J1az4caLRz59cHRtnZ6T-8HRXvaP2tf19O3gqb67PHE,25417
1111
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=VsbjaDbwy94sMYVnqN02gw66k2g-cRTUyto4o0NPbII,20619
1112
- cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
1113
- cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=GEw5b1865_5yBmX1TXxrh3JX8KrUvGDspIE8fjp_svc,5540
1114
- cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=_lXX8eEiq4kh8cxOb-3M-wRFTipCvjp3KIq8PtgvKsc,1391
1115
- cirq/transformers/gauge_compiling/cz_gauge.py,sha256=j_aF4bI4B2V3R6CDqFwe2xMHe5iN8KGF0jtvUQIt3I8,2550
1116
- cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=_2RMzwuMoqytgsVZEET2m6QsGoZ2_uWgBfSGGvhZEWo,854
1117
- cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bULq-r5MuJBhxUNt_bnV1xhLGR7x2DMNXyshm4C3Itk,18846
1118
- cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=1zKRV_xDV6_AcP_Q2u0JIhpxYXH0F3Twsjzn_Dudy60,5236
1119
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=OHALJ4rLbRCwRWrr0MBJ3BV_7LAZTrQFOvxpDJ5eNm4,5025
1120
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=sBEq92OUEwnRtfwG_Zlnkpl_pZdZIXcB4ypKy_b2bIQ,1805
1121
- cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=L6Ei5xkNkU9-kKMJzjZRZCwpjO3p4Q-AaV2lmuJJXpU,3500
1122
- cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=HEIIwKlX5ixau1e_etSUj5NvYOVTT-Gc3kuHcyKAeJ4,866
1123
- cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=8oTUE1A78_F0kHW1EJnH0XlLCwgSbbPv888l10oRyoQ,1086
1124
- cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJwl11VPNXkf_v0WjCg9VxNKAplZ_5bZR7guOfnK-aI,1292
1125
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=mCwuFMPSa2NLJmyyQUxWbMsUS8cKVyQMeOdP6j2S6i0,2529
1126
- cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=RwjadOOJfa2Qf7iryTIMJLPzeDMNqFkP6Tewjq68gJI,997
1127
- cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=8sKKyvszYdNTRuxTbLfZIeVV-VWxEX5S2pbgKhWTYpY,3127
1128
- cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=0CLZoLw-WK3aKEIoaKBrQZ-qvaprOVLad-dVyWFmSiU,882
1129
- cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
1130
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=aHWLn5lExM_5CG5J4e0RuiF6etMpHp4QJz9BSeQeDDI,10786
1131
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=jl--brvE9TXBlpkzKZow9WbgZPHlIgrlne18Tf0ytig,1534
1132
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=6K9VvFHi-sJnJRQfnn1CLlrEl1M1neXABdkKKts6OTU,20067
1133
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=Ei4D19jDt4Fi5sGgYaF-Md6AdOh88NJOCxPYe-4IzMo,3830
1134
- cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
1135
- cirq/transformers/routing/initial_mapper.py,sha256=OTx48BHzFQpXKXv7UNTh6lJ2KSHdX2pdT-_TsgL7O-g,3036
1136
- cirq/transformers/routing/initial_mapper_test.py,sha256=dR_Ec1W_NnIlLjvK7_WnGhZKgipofnqaO0bXxK4Pz3w,1308
1137
- cirq/transformers/routing/line_initial_mapper.py,sha256=2ijLxhS9uKKENYWbr4jv_INKIjqLWzQPO9d9w1k2lUE,9468
1138
- cirq/transformers/routing/line_initial_mapper_test.py,sha256=l48BRKOEnv-4c31Anpg4bucWUppHg9-LMeo7lUny3Es,7476
1139
- cirq/transformers/routing/mapping_manager.py,sha256=TXnk-QCSK38Z0DdO5jFzs4T1-ekmwiNQVyUXS6c02-8,8631
1140
- cirq/transformers/routing/mapping_manager_test.py,sha256=kRKqF88EoqqwMI5qbv54OMBrqzodHZS2tVwIMNNwO_Y,5921
1141
- cirq/transformers/routing/route_circuit_cqc.py,sha256=qkpjvqUbNNY3vM6v8J7Ppei-c5smwLzrv8JfCBuMA5A,22022
1142
- cirq/transformers/routing/route_circuit_cqc_test.py,sha256=3iBNnu08ocgU683ELlfIocZVgZHTehkHapho2reO-t4,10000
1143
- cirq/transformers/routing/visualize_routed_circuit.py,sha256=io4nntaROspObIVP5DKt-cRori3jr93p71oEBTqRkHE,2918
1144
- cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=1YlV-fSRcXLbcPFbxwuzdguwO0H9sGi2LH6T-bgOpXE,4141
1145
- cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
1146
- cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=QR8G6TpyiuK84PqBAvAvHLUHg9naXHCLQosHIjS8bRs,14286
1147
- cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=eoyDTU4Q7YFGBIzPd9N8U7bxyBO4RGdhzseaDtbDrpo,9484
1148
- cirq/transformers/target_gatesets/cz_gateset.py,sha256=YPprTliaHN_0qITbFwCGr58TCKZiDdalvj6OdWFl8pc,5031
1149
- cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=dPXItC91qmmGTsMUR1Fgrgfm54p7GZuMDe9YdR1iVtk,11279
1150
- cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=_zyVEidlvZ2Grk4prWW390heLcCn9boiqRmfpBiL-PY,6278
1151
- cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=T1Q7TVUiVbLkqhBOaVMtZpgd_pABU157cV9zrcztaZc,14392
1152
- cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1153
- cirq/value/abc_alt.py,sha256=aTWmYTHNFu6yD8i7HcUMfsautsGbPoKuasNFe6-Vq3Q,5997
1154
- cirq/value/abc_alt_test.py,sha256=-N4ZZPVhkm1E5LaB2ZQEkOVObGFcbZbkdhS669cTtOg,9013
1155
- cirq/value/angle.py,sha256=uPa6RrAF-fH4vS8DxWVfBug1FZmT0yEMXdd4VlWOaJw,3315
1156
- cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1157
- cirq/value/classical_data.py,sha256=LFW7Q87mjg-KpuU5iJqxyDFNqre5AlHUCXbMVKwFVV4,11608
1158
- cirq/value/classical_data_test.py,sha256=23ZraKZ-V3p-uux21bkcboQcEp81RW6VKnVIYPQc6_o,5231
1159
- cirq/value/condition.py,sha256=kS-SI-m4HgQpuGNrTxF6xGaoDYSaCw1JxLjUqpd2qhM,11977
1160
- cirq/value/condition_test.py,sha256=RTDP4N3gGiAKX_tdpo1js0d2bK3jAfUFKXsrpN1q8CU,12913
1161
- cirq/value/digits.py,sha256=PLpenXpyhrtEpEETVe3rMle4IKZVGL4GrW5ugThHkeA,6024
1162
- cirq/value/digits_test.py,sha256=evx-y619LfjSN_gUO1B6K7O80X5HJmxxBPl61RrOovo,3812
1163
- cirq/value/duration.py,sha256=JY1D2q61cHWChRjJR-ZPqfhuc3Bz0-U8gYpJif_cEYA,10378
1164
- cirq/value/duration_test.py,sha256=hzAbSJgWWgKaZhHujWllzKWlLeQErslU-06ReVsHLaA,8245
1165
- cirq/value/linear_dict.py,sha256=ra8rWflr6xXgfgVSOwN5wkQtryvp04H82PUYK7wSqLk,12736
1166
- cirq/value/linear_dict_test.py,sha256=H7-3yABo7J9T8HF8_orAE0DsIUrTjNIwArTkhgpQdsc,19872
1167
- cirq/value/measurement_key.py,sha256=ZDEmGZkJA8vS7jdNPa8yxqmTg_yQdPBhXpEfvniTE4M,5199
1168
- cirq/value/measurement_key_test.py,sha256=GnEX5QdEVbmi0dR9URcgXQH23aqW7Y_PKmTb2eIdRCg,4466
1169
- cirq/value/periodic_value.py,sha256=Sb_5qisRHuYxNf3x9KYToWqcuig5E3pOOT8C-WskF6s,3922
1170
- cirq/value/periodic_value_test.py,sha256=S9lk7EWKZjCNToYIsZWZqx77HuVlA7QEBP4lXazF7ss,4474
1171
- cirq/value/probability.py,sha256=bonowweqs316WJM874UnL3rnjqQ_Po4fWPXw4ujduK4,1583
1172
- cirq/value/probability_test.py,sha256=QXfihRBOfOIA_IoXlSbhoe7L-VGCBLLXYS99pL-R1yE,932
1173
- cirq/value/product_state.py,sha256=5h-dM2o9JCTsJQsCZbED1TFjrbPswaoqrQ2VXFiZDYU,9018
1174
- cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
1175
- cirq/value/random_state.py,sha256=aJ2czSgM7Oiy4lrL4QPWirZy3o7C5MdKn8TDKR-aBVw,2063
1176
- cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5BU,1348
1177
- cirq/value/timestamp.py,sha256=a7PFlJgvmGln7LJzhJK7g0JJt8cQD7JnHjC6BEYMFs0,3604
1178
- cirq/value/timestamp_test.py,sha256=kEzKyhA0j1DnMlp41olZ7ure949nGP90Jw5OscFonwI,4030
1179
- cirq/value/type_alias.py,sha256=bmKOnIIiHbjU4x62QBxAPyvdzsyv9fGyMEBz_ivwBo8,1128
1180
- cirq/value/value_equality_attr.py,sha256=ZaCd8VW36yKENuBlmxjbdUp8NZa9wlegJqnE9vTN7G0,10545
1181
- cirq/value/value_equality_attr_test.py,sha256=uLY2QntO8fuTO6j1mU20ulLGClY5z0_8fxTPR8mqt1E,6432
1182
- cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1183
- cirq/vis/density_matrix.py,sha256=8jadiGKgOG86llpgCahDcBJnWw0IpCooWWREJcNGXP4,4819
1184
- cirq/vis/density_matrix_test.py,sha256=PBqsp4BjIubKWmei5FFzt5345_g_Iu-MR41jDR6Qa8Q,6907
1185
- cirq/vis/heatmap.py,sha256=-0JRDfLErXSnwLbJkqz0Q4BJ6WezEV9F9gG3C6w2JMI,17767
1186
- cirq/vis/heatmap_test.py,sha256=6CEVTaS6jfpdE7EhJIs7D_AXclA0pS_calDAHx0gW2Q,20550
1187
- cirq/vis/histogram.py,sha256=Zo4JCkQm7zNqUmae9e4hYd0fFcEY__TXaGl5mNkG-5M,5107
1188
- cirq/vis/histogram_test.py,sha256=MZPd3ivY0Lo_XKV4n07oVlQ345uvkEdI76qs6GwwUuk,1903
1189
- cirq/vis/state_histogram.py,sha256=LgBKi4soevqZ1Z4G0bPrF2A4SC_bBOQrnPNqHuCx8Zk,4302
1190
- cirq/vis/state_histogram_test.py,sha256=8I9IvHUpJ-QQVsLAem7-TawoCpBIm5Y06yb5HNfhM8o,3761
1191
- cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
1192
- cirq/vis/vis_utils_test.py,sha256=-aiL5WmhPDs_5BF2lDol1koD4JuHTiYxLK2ofyWrbCU,939
1193
- cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1194
- cirq/work/collector.py,sha256=Ivs7WWsjZIGRP-bchOY55W7L8ZdXWA5AWQdGySTuOEQ,7844
1195
- cirq/work/collector_test.py,sha256=MirBDZ584HMZ3nJRUOSSQZcAyLR6sKc124GTQqPkunc,4885
1196
- cirq/work/observable_grouping.py,sha256=Nx-oeih6fCDVxux3E3b6_Q4xDBJaEhzujc9Y2xYX8uY,3492
1197
- cirq/work/observable_grouping_test.py,sha256=lVLLhQlwpAuBPUEkfCg7cTS_AhtuojLbvy288XX3Rn0,5811
1198
- cirq/work/observable_measurement.py,sha256=dB1_8G4anlW-Sbt80oSSrh_yzedDJXXoByjYqWXrlvM,28319
1199
- cirq/work/observable_measurement_data.py,sha256=szD9J6kMacdzLmR-puHR-fLjbjIjF332Iy_VGyY5OVg,20940
1200
- cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u73k6kxTWU6Vx_tfOI,19696
1201
- cirq/work/observable_measurement_test.py,sha256=0EvlC3rqiKSudEyq24ZYD1NQ6mxYMO9CluP3Clc-BOI,20189
1202
- cirq/work/observable_readout_calibration.py,sha256=h-z2n4Sj-Wn1yWP5Oc1VvI7-acD5ZJhAJQZJUnxCLaM,1888
1203
- cirq/work/observable_readout_calibration_test.py,sha256=ldkxdZRU4IGm-SIv2NLWFsAfvBOczA-PYkwGo7C0V7k,1808
1204
- cirq/work/observable_settings.py,sha256=a42gzUWy1FJ3XiTQ5NTenj0E7nLaoI1uEcmLlbn_sB4,6771
1205
- cirq/work/observable_settings_test.py,sha256=pINRmwyJkracXiQqZddl8QSejm-NBWyXPRio9ecc76k,4281
1206
- cirq/work/pauli_sum_collector.py,sha256=sdZn_aTuTQs_Y00rVUTgPknB5doj0QZxw8OSXv8RVv0,4230
1207
- cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1208
- cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
1209
- cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
1210
- cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
1211
- cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1212
- cirq_core-1.5.0.dev20250409225226.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
- cirq_core-1.5.0.dev20250409225226.dist-info/METADATA,sha256=K_eSK92fHOhuN3VruKqBVX0UebJjqGNA-elfRKfqE6U,4908
1214
- cirq_core-1.5.0.dev20250409225226.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1215
- cirq_core-1.5.0.dev20250409225226.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
- cirq_core-1.5.0.dev20250409225226.dist-info/RECORD,,