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
@@ -0,0 +1,1241 @@
1
+ cirq/__init__.py,sha256=n670ZaGq1Yuj88GYz87JeuXoFH91-FZLH7RbJ2-vAho,28315
2
+ cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
3
+ cirq/_compat_test.py,sha256=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
4
+ cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
5
+ cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
6
+ cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
+ cirq/_version.py,sha256=GkldVnvo8TjFFLg323uGUjPj6dpMhjhKJ2ssYcPEA-Q,1188
8
+ cirq/_version_test.py,sha256=h-vlff65E1nh33xLAqqyys_2b32tghJ9GugRK8euFWI,137
9
+ cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
10
+ cirq/json_resolver_cache.py,sha256=A5DIgFAY1hUNt9vai_C3-gGBv24116CJMzQxMcXOax4,13726
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=OpIupxl6plGVaLkU13RqYGELAlHAIy56tV6qjg51Yws,9489
14
+ cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU8OEunecX5SSIRU,11475
15
+ cirq/circuits/_box_drawing_character_data.py,sha256=hExbMJHm9LGORhlhNiUvPiHquv4pJqIgJqJCivW4dbM,12109
16
+ cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
17
+ cirq/circuits/_bucket_priority_queue.py,sha256=U564r2mou4aZsOlpVYiZCgirqS6mVznG3ESyawBt4gE,6749
18
+ cirq/circuits/_bucket_priority_queue_test.py,sha256=MOby-UKYZQMe2n4KhqkfDCPrz-T_3eBbWDEa0_nadJQ,5627
19
+ cirq/circuits/circuit.py,sha256=pdRVuMGfCAjoBn5bh01IBR6EoiB8oOtChX_HvI6vBqk,122669
20
+ cirq/circuits/circuit_operation.py,sha256=vvLk30okWhimdJRFhFOpwoHDkyOHzR2I9OIggZaqmVk,36338
21
+ cirq/circuits/circuit_operation_test.py,sha256=ZoYvAIsURx9yPWiLcPeX3--lkCOFJkXLxHafUJaZf1U,50425
22
+ cirq/circuits/circuit_test.py,sha256=Q1ywfvVp6ThmtkAKTk-5bq0cVKctncL0d1qoWxTL_r4,166579
23
+ cirq/circuits/frozen_circuit.py,sha256=UXwABQqBSnSKqSWmRluQPD09xZU0orSW3b3IHvDqxUw,7903
24
+ cirq/circuits/frozen_circuit_test.py,sha256=1Uk3g9St_nJFmu3IJ5hAcXWJjLfWFUXTCKQU1b0JJrE,5321
25
+ cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
26
+ cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
27
+ cirq/circuits/moment.py,sha256=MK8H9YUQ44ofLdM1E_zOrJ4Sh5Ayh4ezDtwZkx1O-1E,28363
28
+ cirq/circuits/moment_test.py,sha256=-RXBe4ZkWTz1n4n5Hdna5HHslAfAn-gqdreMhuZP508,34233
29
+ cirq/circuits/optimization_pass.py,sha256=W_YYo_9uy5h4ijU_In5n7gG3EvCVp1cJbE1pHD9ci74,6481
30
+ cirq/circuits/optimization_pass_test.py,sha256=FvCCOZrqVQLYrf_BUAZ6M-sm6dMv00_xsvpN25Op1BA,5914
31
+ cirq/circuits/qasm_output.py,sha256=qclnyiEnRzkcr0JqzzABuiHD3INkiALmhl1jCW0AYNk,13079
32
+ cirq/circuits/qasm_output_test.py,sha256=e2TsMMVZLzyCYh6U3umPtusxmeiLJDunmsgFRa5p7E0,14048
33
+ cirq/circuits/text_diagram_drawer.py,sha256=G2fJcoyUP0ikrhTluFo4lULCEXKJI0dai5lBtHm0f14,16485
34
+ cirq/circuits/text_diagram_drawer_test.py,sha256=YBe8zT7BDENoR-gA3l77mtRj6vxY3kVVZ4FqBO_WwsY,11031
35
+ cirq/contrib/__init__.py,sha256=DSA8bHVvPSivnEtLS2WmAa89pzGxK8u2MyMHwpJ3HSM,1121
36
+ cirq/contrib/json.py,sha256=7qE7iFEH5jWII3ZaIHjnitt3k-MULDxZ-0TFIQ4nJSQ,1473
37
+ cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
38
+ cirq/contrib/acquaintance/__init__.py,sha256=hIRO807ywD3L5xwIPROAOq5FFnel9uXcQCw1uYBlNhg,3215
39
+ cirq/contrib/acquaintance/bipartite.py,sha256=9BusD-thMIfOEZeDuUEBnZUJoOJ8bc-DzNJTVMOrVR8,6494
40
+ cirq/contrib/acquaintance/bipartite_test.py,sha256=6MFUyDjhX6uoqVOmb7uMf7HFC-AY6-Oi3TXQcH416LE,16240
41
+ cirq/contrib/acquaintance/devices.py,sha256=RV03R0Ie_OGAQXQ80TQZWvs-D9443AjTXZcXSAkEskg,3051
42
+ cirq/contrib/acquaintance/devices_test.py,sha256=X2qBUFZ5V1yv6nTnlZ-ncVNspd_nlGBqXmVpw1yw4NY,1285
43
+ cirq/contrib/acquaintance/executor.py,sha256=PcdI1a8H1KrNWI0Es8S4PdEKrvC1vG-K8lPHcZiaymM,8626
44
+ cirq/contrib/acquaintance/executor_test.py,sha256=ifm7TOh1ilbHkHqGJWHwUeZTZ81icx_ZoCSDRiXh2Bw,8117
45
+ cirq/contrib/acquaintance/gates.py,sha256=zj158yhzPGKGbLQFaiVWeXDisn-ZwHFsKZBYt0VCL_k,13500
46
+ cirq/contrib/acquaintance/gates_test.py,sha256=_LLwe3AfvIB5huIhL7KVj8wW1D9_dVVrcFKsGF_jEqw,15189
47
+ cirq/contrib/acquaintance/inspection_utils.py,sha256=1DNusOpdv4_NoGnenN1oNEgWKYPrxJkankgpfH2Uvd4,2721
48
+ cirq/contrib/acquaintance/inspection_utils_test.py,sha256=e2mLz0Wc-6dGTdBcfiW94fYIxW0pg-W1ePalO6bCR7M,1478
49
+ cirq/contrib/acquaintance/mutation_utils.py,sha256=jnLy8Xg1kFC_7UHENaqGFpvPjmZBu-vs2vu-vIUoupg,4716
50
+ cirq/contrib/acquaintance/mutation_utils_test.py,sha256=_wDNSWIUAkgFa8T6xlcxP0bItLpEiSGd37mdDgEobq0,7900
51
+ cirq/contrib/acquaintance/optimizers.py,sha256=f9FZF-JvKoLYYz6H3rDs3tbrCzX33v1aCRDNKmWT84I,2099
52
+ cirq/contrib/acquaintance/optimizers_test.py,sha256=SGNvMoW73sdqVJr08NvXJeQvd0zg2y1rOB6iUEeHDsA,2500
53
+ cirq/contrib/acquaintance/permutation.py,sha256=CF4TzVXxVaZ6dpINxAEbPx2jGsNcCHEk_gB6eygJvaA,11733
54
+ cirq/contrib/acquaintance/permutation_test.py,sha256=ViasEAugHY4YzpULAqek5lOWnS8DwRMrS_9vsTKYNGU,11913
55
+ cirq/contrib/acquaintance/shift.py,sha256=IgOChH9A8sAgjJgia_c6tf2BBiuq2HRG6S544HDrqPI,3071
56
+ cirq/contrib/acquaintance/shift_swap_network.py,sha256=gT8A7ASsrL3DCwdnzZuUZEkyfkAHBbOEwQfCFVhQDtU,5285
57
+ cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=AIG4kihV_HE04tL065GL9a2NpJChaV6F0rTCqF6q_mg,11722
58
+ cirq/contrib/acquaintance/shift_test.py,sha256=srf0_Sa-k6xIzwY9lCCwGn7ev2fFnJ4la1OHy9XmgX0,4639
59
+ cirq/contrib/acquaintance/testing.py,sha256=YMgVGA9ZUMOeQ5tiwbzeZQ6HyQpDyZ5vMoHAVJHHy6Y,1618
60
+ cirq/contrib/acquaintance/topological_sort.py,sha256=u01U9Z8WjHzF3jD1IC_wpdqJ67OtaDZln1jUhkkTi3M,2980
61
+ cirq/contrib/acquaintance/topological_sort_test.py,sha256=qYVwguw93ouBO13P95wFb7Igdc8WOdTiK5dNH_asZ0A,1716
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=NwjnMu0o6_wa657rvDp7oF-Iszhchk8ivyYAsP6qxEg,3173
65
+ cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=ew1VlBa-FuhWQnMt1sqngM-fyfJhNLNKs4ZvYHc0ofs,1599
66
+ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=XMyTgC59egPIANVfdJ7NbZ-Y4f5K0hEZPJ5GrtqsoBE,2570
67
+ cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=xs_gRngn9XpeF-WiTpHv2fbkyi-WZmq517qj0LUGF38,2292
68
+ cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
+ cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=ACPACTjbkSI8hWRs3Y52cKchqZazwSCWELH6-LAh61o,9123
70
+ cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=L5SXu7ygwtRB6umpDmRzYMo6tm17KcWdO3vynAqGmvA,6005
71
+ cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
+ cirq/contrib/circuitdag/circuit_dag.py,sha256=R0J-FZ4ynk760C7eUuyf_4ORtd7Q6rFViUy_Qpm2Vsw,6913
73
+ cirq/contrib/circuitdag/circuit_dag_test.py,sha256=r6L21qD8tzLCgfKhnXK0QuNQ_v6aii5W0wyujoYcnAg,8378
74
+ cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=dSTlTiFwXicJxQA4yHREGF7aJnkafNVrf74w9hkMsYQ,3210
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=Y8zYZzxpzK75FtQLHg_ObsCBiHRCSGLvbi4gFz-JCZ4,8018
77
+ cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
+ cirq/contrib/graph_device/graph_device.py,sha256=R_K2Nl7q3d-wjI0Fx8P1r_ZuVDRv9FMPN0daUy1vFaY,8088
79
+ cirq/contrib/graph_device/graph_device_test.py,sha256=2ieFjKxSSC5VFBrWJGEi3_o5c-hEVU-BHewMgD-OUrQ,7531
80
+ cirq/contrib/graph_device/hypergraph.py,sha256=FBzBb7-yVc3Tv4lOHQr1xdhyme5LCT3iFhZWPO3BT3o,4708
81
+ cirq/contrib/graph_device/hypergraph_test.py,sha256=eiF2BcNVaWvMe1X3YtiR8uy-k70J9GEbUXLTIrrx8g4,3965
82
+ cirq/contrib/graph_device/uniform_graph_device.py,sha256=H3DAC0JLTJvtivoY2yRV6ID3Rvc1ltvePBZU59KoAZY,2372
83
+ cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=M7cxp4UEbhTf-kdVUc2EpRJPRQyjo82K_UJBbSSEvT0,1871
84
+ cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
85
+ cirq/contrib/hacks/disable_validation.py,sha256=cOqo4QUtbDu1PAOUCQRjT8EKE_AImbQr2rwGi0AOO0k,1530
86
+ cirq/contrib/hacks/disable_validation_test.py,sha256=sz319WQwkSvkAUr913lhlrh1NM7-ozMffb3MxCjbwgY,1755
87
+ cirq/contrib/json_test_data/DampedReadoutNoiseModel.json,sha256=2prOerpHJRPJf_o-sFcYBr0Ffm4J4xCYdJFd6FLS4Hs,196
88
+ cirq/contrib/json_test_data/DampedReadoutNoiseModel.repr,sha256=63Nt1ibLxTkSNVSOrnKcRqc_RTLLg-d9O5Dw_ltc4ME,153
89
+ cirq/contrib/json_test_data/DepolarizingNoiseModel.json,sha256=mBwPxHDjLGwUAg6uB1_pNv04xA7blkRkXcUPL07f7wQ,195
90
+ cirq/contrib/json_test_data/DepolarizingNoiseModel.repr,sha256=PsZ4U9gWM6Z45O_xpe2crHygAawoE6L63Ela-AlDKE4,152
91
+ cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.json,sha256=e8GnksOKwVQkxP9obfQ3wpoxwjVE9FC2jiKFWDxux5Y,126
92
+ cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.repr,sha256=d0ih7jIhch2MgkjexP2ICsA1P1Yat9G0R_nH5v50AtM,81
93
+ cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.json,sha256=5B1rE7lFsyxl-HaV57zd3I2IvcFhtZhGYrxixo_JqsU,99
94
+ cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.repr,sha256=HsgqVOnJ9rnm87M_wB8IlB9fs6juCa1wEkUI2wJWE0w,70
95
+ cirq/contrib/json_test_data/ReadoutNoiseModel.json,sha256=4rozZLPSIS_pLHJYP_lQI-RmCD9FSVylpsVk72tdpjc,189
96
+ cirq/contrib/json_test_data/ReadoutNoiseModel.repr,sha256=2D9n9x2HpMimEUPqcnGdsmah2b7KvhAGzbrEkxC2jHg,142
97
+ cirq/contrib/json_test_data/__init__.py,sha256=y4pe0VWiQAa4PmWikB3XKFVgiuJWspUzW9ugDUYq8C8,723
98
+ cirq/contrib/json_test_data/spec.py,sha256=9Q_-qZkFM6S0bMFzyt-Bv2lPrHaUxltPmYCsn-wTxrs,1182
99
+ cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
100
+ cirq/contrib/noise_models/noise_models.py,sha256=roHyBEIvD-WqjOhY8bRi5nzz0lycp3Ny19mr6W0zWsU,11332
101
+ cirq/contrib/noise_models/noise_models_test.py,sha256=htDTYcWeMtgtLIo_4DaTIidoHCxPMVIAKtS80R4OmDs,11472
102
+ cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
103
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
104
+ cirq/contrib/paulistring/clifford_optimize_test.py,sha256=8FFLg9gb1HmHHMdXPa-vCr1zyxvgdlciRH8qyfTWQRw,3964
105
+ cirq/contrib/paulistring/clifford_target_gateset.py,sha256=5QP4A1gC1rsTbWXB0L00ZuSGy2VZvYer63UyydCj1W0,6311
106
+ cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
107
+ cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
108
+ cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55Azd0_rzsi_xnU,3618
109
+ cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
110
+ cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
111
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=otBl5RV6Xsvv1M2Ze6mSz7_wSzsvWt_K7kDWbJNqXYg,21087
112
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=tWJtEJwT2HgDj4vzREMymsPNKZlWLIFMbQ0qyEuVQpo,36829
113
+ cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
114
+ cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
115
+ cirq/contrib/paulistring/recombine.py,sha256=phJ-SY4zdqZpIZca0iSsY0lK6NdXd0M0sOOWnUdGn5U,4353
116
+ cirq/contrib/paulistring/recombine_test.py,sha256=ydCc2JxmmjZ8TR-Ojyy5lIRed_P-n6UKWIRZ6HIlzVc,1959
117
+ cirq/contrib/paulistring/separate.py,sha256=h3UHkJp2dAQn9wrW57Z2s6GvfnPZwRMzTHULoyJVfkw,3955
118
+ cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
119
+ cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
120
+ cirq/contrib/qasm_import/_lexer.py,sha256=ZCS3aEwJ5tW3FndBAhQfG65U6McCfF_z_3-hxoH6zmk,2934
121
+ cirq/contrib/qasm_import/_lexer_test.py,sha256=ZSqML1jhT5EgGK3HXwcqZYaJcNlB2gPLXOQiSG8OyfE,7333
122
+ cirq/contrib/qasm_import/_parser.py,sha256=7mh7PB4ngub1K48RWulJ0adWx--LdkFKLBh7j6rhyEg,43526
123
+ cirq/contrib/qasm_import/_parser_test.py,sha256=V96NsSVVAmDqFNz36KCzk0bAJg2UbBZOwIsWJnYpGaA,67648
124
+ cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
125
+ cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
126
+ cirq/contrib/qasm_import/qasm_test.py,sha256=mwgl7dIOt50hvxTVTiy1HpVxAjyBSb59R3_Hi-5LUIU,1906
127
+ cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
128
+ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
129
+ cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=PLJcrv8u3MoLQOC7XzUa6jb54lI8pCFn0zsO2BbnVr0,4563
130
+ cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=DodZREuwlQhGSskI-Tuw603UuZvQPQckKdpU47oLRrk,2480
131
+ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=S9p6p9EPYariRJwy4XsRFqWvlrRofL9TZLdHZHNi2dM,2493
132
+ cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
133
+ cirq/contrib/qcircuit/qcircuit_test.py,sha256=Nivln1ECv4_AIUH8-2kfQH7d2E7332uvFOXXSU-AfYo,6153
134
+ cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
135
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=NM47qf3yxkGxI3uJAa7pCI3NgLrD8XqdyvFbfMZyPY8,19457
136
+ cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=CZ_CyJMhLHlaIiG8doLC5eZX2o9agKqruMnQGM_CXCM,12610
137
+ cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
138
+ cirq/contrib/quimb/density_matrix.py,sha256=BJj3odlXIzZievkSpaouggIMHFVjQUzVf05r25O8AgQ,8610
139
+ cirq/contrib/quimb/density_matrix_test.py,sha256=WBQY9vdQAuPFUYBTTJRUmP-161e7FasfTBvdq1oggyw,3092
140
+ cirq/contrib/quimb/grid_circuits.py,sha256=5tFgTwb83x7QFJh8-4Vj5lO07eJvEL3f8QW4MCdKucs,4701
141
+ cirq/contrib/quimb/grid_circuits_test.py,sha256=gemrEO7qcxx7L4bIJbA6gHd4Ub3kVf8e_IQY6U9dyv8,3260
142
+ cirq/contrib/quimb/mps_simulator.py,sha256=DVQHmlm9G0-OLjX6hH_lHLIJ0ely43LZfsxywyT-7mQ,24651
143
+ cirq/contrib/quimb/mps_simulator_test.py,sha256=x4Ro-nAEb3xbr0I4pjw3oTRK4yRCYaRmv7obcr2ti9o,17179
144
+ cirq/contrib/quimb/state_vector.py,sha256=8CvClbDRr4rLSApbIAVYzDs3zMZ9e3a_VW7VErIectM,6693
145
+ cirq/contrib/quimb/state_vector_test.py,sha256=l1soE2DqwBkPcinSFRRsmG36ukJ5Bahrin7SfIq4W34,5837
146
+ cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
147
+ cirq/contrib/quirk/export_to_quirk.py,sha256=vbzG3LzqlZfRxdqVIdYoqFalBfkFHUtE762rCVTYNqs,3860
148
+ cirq/contrib/quirk/export_to_quirk_test.py,sha256=WaPfHVrC06yzIsJ91M0vR18D9dL0RpXuJcZ5Xz4-KQY,12149
149
+ cirq/contrib/quirk/linearize_circuit.py,sha256=ackWBymRhMLOL9MBvPkamXLfOQG0xDKOHhP01_l1G9Y,1581
150
+ cirq/contrib/quirk/quirk_gate.py,sha256=-nfwb4y-gIuFNVyFu_RT47p-7MUV-3wvcpWab5h2mbI,7186
151
+ cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
152
+ cirq/contrib/routing/device.py,sha256=5BWKLh5AIJNNLNoUAr-ROHF87JSK75x5Hu4V2SRo6cU,2912
153
+ cirq/contrib/routing/device_test.py,sha256=60ZAstzmHpw9XxrYd3HOMpWnXaEWmH2yq_zJmxLhC8E,1962
154
+ cirq/contrib/routing/greedy.py,sha256=QUD9WRBdc7nCe7nx_MBoawNIZ4wtIWH2TU_AiHGsuBI,13841
155
+ cirq/contrib/routing/greedy_test.py,sha256=i4XSZyERmHKTkaLCHV5cBk0qH-LnRg8tcJVyKM2slmE,2290
156
+ cirq/contrib/routing/initialization.py,sha256=WPHsk488_O3_brXrxJ5lciljj25BFbv_Yr0vxE8AtZc,3727
157
+ cirq/contrib/routing/initialization_test.py,sha256=-YzTK9rgiIjUdJnPQrhXtaxY6j5q6jnzs7S_sDdf0V8,2533
158
+ cirq/contrib/routing/router.py,sha256=79h5mqaBo2PI1-bT6hbDMKJw0wRDbm6eliloP6OClMA,2591
159
+ cirq/contrib/routing/router_test.py,sha256=3VXVTexolCP0CKgsCSu6fMmEliQE48EcSq2uKujfJUY,6366
160
+ cirq/contrib/routing/swap_network.py,sha256=wQPDb3ZyIyaB1O2H7IyoZxfsGsuVn5GpdpDSURwdzj4,2379
161
+ cirq/contrib/routing/swap_network_test.py,sha256=3xahmqi5etiksFgD1aNIqp_KnQ4JuhHeHF46h4FMGwA,4866
162
+ cirq/contrib/routing/utils.py,sha256=xvA1khTMBly750GVJm_pCc5uBpAHpayLGZ-Yq4m2qg8,3780
163
+ cirq/contrib/routing/utils_test.py,sha256=4ssy2pXdHKRv99on91ag1SgZihYEfNR96i4AuTh90nM,2057
164
+ cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
165
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=D-lsr1y65fiDtuPJ4wWPy3LrnB4w6hVVV6LT6cuMZU0,10851
166
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=ZtJpaXOeFG2PgywULlybSf8LZ24yT4nh2oiMepDXKxg,13884
167
+ cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
168
+ cirq/contrib/svg/svg.py,sha256=TU273Ei6XhKr_pbHyQPx2BPa-59r6L70IzDT8LvgDMQ,9391
169
+ cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
170
+ cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
171
+ cirq/devices/device.py,sha256=Ejkn0qIW8r406kn7rCOQ96SEJu4dUuKK13hazJl1VYg,5383
172
+ cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
173
+ cirq/devices/grid_device_metadata.py,sha256=pgh2wu33i9rWOqqYgsTMtLuB2k4L8EAD6tMx_o_ju5g,8602
174
+ cirq/devices/grid_device_metadata_test.py,sha256=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
175
+ cirq/devices/grid_qubit.py,sha256=dkTauRKFL2pjdpHLLNfO9RY03tYKKLtSBZZhIpikJ98,19154
176
+ cirq/devices/grid_qubit_test.py,sha256=aRSoRL-L-LaXCgBOzaMvVDwdP0kGN0Oc1yIYaRlNYk0,15048
177
+ cirq/devices/insertion_noise_model.py,sha256=FCVsVsrPyGT0WsvIWQUgu4IliSRpck3znrEmlI-xOPU,3609
178
+ cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
179
+ cirq/devices/line_qubit.py,sha256=Bwr4KM7F9o5n_ChYtkH5uSaRUqMqAQaRAsVF7yl4bkM,11773
180
+ cirq/devices/line_qubit_test.py,sha256=ZJjt3iWXxmFqpBypDvFKQhTFb_lvVp8aokbFG5iNfDc,10323
181
+ cirq/devices/named_topologies.py,sha256=CNoMG2xhisUgssSdngzr8VpA5YBPjpVhw4dtXxKAb7Y,15735
182
+ cirq/devices/named_topologies_test.py,sha256=opABh1NgkfubHF4sCCTAxmFHLZXVZIgdKrZLQefd-AE,4854
183
+ cirq/devices/noise_model.py,sha256=teJNj25_tLTu_8_6fkKNyFAVnaRH6actJFXbhIJCHMY,11239
184
+ cirq/devices/noise_model_test.py,sha256=0kLY4lksbfBz1pAuSXQWBw8xSnwVrfXqlxrUbsaUuUg,9412
185
+ cirq/devices/noise_properties.py,sha256=pXsTxgj2J6RcJ1uWUYdczUTBMn6ThtvucijNEgbrzQg,5321
186
+ cirq/devices/noise_properties_test.py,sha256=0g0_UP70FE0mU-SySOu-MX6jnuR7XH0Y0QOjZMO8HqA,3418
187
+ cirq/devices/noise_utils.py,sha256=73B1o22072RhsNdo7_t_A-pa7Sub62ff4VpvNt0Ewdk,7155
188
+ cirq/devices/noise_utils_test.py,sha256=Pn_BO0c5Ky9FJk384FXh_BkXXYe1V7GWIBgxsaoB9as,2099
189
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=pQYEs6KupGW1lOQ5Tt8CEI0vdJ3sh94uTrVZHXosRmk,8142
190
+ cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=Ld7ft0Vr4V69egdL67WKAdDF6vNXc2-SLPzx0u2ph2E,12200
191
+ cirq/devices/thermal_noise_model.py,sha256=TSOKMP1GSVS2FVzFGGt6_Rqd-0Dx4tnvMv6Yf_1YTk0,14426
192
+ cirq/devices/thermal_noise_model_test.py,sha256=F4PtsTxhM-FyA1E_VDgg7e3TjuKeN7sGCdvHi31RxWk,12914
193
+ cirq/devices/unconstrained_device.py,sha256=wa94uVzaCPb1jmG3h6hSGJQggSuCvEK8wekkGXCOx_Q,1551
194
+ cirq/devices/unconstrained_device_test.py,sha256=J8vABVWWywQuX6Jlo5Y0pWTh6VZRatdmjdBL6u0kZKk,1083
195
+ cirq/experiments/__init__.py,sha256=3y8FX6Edh_mEFJ7AWjhDurnSLxuEt0_edqL7CitCrTQ,3777
196
+ cirq/experiments/fidelity_estimation.py,sha256=2wq4gFZ6XYzk3NUGbyNn7EZT911XEHcZot1RD4825mc,9264
197
+ cirq/experiments/fidelity_estimation_test.py,sha256=On0O1StB6Fo85xuK6BWo-zZWb2at-GqhAgpSrNRBn3I,4955
198
+ cirq/experiments/n_qubit_tomography.py,sha256=16u0Tv14SyUM9WCk-ZxbBit9cl93MbZodGrj16XiBuo,8436
199
+ cirq/experiments/n_qubit_tomography_test.py,sha256=8wIgs0O8DtlCGOyC0MZA_d3tLNoURX1ARcqnnp1360g,4439
200
+ cirq/experiments/purity_estimation.py,sha256=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWWVsdpEA7k,2503
201
+ cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
202
+ cirq/experiments/qubit_characterizations.py,sha256=RO-gxOI_7n4HhGOmumgLGacV4Ve8bAY_s7XyxkOTUjo,40887
203
+ cirq/experiments/qubit_characterizations_test.py,sha256=maQmdNAWwZ15OcUDe0gqu7irYOK8ldwF1CVBY53rmxY,10971
204
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=pV6ubukLLdfPXLvJD2t979rVDCOTM32X6SB65vExeE4,28012
205
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=4GSfUK2hw2r90JAO7R2zSBqjtwWi8vXuAhw-iK6quwY,16512
206
+ cirq/experiments/readout_confusion_matrix.py,sha256=qK6qDoNRuIHGTV7PS8xGkS7tCXGGyoDfUJJj6575-cE,20664
207
+ cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
208
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=0vnmKBtcjS8kCbJj_iJ0BWW23W6UCc4X2Ig9N_UUs0s,15243
209
+ cirq/experiments/single_qubit_readout_calibration_test.py,sha256=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
210
+ cirq/experiments/t1_decay_experiment.py,sha256=ojtmkQ5mgiQ-cK389YrvlRXotzHon83HNG_8sae-JdE,7099
211
+ cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
212
+ cirq/experiments/t2_decay_experiment.py,sha256=w4W7QvdIPW5LO9KeREpMFJpFpz0F0wA9T9qPs1t4Mzw,19135
213
+ cirq/experiments/t2_decay_experiment_test.py,sha256=b2ikIWTctvAp66GZftmVJ1z0mgS-eN0FsUU7bErG7Cg,15066
214
+ cirq/experiments/two_qubit_xeb.py,sha256=7CXYU1W-qijnp-1831zT-lEXCx6GeEJoCf6QOBvBChw,22803
215
+ cirq/experiments/two_qubit_xeb_test.py,sha256=MSwdIOcfFy9d-GZUzz4f-2_gblleR89dPIyC8pt_AsQ,10689
216
+ cirq/experiments/xeb_fitting.py,sha256=SaiamG0gc36bC6ilecZwJou-taEh3REWJAwg5F47DEA,30306
217
+ cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
218
+ cirq/experiments/xeb_sampling.py,sha256=CkWJUqRPuHmnqUdVJl9j5X22iI-fP__t8hhr3_N_5xg,14921
219
+ cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
220
+ cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vKnn5HU,5073
221
+ cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
222
+ cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
223
+ cirq/experiments/z_phase_calibration_test.py,sha256=F5ePCPHukDolucMPDfMbyeDSHMF3hEzW-EBEQHKrCyI,9048
224
+ cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
225
+ cirq/experiments/benchmarking/parallel_xeb.py,sha256=frCeZMRw03YGwDYYjWkg6blEFoGB8BPt9lxA9cNA8vA,25894
226
+ cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=tT_iyG9_ZU933-t2altuugOy8ekqzxtjkmGn1rdF-ak,15867
227
+ cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
228
+ cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
229
+ cirq/interop/quirk/url_to_circuit.py,sha256=oEyMpUxjViS-TVzN3HWg_rK2k_MEBzn1VByMoOyJMi0,14083
230
+ cirq/interop/quirk/url_to_circuit_test.py,sha256=QZK_zZlRrbPrwWYegCQVEekZizsf0qZVTR7--SroP5I,26333
231
+ cirq/interop/quirk/cells/__init__.py,sha256=qFnhZj9KKX1PFDSK3xEiJA5aHzOF1UUgoICJTeWHINM,1497
232
+ cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
233
+ cirq/interop/quirk/cells/arithmetic_cells.py,sha256=okXTbRsVKGH2LAQ8-HfJxnUWGWkSHSomVGdnxqclvWs,13007
234
+ cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
235
+ cirq/interop/quirk/cells/cell.py,sha256=RUJm4fErnDBLNm-2GDoE2aKxOygOsFXo2TaGAb4uWHY,8365
236
+ cirq/interop/quirk/cells/cell_test.py,sha256=ymhh6BN3kTCfsmki2I72KUxmZSP5GStszoBmQZAgj7M,2313
237
+ cirq/interop/quirk/cells/composite_cell.py,sha256=SuCoJ-Px2HEEuoGXeX5mecza13VYfLCzi7F1AMVuNBY,5240
238
+ cirq/interop/quirk/cells/composite_cell_test.py,sha256=aVikfJkju5niIiA2DmTqXPQ8Lr2AnqHtBp1QT0KtNRI,5344
239
+ cirq/interop/quirk/cells/control_cells.py,sha256=UGaSwYcjjC7RVOxaNY7PTejk9sHT-urALIY2FXIXV1c,5529
240
+ cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
241
+ cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
242
+ cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
243
+ cirq/interop/quirk/cells/ignored_cells.py,sha256=AEZ7O4kQZgCkd_Uvn2TbQkofp2IHM3GdY9c-9E2wSpw,1415
244
+ cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
245
+ cirq/interop/quirk/cells/input_cells.py,sha256=MUy4yD3oS3cEbB2yEj7SKVCSzkZO2LsT-j9FBiKmpi4,2932
246
+ cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
247
+ cirq/interop/quirk/cells/input_rotation_cells.py,sha256=TlxRbKQ6IPN8XgA7qocwufgnB5UQ_yHpCYhVQZTdRTo,7338
248
+ cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
249
+ cirq/interop/quirk/cells/measurement_cells.py,sha256=U3I8wEX5BVp8Rlg1MkQAwaRMJ6wl6KGC805RGMoSO8A,1526
250
+ cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
251
+ cirq/interop/quirk/cells/parse.py,sha256=WKP0krx-7whsNrsbgVX9_97ZIi1zm2uYELQZ5KedI_o,11857
252
+ cirq/interop/quirk/cells/parse_test.py,sha256=w3Vp13EBAcMvpCgWK9fzYwfBpVF4ax6JAqASLmFrYWg,7625
253
+ cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=2xBQt93gS0aam64ZU54Z8wnraIU5_G8auJLq5-7dBjU,3417
254
+ cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=HEg156HfRnTSciiYEr_H3oIBtvF0GNafKwb2Gy53k5U,4552
255
+ cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
256
+ cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
257
+ cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
258
+ cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
259
+ cirq/interop/quirk/cells/swap_cell.py,sha256=oSF4Mg20EKEj_LedCQ_GWMyRWggxUsDhs414UB1IIWs,2424
260
+ cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
261
+ cirq/interop/quirk/cells/testing.py,sha256=hBfOZl1GfzFh8XzmI3X0t_kkWuZd9LJCWeK5XM4vrvg,3296
262
+ cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
263
+ cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
264
+ cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
265
+ cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
266
+ cirq/linalg/__init__.py,sha256=k3hZ6NMJN9b9ExgzkoHG4W2SFVEpYf8ZCSmIkOtRBOU,4029
267
+ cirq/linalg/combinators.py,sha256=7V9oNSojc466NvOXyt4FMu50yDQ77iM5N4oZ37fV9tc,5347
268
+ cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
269
+ cirq/linalg/decompositions.py,sha256=gyQQ3iwuar22ZwOV3qV9nmc6LrPr-86NMlMNS8UMIjg,38537
270
+ cirq/linalg/decompositions_test.py,sha256=b61HGNDPhykEazp48lHk8Kgw08cKCMW4ZHtVDN8yDFA,25472
271
+ cirq/linalg/diagonalize.py,sha256=3PpGmlI7CCkQS3JKr0AkgdHOZedXLniZkxmUtpCNQPk,10074
272
+ cirq/linalg/diagonalize_test.py,sha256=c6-ksL2PDZ5hqr2ib2iS0uEnJuCHSv16cuiJK4PLjok,9161
273
+ cirq/linalg/operator_spaces.py,sha256=jUU-OYL8Lnn58kbhLskDyhkBeXZXPXVmR-hcIkq60JQ,4132
274
+ cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
275
+ cirq/linalg/predicates.py,sha256=z4f7eHM7rQIYucpjlRoM-ZoY6ObxQFTuD9XruaYK6kI,12164
276
+ cirq/linalg/predicates_test.py,sha256=ZEIqb3fPWFsAaY49HUBRwN3oGShM0k0YHq22WX149Sg,21683
277
+ cirq/linalg/tolerance.py,sha256=4TZ_BjldOhPuP2CwYvMdzHCc9Lzfwi9ZkndSKObyyBg,1893
278
+ cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
279
+ cirq/linalg/transformations.py,sha256=YiQdLe2BNHupPxV9Gxt3VRSWKTRmqt4yObV0Wwij2Dw,32526
280
+ cirq/linalg/transformations_test.py,sha256=2HdnYDzNDq7djdPByQmRphKkpy6k3rK9nC8uZfDlSZs,26462
281
+ cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
282
+ cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
283
+ cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
284
+ cirq/neutral_atoms/neutral_atom_devices.py,sha256=2q7sPeQIb9UbseTPyRSaHeo4dZKF_EcNUDH5u6eIb98,1394
285
+ cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
286
+ cirq/ops/arithmetic_operation.py,sha256=FO2ne5ZHIcUCJySgOC60UApfDtfVBaZqlrhM46f7-34,10051
287
+ cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
288
+ cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
289
+ cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
290
+ cirq/ops/classically_controlled_operation.py,sha256=hj8oShyWpOD4bmKS5CTmxNftywkCnHTFi28kku1clJM,10386
291
+ cirq/ops/classically_controlled_operation_test.py,sha256=OedFFoAwS4WnHKG58xgjhbKFgKebhYyP8I7AU4a0m9k,50425
292
+ cirq/ops/clifford_gate.py,sha256=BMjCuJq2fTFZm-Sv475qDqwsFof1kxru8zNDJOTFkL8,40055
293
+ cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
294
+ cirq/ops/common_channels.py,sha256=ZZa2JCyPtrKfGhcAGCUUzA4qym8S9isKs-xs-TEkhKs,37022
295
+ cirq/ops/common_channels_test.py,sha256=3v-CLntFYP5YoHyMd5ymm-HNhhhhvRTuriIl3vVZJGY,30753
296
+ cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
297
+ cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
298
+ cirq/ops/common_gates.py,sha256=pnyLK2FurjE6idejtAzgRaawiW-AqiM22w7xMkEpxVs,58221
299
+ cirq/ops/common_gates_test.py,sha256=IcUWxDTTTbis0efXz2Kn0zAdclp9R31fZAfCx3E-BOo,49758
300
+ cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
301
+ cirq/ops/control_values_test.py,sha256=Wyn0nwtcpnJvcPVRHmFGb3PtYxvsbpluA5UbPrG7tIo,13067
302
+ cirq/ops/controlled_gate.py,sha256=3Hex9AdY6c_DedKoCqqpS4gx9rAgm9KZITbwUBXsoYg,13562
303
+ cirq/ops/controlled_gate_test.py,sha256=jmIOlCx8dC3VId4NynX1ZYy7s7tkLav_d-fjiIZyVh0,29308
304
+ cirq/ops/controlled_operation.py,sha256=l0pjUfru39HBuAbBkRCqJmrJDxah0JOFxXXILcUt0v8,13978
305
+ cirq/ops/controlled_operation_test.py,sha256=qXpnUoeWmOQaTMZPAuuICtX9Idf-JWtdARTsTENv54g,16546
306
+ cirq/ops/dense_pauli_string.py,sha256=1TijNu1D2HIbbnwLbT_f546R2L4OCQtm1bKjqhno1Kg,24234
307
+ cirq/ops/dense_pauli_string_test.py,sha256=JLfTLO13Qnr9c5jZOPBTJWD4409vm7uV6vi8R7m1kOg,21517
308
+ cirq/ops/diagonal_gate.py,sha256=HNMxcgKgfZ2ZcXGaPhcBp6yOwu_stpSN3_GtNeWnR5s,8909
309
+ cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
310
+ cirq/ops/eigen_gate.py,sha256=OoUpOwHw6VZ2CpH0Qb-eQLD4c-cjj8wFwBr8NEc7C0g,17788
311
+ cirq/ops/eigen_gate_test.py,sha256=3ZN7texyQ_svk8YAaH3liZiGAgq_SBpNb46nIzKYfWM,16909
312
+ cirq/ops/fourier_transform.py,sha256=JMledJB0tPjLlIlG9bfapJSqass94rXkAheXragQxq8,7455
313
+ cirq/ops/fourier_transform_test.py,sha256=sX5TfZd9-n1WTyZcqOQ0x6yyI8k6rasywijMo3bc1ls,6426
314
+ cirq/ops/fsim_gate.py,sha256=xsk5xfEaUTcGeGV852KTuoE7mxlCHEXg2HZlyiszkd0,20035
315
+ cirq/ops/fsim_gate_test.py,sha256=QgckC2fij30grZJoO6HnQHdGkKcwtiegedEBRid3wF0,25858
316
+ cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
317
+ cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
318
+ cirq/ops/gate_operation.py,sha256=MF8JIYEM6bQu6ft9Eb19hSOillzu8MmaIoXSlmwbm5U,13447
319
+ cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
320
+ cirq/ops/gateset.py,sha256=9HFW5Sg_jPpao8SEd7XgLdc_6xgUwZfvb6f7pfVPIF8,21492
321
+ cirq/ops/gateset_test.py,sha256=_dpKTEwXuOY-jpev9rBPEcMy4KZ7zd6GmJ5JkvZAeog,16580
322
+ cirq/ops/global_phase_op.py,sha256=GcERs4X5h5_at6tvJc8-AcM0cVsLCRPlpPkAWMINm54,5711
323
+ cirq/ops/global_phase_op_test.py,sha256=9BBnPZLLmBzHsMoRPMFTAShx87TJnhTLvvgLpHJF4wc,10721
324
+ cirq/ops/greedy_qubit_manager.py,sha256=UTd9cTRbl4GQmf6ai6zqVBn5TR3-Vg84jJu4AN-0cxc,4050
325
+ cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
326
+ cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
327
+ cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
328
+ cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
329
+ cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
330
+ cirq/ops/linear_combinations.py,sha256=AQA0aFDuHXks44fFtevrc2Zl1chleSlf1A0LkmrZrW8,39883
331
+ cirq/ops/linear_combinations_test.py,sha256=EYqrWlFFThv8dl5B_9yIckEn_z3-Nfzh7rdVzGpIVWM,67351
332
+ cirq/ops/matrix_gates.py,sha256=or8Kc3kP1NFjLbAHemmrZIqYFgEeeteMogNVEzYjosk,10238
333
+ cirq/ops/matrix_gates_test.py,sha256=MEK1VsaAv2Li_aYhFIfD53gytCNo854l5-BXL9yZBFs,14770
334
+ cirq/ops/measure_util.py,sha256=iT7vrYLTo6L4z4_Zdm-8e8iiiKyQgF2v9Ui74Tg52aw,7261
335
+ cirq/ops/measure_util_test.py,sha256=WrbR2jr_bFXxpQe8n3ANLAKYo1hcf-SlgsFOi-ULRXU,5343
336
+ cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
337
+ cirq/ops/measurement_gate_test.py,sha256=SPVD8DTc0Kmkazp7jmUIVHfELihkK_SFu3aXSw-uHbc,18335
338
+ cirq/ops/mixed_unitary_channel.py,sha256=guje2Jbj2uWG8NSlwazK1r-XjxlTHA6s7ti52tWS-Nk,5246
339
+ cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
340
+ cirq/ops/named_qubit.py,sha256=e2GdyDfeyKNgmXiiQh8yW59t4qDIvAEzXjb_NfyhgHs,9997
341
+ cirq/ops/named_qubit_test.py,sha256=bS3sjjVo0Lm7cjoxBGkSsx5FGkUgSM1QxwBjVOHATis,5343
342
+ cirq/ops/op_tree.py,sha256=w2jnYMi8UtV13CROphi4Gesydc5YzmuvXJZsIAGm65k,5277
343
+ cirq/ops/op_tree_test.py,sha256=npk2P6asFc3Z-K_xQ0l9JNam4uBwWMZTGT8rDO5xUmQ,6104
344
+ cirq/ops/parallel_gate.py,sha256=B6uwL0lPJLiv_TL62U4HGyv7FZn_CvljSUK7jKTuu-M,6257
345
+ cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
346
+ cirq/ops/parity_gates.py,sha256=hcF2jtrX-ay46UyiXpH9DT-5ihWhGkhN6fH5454FmKA,14289
347
+ cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
348
+ cirq/ops/pauli_gates.py,sha256=06NzsMKEjBPFUOK6uAKBF5M9vfLOS1owaF7RV_R2Cek,6769
349
+ cirq/ops/pauli_gates_test.py,sha256=YYzQBojxoZTM6WH7pD3PNwmQrIO6U7FTG6AaZ-6z-To,8334
350
+ cirq/ops/pauli_interaction_gate.py,sha256=1drxD57PLCmp7dI9p5oDX2HPzsqwh0rrqHltUjtbWZU,5539
351
+ cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
352
+ cirq/ops/pauli_measurement_gate.py,sha256=OzbQeMzr9cHQsai8K-usg3Il74o8gdXZLksLuYr8RcU,7113
353
+ cirq/ops/pauli_measurement_gate_test.py,sha256=BVTUl5EwLrKwYZmEWmVHYu15tH0L9EkF8SYrm0eL0HI,6814
354
+ cirq/ops/pauli_string.py,sha256=sIU4ykQoAVRfBMfMtC_qSa31kJOVEqpygr5lqst2pic,66249
355
+ cirq/ops/pauli_string_phasor.py,sha256=JLKZem7rdshQ0doNvFMJmP7cLhl9lCsHAI1QlOmbmrg,18207
356
+ cirq/ops/pauli_string_phasor_test.py,sha256=-1mB1WLEFlrKnSfcgR1LabTaeLYf2bvcJQdWxEImGH4,27767
357
+ cirq/ops/pauli_string_raw_types.py,sha256=lXW-Fv2TTv77g_7VMdQun33y4reD4p7dS7g9Nm1Id20,2256
358
+ cirq/ops/pauli_string_raw_types_test.py,sha256=jjFEbQxGsazsR8p4y-EK7SaTryRWagR9Hi7YuixXi6A,2684
359
+ cirq/ops/pauli_string_test.py,sha256=8XuWR-GMf5_evWpqwDPWLaJ_kI8V_Vvf-p-1DLNigiI,73683
360
+ cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
361
+ cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
362
+ cirq/ops/permutation_gate.py,sha256=CiAWDXloj3kszU-aEarBaCXcK73_6vJkcnnHWPKjVY8,4211
363
+ cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
364
+ cirq/ops/phased_iswap_gate.py,sha256=AQIPHurGVx4ccinrT8UZc9bZT9yX53Q4PlBk4uaqrGw,8939
365
+ cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
366
+ cirq/ops/phased_x_gate.py,sha256=ffIRnS_84saQYuwD4wsbEL2i11RXJ7XmxxRteWOwd68,9247
367
+ cirq/ops/phased_x_gate_test.py,sha256=lQ6UV9X52joByV_SLzNceO785uVY5wSqlba8tMpzHSA,10976
368
+ cirq/ops/phased_x_z_gate.py,sha256=88P8w-XdrV-y5n0q3_wci_BmMCZ5BOW4c8eDPjVyrQg,11446
369
+ cirq/ops/phased_x_z_gate_test.py,sha256=ZmV0NdJJMzile88bRHYGYPXxOP785fW_Tn4tCxbphPY,10876
370
+ cirq/ops/projector.py,sha256=xxt3YhomvLfQjFWlU7yeKHTbPlgBHGQUcfiSbMxlIQk,5645
371
+ cirq/ops/projector_test.py,sha256=vphfIBPkrEPXj4I6B_IPM84wOW-DsETSR9ua4lDioF4,9232
372
+ cirq/ops/qid_util.py,sha256=pyU_me-SkhkGG4wMyPReuArUd9_3anrbCQK8PpzwCOY,2077
373
+ cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
374
+ cirq/ops/qubit_manager.py,sha256=5CFtTkkWE5aW4yyFnr2M70_Fw6jNUI-ltTXMVcL9oUc,3549
375
+ cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
376
+ cirq/ops/qubit_order.py,sha256=Ekk246AzaeW6w3fNGNhHdGOQbD_DU8KeXl7BMhX-SDM,5497
377
+ cirq/ops/qubit_order_or_list.py,sha256=5kChRv1gUnBKB-kF6okXoXcCa5CXbJ6HoB6ETpfl3ss,1188
378
+ cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
379
+ cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
380
+ cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
381
+ cirq/ops/raw_types.py,sha256=2QoHkWlVGAY3Yzkvlkop0GhLRdTMlHPGCIZNzffDjcI,43626
382
+ cirq/ops/raw_types_test.py,sha256=ROi20W_gtt5lmDV0-z7LWhEQm93Icg4AzA8OEvlMJVg,35413
383
+ cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
384
+ cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
385
+ cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
386
+ cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
387
+ cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
388
+ cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
389
+ cirq/ops/three_qubit_gates.py,sha256=yPzu3xYz9_bKQCzuRyH3YnB8KHEI1qtdH8whBgHhMkU,27911
390
+ cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
391
+ cirq/ops/two_qubit_diagonal_gate.py,sha256=m2wnFpi0sHA9cxMa2cqwRYGQIlbyTGohMTLdVVQZ2-U,5377
392
+ cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
393
+ cirq/ops/uniform_superposition_gate.py,sha256=LiB_Aft5mQY5aVhe4S8DR4ugMREwXEFTVO1MCU1s0zU,4751
394
+ cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
395
+ cirq/ops/wait_gate.py,sha256=CU_CdgkNZV5BjVnBKu-GEIdkyu787mqiQEV0fnjhLkc,5575
396
+ cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
397
+ cirq/protocols/__init__.py,sha256=SZCBRpL2YbYWMVcvJVR6FGkBv9aGv01oY2skSBvtNcg,6015
398
+ cirq/protocols/act_on_protocol.py,sha256=YE92pdK_TAoeCNiAiKjkz8XwQCGbFcjo1Wst1e6buY4,6880
399
+ cirq/protocols/act_on_protocol_test.py,sha256=X7GNM9mGPCpWukW9_7kF88g12RdqsWhcniIw5LW1tC4,3215
400
+ cirq/protocols/apply_channel_protocol.py,sha256=-FkwzW2FKDY713lGOTIJ0yMIPKp3ZzWqLBl_yhmOGdk,15615
401
+ cirq/protocols/apply_channel_protocol_test.py,sha256=THW95ZzW1y8UtBIuzVJ872wEOZqIcFdPbXocBUzAiWw,10618
402
+ cirq/protocols/apply_mixture_protocol.py,sha256=a5St6DR5kIcXqDxXblBPYFuoSeAT8N1roJguTidGMyM,15321
403
+ cirq/protocols/apply_mixture_protocol_test.py,sha256=_ftefdRBYj73OC_m3179VX8U1-xDesAOHu94tx3d-gU,11142
404
+ cirq/protocols/apply_unitary_protocol.py,sha256=NBq_RqzSAlqHaNi90MKN9uncHUyKpgQ2t9Wa8c-rHdA,29899
405
+ cirq/protocols/apply_unitary_protocol_test.py,sha256=nuGgoN3LYaPUwPKmLQK3LhUqNAJVIQmda5PZN0ocIUg,26190
406
+ cirq/protocols/approximate_equality_protocol.py,sha256=DZ4eNCSwl_MI1LIo6tosFFqw0Gl9snM51C2vR5X1mdA,6293
407
+ cirq/protocols/approximate_equality_protocol_test.py,sha256=qVw2TzKRTZC7fDg6DK_fVEvJzJGmlzBi6JidlJrR_Fc,9212
408
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=jttsQgG7DDYJDcVC3kV-jZxrkJrE5HKrZB8VnyVsziE,17164
409
+ cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=r-kNamR6QPdu-Q9to2DKLrDP9J8rWOA7IxfMVvcO0qE,12074
410
+ cirq/protocols/commutes_protocol.py,sha256=6cJNba3aEsCh_XHIeNTHb0LRzws6ZbxOrKL_rieqU6k,7397
411
+ cirq/protocols/commutes_protocol_test.py,sha256=9YhBFYAwc-XpU7HrQp-GarKwmwmbgyadUYqlkiG10A8,5885
412
+ cirq/protocols/control_key_protocol.py,sha256=uGgfahCHzsFpUGq6flgTMuqPh20zUSB2AOkSrhyoqwQ,2621
413
+ cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
414
+ cirq/protocols/decompose_protocol.py,sha256=zwmrlFmBggInx1u1xZEeBDxaLGRWMGHCp87F7RRQPH4,19129
415
+ cirq/protocols/decompose_protocol_test.py,sha256=s5ELgra5UKExKCjDHUtMOwTZrGmYwxAphCRryRLMM_Q,16456
416
+ cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=y-GPOImHgdjVqXF-qE3SUmlekF6-zI0tgi0E2nTdW1M,4106
417
+ cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
418
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=T_CVVpvckp3ZTsWi089mPqbmwOPLlF6GalEKrVK7Hvs,4309
419
+ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=T6-vtMO-eBXIMRur1nlmAzi4ty4-F1BP59ZRWR_d0HQ,3955
420
+ cirq/protocols/has_unitary_protocol.py,sha256=7dSbLcY8ojqf1Svi8bekf057fNkKl30hFVZiaTJHCZ0,5468
421
+ cirq/protocols/has_unitary_protocol_test.py,sha256=FifK9oCMMyXHsZJNsDNutbKvty-p3jfcwVZzxyWoZ74,5956
422
+ cirq/protocols/hash_from_pickle_test.py,sha256=H1V2cy-gtbKhhewZPSI7kcNqgpkS5luF70JLGZSkuYs,4108
423
+ cirq/protocols/inverse_protocol.py,sha256=tHaY8-dfd0SD59v3DZ_zpwz7lwFrraPExEnIgn1T0RI,3965
424
+ cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
425
+ cirq/protocols/json_serialization.py,sha256=z7Yu2vsNabRkdeYyIuNCoXATHkrOGreTRShNyN0Fjuc,24520
426
+ cirq/protocols/json_serialization_test.py,sha256=An57W8eBWaUF4kKOCos2UlHzNiILnUJvqmZLmwZ_6MA,27872
427
+ cirq/protocols/kraus_protocol.py,sha256=xNcjUBjxLOcsWRDkv7wdJ51iUvDhtHpxy_vXhhc2Gyw,10735
428
+ cirq/protocols/kraus_protocol_test.py,sha256=yw0WEXYNEOgA7xJB9UMIGbHRn2HJwPa88LKOoOuvRWc,7959
429
+ cirq/protocols/measurement_key_protocol.py,sha256=JU7XbZfR7o6Wcv5qRJisp3ZAWwW9Fx7OHtxNMrWtZoQ,13351
430
+ cirq/protocols/measurement_key_protocol_test.py,sha256=PqSU9uB4t2yvPz9hZBLby2mZnZo-DOLlx3HIicyPeLo,8768
431
+ cirq/protocols/mixture_protocol.py,sha256=A8J-kkwUqiQphw6d3DK3QZ-lP31DTWv475ZzdeqYA0w,6428
432
+ cirq/protocols/mixture_protocol_test.py,sha256=Sa0XzglMnVZRJir0EKTTiNJ2yBGVSrGvD8fDoKfYFQg,3858
433
+ cirq/protocols/mul_protocol.py,sha256=Jv7Qq5SejO0F6kpnFcTBML3rjZd-LTmrUJJ_D7PRpR4,2749
434
+ cirq/protocols/mul_protocol_test.py,sha256=J2jvKPr4Doy9Fx7RNCXbjvTkyBu1fcsxfRH-I6OzE34,2172
435
+ cirq/protocols/pauli_expansion_protocol.py,sha256=haLt7_FJUt-jK0im4R25Gku6Zhiyu6Zt-CeB_WonXK4,3768
436
+ cirq/protocols/pauli_expansion_protocol_test.py,sha256=TATNum73ccpG_SbK6FWxcD7rj5kw92mKpzzK1oNZkk8,2769
437
+ cirq/protocols/phase_protocol.py,sha256=e_xsYDgs4K5poWcTBipziiz3Asuc7tGiVSBgD__Mooo,3648
438
+ cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
439
+ cirq/protocols/pow_protocol.py,sha256=q_Y3MMdkOXiB1D6V34lQGNf8vlvc5btZfDeO8M0jZd0,3151
440
+ cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
441
+ cirq/protocols/qasm.py,sha256=7hAnBsGdePEytxqoI-TEx8S4P2NDDhVlhj-7rLFtDak,7216
442
+ cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
443
+ cirq/protocols/qid_shape_protocol.py,sha256=YrJpUDviSCbgH7n0yYYxaV6hh5nKTqWjAXJ2HenLzmA,7682
444
+ cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
445
+ cirq/protocols/resolve_parameters.py,sha256=KAMkSoctbyl_S775T567_mL0Fb46upElSEzk5u_JA3E,7428
446
+ cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
447
+ cirq/protocols/trace_distance_bound.py,sha256=aE8fopaFTFS1baWTgrH-tbdSUz0btgOrxZAWg82LgoM,4179
448
+ cirq/protocols/trace_distance_bound_test.py,sha256=0bI9uYttJj5eayM05kShPh9qkxeKG1egcZ9fXJPZWNU,1980
449
+ cirq/protocols/unitary_protocol.py,sha256=DZx3cIURlCYzxNj49mfAqDjV7IDnf-8X_vOBYjq2TRA,8462
450
+ cirq/protocols/unitary_protocol_test.py,sha256=ZiU-74fCQ5CJ_KvGOBDtIu7A8K5f9lh1FZerx291Gek,10619
451
+ cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
452
+ cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
453
+ cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
454
+ cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.repr,sha256=tJKnheCoKcfH81vhzmCNeMzCygxmcRobaU-lZzYb4kY,62
455
+ cirq/protocols/json_test_data/AnyUnitaryGateFamily.json,sha256=_BSIwi_UcdOVf2JiXp_FKTUqjE0wP8W5UMblFdeT1mA,60
456
+ cirq/protocols/json_test_data/AnyUnitaryGateFamily.repr,sha256=Z_S5nP5R3pPhYHa6Jqsj34G-CcOx_psHBesDvHTz5AU,41
457
+ cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.json,sha256=dsqeDJmjtcIk_RKVoCyX1XYh-toMnGGBGuZ59_RFNbs,152
458
+ cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.repr,sha256=yxGsJgd17f0gqjR6Czu2S4driAi0gd9YElTbtIg3EnE,51
459
+ cirq/protocols/json_test_data/BitFlipChannel.json,sha256=4ZfpIzTz4499IaLZFj2kV2l20JUgNlANYvELa9IW5Qc,47
460
+ cirq/protocols/json_test_data/BitFlipChannel.repr,sha256=z_s9pPlKy_giiBKhm74FH2atbyHyaQDurqFWKwV2CdY,20
461
+ cirq/protocols/json_test_data/BitMaskKeyCondition.json,sha256=e39Vw4ZsMFshlgFfbRYK39XRHdms3eA2P38GiDAzYXY,1596
462
+ cirq/protocols/json_test_data/BitMaskKeyCondition.repr,sha256=bg5EWWsUcYOC9Xb904GnxnCLZJXz8YTUKBNLlx_OGh8,844
463
+ cirq/protocols/json_test_data/BitstringAccumulator.json,sha256=YewIkbw90dcbB0D0mGU5wf4obwH6nsyWO5EG9mh3rtc,5661
464
+ cirq/protocols/json_test_data/BitstringAccumulator.repr,sha256=7jc5mO0lwMODjK4sJAI3hQeHmYyw_jIKMtsSEYN2h9Q,1260
465
+ cirq/protocols/json_test_data/BooleanHamiltonian.json_inward,sha256=oHhPkTBsLogMKpgdAr7RKA4EJ4XNCaSStxalfN-OETQ,218
466
+ cirq/protocols/json_test_data/BooleanHamiltonian.repr_inward,sha256=1KX1OeEy8AvSYU6iFSOFtt6e035nbM13W7fpN_jkAk8,118
467
+ cirq/protocols/json_test_data/BooleanHamiltonianGate.json,sha256=qtZSlssekN571-icySvnBAyD0b6ObsBMN1UTUEnYq4E,143
468
+ cirq/protocols/json_test_data/BooleanHamiltonianGate.repr,sha256=NQXjrOyXnZTh2RSJ8oIDcmbPeKncnyS4pBZ4YQMIpgU,98
469
+ cirq/protocols/json_test_data/CCNOT.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
470
+ cirq/protocols/json_test_data/CCNOT.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
471
+ cirq/protocols/json_test_data/CCNotPowGate.json,sha256=viYGbzfYTdxWq79Yabk0-0yiDV8E0-3CB4Sq-tSHujM,77
472
+ cirq/protocols/json_test_data/CCNotPowGate.repr,sha256=VBrxMM23-57e6jmh-tJTfQz6vAIhdhjUPsMJgVvqvjk,51
473
+ cirq/protocols/json_test_data/CCX.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
474
+ cirq/protocols/json_test_data/CCX.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
475
+ cirq/protocols/json_test_data/CCXPowGate.json,sha256=viYGbzfYTdxWq79Yabk0-0yiDV8E0-3CB4Sq-tSHujM,77
476
+ cirq/protocols/json_test_data/CCXPowGate.repr,sha256=VBrxMM23-57e6jmh-tJTfQz6vAIhdhjUPsMJgVvqvjk,51
477
+ cirq/protocols/json_test_data/CCZ.json,sha256=E9YJcaSgLejcpb2qzP6kmw_bDJnirgoBpQf_EuMroP8,71
478
+ cirq/protocols/json_test_data/CCZ.repr,sha256=C0oYQm7yAuePAgoL2aLHPwQB9vIJx9l-UXx6zBWKSUQ,8
479
+ cirq/protocols/json_test_data/CCZPowGate.json,sha256=wU-ICHSSR-kw_9z3HcTwSBO6ie69Jp4e7d7ONQvrfcw,77
480
+ cirq/protocols/json_test_data/CCZPowGate.repr,sha256=3qz_NybAjA_TnYX0QDQNL3A_Zx0GU71MpZI-btvnxsE,51
481
+ cirq/protocols/json_test_data/CNOT.json,sha256=0IMXOU49nZ1xYhd8gRr5yjYBJTUOcyViCHSXde570mg,70
482
+ cirq/protocols/json_test_data/CNOT.json_inward,sha256=T6n85IkNi_UA1M0Z4vJhLdTvXT_C4BT591Xf2epkdm4,72
483
+ cirq/protocols/json_test_data/CNOT.repr,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
484
+ cirq/protocols/json_test_data/CNOT.repr_inward,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
485
+ cirq/protocols/json_test_data/CNotPowGate.json,sha256=2t2RbA32D4_bdjgc4JXExjTYvUmvV38ejY9jvr8TUKw,76
486
+ cirq/protocols/json_test_data/CNotPowGate.json_inward,sha256=YfnlP4Nj60fTqQ0H7sIVKCWn1ijQGEwQxXIAAm_Q1Hw,78
487
+ cirq/protocols/json_test_data/CNotPowGate.repr,sha256=SCJLIkXQQwqH9NBEX_6ZBa6mqplL36fL81NYBT_6hbM,50
488
+ cirq/protocols/json_test_data/CNotPowGate.repr_inward,sha256=lFWRKAyZwzu14GKSKgU4SFWKGbqE-YgWa8dy5p6TIWM,52
489
+ cirq/protocols/json_test_data/CSWAP.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
490
+ cirq/protocols/json_test_data/CSWAP.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
491
+ cirq/protocols/json_test_data/CSwapGate.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
492
+ cirq/protocols/json_test_data/CSwapGate.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
493
+ cirq/protocols/json_test_data/CX.json,sha256=0IMXOU49nZ1xYhd8gRr5yjYBJTUOcyViCHSXde570mg,70
494
+ cirq/protocols/json_test_data/CX.json_inward,sha256=T6n85IkNi_UA1M0Z4vJhLdTvXT_C4BT591Xf2epkdm4,72
495
+ cirq/protocols/json_test_data/CX.repr,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
496
+ cirq/protocols/json_test_data/CX.repr_inward,sha256=MEz6igUiT1YdVhY3C2s8KHDvat0qC-guDV-K_hqBfxM,9
497
+ cirq/protocols/json_test_data/CXPowGate.json,sha256=2t2RbA32D4_bdjgc4JXExjTYvUmvV38ejY9jvr8TUKw,76
498
+ cirq/protocols/json_test_data/CXPowGate.repr,sha256=SCJLIkXQQwqH9NBEX_6ZBa6mqplL36fL81NYBT_6hbM,50
499
+ cirq/protocols/json_test_data/CXSWAP.json,sha256=uhlMgCTp-UFmnev4a785yr155rQJLLammGtmrN5J43I,428
500
+ cirq/protocols/json_test_data/CXSWAP.repr,sha256=mxBK3JZHsTh7Cz6e7wAfwfFA0mMI2oFWcW2UDjg_zwg,442
501
+ cirq/protocols/json_test_data/CZ.json,sha256=732Zza9yot4TpapFbJaQj3Q0NrcqbolTkyPtr8N0pmA,70
502
+ cirq/protocols/json_test_data/CZ.repr,sha256=PjvOrt0zh_3EWbqxrSVw1o8pIQjIkEBObeM8tai7uUA,7
503
+ cirq/protocols/json_test_data/CZPowGate.json,sha256=3N2Ageh6MeH0ZbqUY549dDkQQmtcOzGCOmbMe7Gfn9M,76
504
+ cirq/protocols/json_test_data/CZPowGate.repr,sha256=r73dZkZPUKUoKycbPay4pUKgQm3iazvrNRdgCYSJbok,50
505
+ cirq/protocols/json_test_data/CZSWAP.json,sha256=NMDqC9hTwfRYxvexnj71llxDQIZ_EtBnoun3fghFevE,428
506
+ cirq/protocols/json_test_data/CZSWAP.repr,sha256=uY2UGApAeQi7e0fwD__deX3XFKtPpIpj42o_60VOOAE,442
507
+ cirq/protocols/json_test_data/CZTargetGateset.json,sha256=awjiW6WeUI76O6ONwObe7JQpz-GQOZH-uckpojiTRP8,1256
508
+ cirq/protocols/json_test_data/CZTargetGateset.repr,sha256=ua9QtMoUcuErWoH6M4IsBP67M41KXjbeOD4dDKodYPA,596
509
+ cirq/protocols/json_test_data/Circuit.json,sha256=pQNIcjuIYBfXnGkqQnn4xuSLoHysFELzi01SxFfcOAY,4379
510
+ cirq/protocols/json_test_data/Circuit.json_inward,sha256=z62hEHwGtkVXrZNfxHX71_lDQ43wk12qtPO0Q0i5qwc,4574
511
+ cirq/protocols/json_test_data/Circuit.repr,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
512
+ cirq/protocols/json_test_data/Circuit.repr_inward,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
513
+ cirq/protocols/json_test_data/CircuitOperation.json,sha256=7khipsZjJJnQQU53DgMlhG-FYzdLUCmAJcmTubby3jA,7045
514
+ cirq/protocols/json_test_data/CircuitOperation.json_inward,sha256=EP3fiuDhxStcshrJC_Uot1hzYxEmlKk4dW66DMK9ALg,7951
515
+ cirq/protocols/json_test_data/CircuitOperation.repr,sha256=zjkjsVG9m3jedRYhKVJG_gqhwYycaqRRCcOuk1EKWvE,1711
516
+ cirq/protocols/json_test_data/CircuitOperation.repr_inward,sha256=1Ml4liM9PWg_hJ2Dr-y93XTDNklNty1RvEUwewmTdEg,1133
517
+ cirq/protocols/json_test_data/ClassicalDataDictionaryStore.json,sha256=G09lSA5vshMhiXz_jgFw0STHjc08pJ0UczVCz8SGYLE,1185
518
+ cirq/protocols/json_test_data/ClassicalDataDictionaryStore.repr,sha256=bOLOBw-nLRvdkd7oYcLzkh5r-cBZAxwo7H6xdDgtOHw,404
519
+ cirq/protocols/json_test_data/ClassicallyControlledOperation.json,sha256=7t_Yyjhk8Ig-XyfOboE92K149csQbwvLoEwIsuDVHDw,669
520
+ cirq/protocols/json_test_data/ClassicallyControlledOperation.repr,sha256=NHZYgJuaXSbTZl-X666hSmzH8OhGk8SUap3gVV1ScpI,173
521
+ cirq/protocols/json_test_data/CliffordGate.json,sha256=4YQxUNn3U294raiXxRahGJNb5-vbfm9-94Aj7gtVl24,382
522
+ cirq/protocols/json_test_data/CliffordGate.repr,sha256=xmgFCWoMGH8XbRlrJx0RRBOR1XQuepE5LhJUCR3zUGY,72
523
+ cirq/protocols/json_test_data/CliffordState.json,sha256=kocv5UWA2qb6JXsk0KZFN0sJiuwzAbSb2_gkyGlUL4s,464
524
+ cirq/protocols/json_test_data/CliffordState.json_inward,sha256=HZJxJ2_qtv8M0rqfILPsGK368XWz5dnWiLsiLzv56gI,733
525
+ cirq/protocols/json_test_data/CliffordState.repr,sha256=irZZrWXfNYM-bjA4IqHhgJMlTDlG6rtlP34t9ix71co,52
526
+ cirq/protocols/json_test_data/CliffordState.repr_inward,sha256=irZZrWXfNYM-bjA4IqHhgJMlTDlG6rtlP34t9ix71co,52
527
+ cirq/protocols/json_test_data/CliffordTableau.json,sha256=ErcX0cp1XEM28GvuVCxbWNLOx7OfVQtsB6cYwGOHfms,209
528
+ cirq/protocols/json_test_data/CliffordTableau.repr,sha256=BA-VCQ1WeZNyhIwlQLeZUiLCeU2mTVuY4LA9Og0tJZE,34
529
+ cirq/protocols/json_test_data/Concat.json,sha256=yBNdsxH1jxEcLPnGpW1Ndji-68C1N8M-CQnco0WWCWA,311
530
+ cirq/protocols/json_test_data/Concat.repr,sha256=WG2vmD9Z1odmwXJA2N68cFjz4DkkoHJYPGNzOc0NUWo,105
531
+ cirq/protocols/json_test_data/ConstantQubitNoiseModel.json,sha256=dbe4xJvXXIOv1KyjGJXlvJ3kd3W7XEHQt5xFY0bGEtk,144
532
+ cirq/protocols/json_test_data/ConstantQubitNoiseModel.repr,sha256=OIRaaB6GlqJY_8TkEwvZQ8VpbPNi6fWii1vhTJn0t4o,36
533
+ cirq/protocols/json_test_data/ControlledGate.json,sha256=CjFsQaCrr84mZ-fD2els2AQ0QZNlK9Jv4AP0znV02kA,757
534
+ cirq/protocols/json_test_data/ControlledGate.json_inward,sha256=NeXhBSiXf8npvH319na_0aqCk7rTEuL_kBY1jlB5i-M,238
535
+ cirq/protocols/json_test_data/ControlledGate.repr,sha256=YNbRlUv2JRbe6zpids4NwwYLhlWCpFs2SAHgx3mz8UM,243
536
+ cirq/protocols/json_test_data/ControlledGate.repr_inward,sha256=ZletyOLNa31cg5LTem_PSWu6uFVJKrmL2mezc6kcDME,90
537
+ cirq/protocols/json_test_data/ControlledOperation.json,sha256=hUhXlUJH2NrRX-lGO5enx0wKUXBgtlMGUO4Bd2nlzAo,1338
538
+ cirq/protocols/json_test_data/ControlledOperation.json_inward,sha256=1C81pXWbBH6pogBGuRDOAPy0T3tRvUiky1-CIuWZMHk,502
539
+ cirq/protocols/json_test_data/ControlledOperation.repr,sha256=ZROxgs5jdS-zohMfm7rXjgUrERCCE6_aO6QQkub91oA,361
540
+ cirq/protocols/json_test_data/ControlledOperation.repr_inward,sha256=txZg3KyY9vW2XWVBwOzXFdb9E_dJVEFW78DYfH5sG8g,154
541
+ cirq/protocols/json_test_data/CrossEntropyResult.json_inward,sha256=93bRLYDToFI7Qanz7cJjvHpA76zZLy8IyKCXvzbql1o,478
542
+ cirq/protocols/json_test_data/CrossEntropyResult.repr_inward,sha256=uW7xLk0vetWFLtBs7DJN70L2O9wX2BA_FreMCa1knSc,233
543
+ cirq/protocols/json_test_data/CrossEntropyResultDict.json_inward,sha256=qY6ZzGWM23sMH2LRr0e8rWcIxkfUBJhDSpO5hP_-mEM,1046
544
+ cirq/protocols/json_test_data/CrossEntropyResultDict.repr_inward,sha256=nbUsiyup-uqBFH_Oh4wgVRR7ce4mF3t7y1Nq01BHqpA,370
545
+ cirq/protocols/json_test_data/DensePauliString.json,sha256=0oR08nXQ9sauMF8Q8tcLRqX-_VDmZ8C98Fm-e-M1wtg,172
546
+ cirq/protocols/json_test_data/DensePauliString.repr,sha256=aS0Ey4uZCNvo_WFF8QmUmY12gyNMBd4v73mF-U7qNUU,45
547
+ cirq/protocols/json_test_data/DepolarizingChannel.json,sha256=ykTAIXaLq9qWESrGEA-yh3AzrR2170IQqe5gdoECr-M,52
548
+ cirq/protocols/json_test_data/DepolarizingChannel.repr,sha256=WPSvrB9Y7Pnqkil2Iju57dtBFus-rWAosO00wz70jq0,22
549
+ cirq/protocols/json_test_data/DeviceMetadata.json,sha256=6zZJs9XRvDuhuRWd0Z86EsCdo8L2UY6R9VZXCuD47W8,719
550
+ cirq/protocols/json_test_data/DeviceMetadata.repr,sha256=LJ1ltuguMUs3y2o2oZcy-fvEgTcdCchp8IB4Eyl9RAo,62
551
+ cirq/protocols/json_test_data/DiagonalGate.json,sha256=AuxY2cHJMpAfWqyccp6Iq-OawfDxs3aL3ytaE2z-uS8,101
552
+ cirq/protocols/json_test_data/DiagonalGate.repr,sha256=ZK3ToH0R8BQhxUfhbY6VtSORTPDnVy7C-p5z-opq3LE,60
553
+ cirq/protocols/json_test_data/Duration.json,sha256=g-Rtyiupttvbdq28uEX8pejBAp-6Zrx6_c5bk9KBseM,43
554
+ cirq/protocols/json_test_data/Duration.repr,sha256=-t9oVLMifuu5Dau2m5nWT1SQ-jjc01x6ScrdVcOW_WY,22
555
+ cirq/protocols/json_test_data/FREDKIN.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphUyEmoppVwgmT1Q,30
556
+ cirq/protocols/json_test_data/FREDKIN.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
557
+ cirq/protocols/json_test_data/FSimGate.json,sha256=rYHToOnu4UaEEsv1E78s5OQpqynk9vkIx3aWWQBpLiU,63
558
+ cirq/protocols/json_test_data/FSimGate.repr,sha256=IBm0Q5w6y5q_6GAkevA1Xqhw3iJX7I2ja2EhMBlkz7c,37
559
+ cirq/protocols/json_test_data/FrozenCircuit.json,sha256=pmNbBikHVtR3AuyU47GEIbhWQxH54kQyU8Q4V3T6WHA,4965
560
+ cirq/protocols/json_test_data/FrozenCircuit.json_inward,sha256=xRJhdBlTFvWUwJJR6tTqQsx-OY61c028_KubMcAz4l4,6776
561
+ cirq/protocols/json_test_data/FrozenCircuit.repr,sha256=heGqAXaCvVhECDDolqwnCTWECNKf6rr_XCDx9Er7F2I,707
562
+ cirq/protocols/json_test_data/FrozenCircuit.repr_inward,sha256=EwE8nM5rQxhP5CH1a8cDiDy2IUMJKA-o5BfmIekl0iQ,819
563
+ cirq/protocols/json_test_data/GateFamily.json,sha256=r_a61qQDvSE5EUv3ypoF2_6vaKUmWAjCaM-3hF_XpsM,1202
564
+ cirq/protocols/json_test_data/GateFamily.repr,sha256=iiNLDxjKNOlyrGb-ytHIgX4csX4cKDk3eww6Sb7VtgA,616
565
+ cirq/protocols/json_test_data/GateOperation.json,sha256=Nuvle9pqzceiWU5fqxvngWKbAs2psc4R1C7vOHz2TEE,1634
566
+ cirq/protocols/json_test_data/GateOperation.json_inward,sha256=yUyTMmOzBrnqGrtu3Zku1El1dF8QNj3dD4Tt2mNbTt8,1636
567
+ cirq/protocols/json_test_data/GateOperation.repr,sha256=i_xPGhMjcO5OZkodaKJplmJ9LrbhiDd1vhyZx5UhYWw,318
568
+ cirq/protocols/json_test_data/GateOperation.repr_inward,sha256=TfXbA84DmmjbCke25ZHFGopxRE64S3mlmGaa54HnYEA,320
569
+ cirq/protocols/json_test_data/Gateset.json,sha256=nI5lhoUgsF9AGEeuMoHuPz3ulr9al5N00qh9lbtaKcw,1636
570
+ cirq/protocols/json_test_data/Gateset.json_inward,sha256=xak5xkOb-rSHOnFPfDGGT1ru0tBcHBBu45vYS6E2PUU,2037
571
+ cirq/protocols/json_test_data/Gateset.repr,sha256=z-F0QpxV4ERHOWrywK3obgbzBVYp0U8no8YRPWDzqLk,357
572
+ cirq/protocols/json_test_data/Gateset.repr_inward,sha256=bh6OK4Ly3j6EbytjVdyyZEI7kr4irdBEotu7UfiRcpE,386
573
+ cirq/protocols/json_test_data/GeneralizedAmplitudeDampingChannel.json,sha256=9n_9YB2RedyBFAiSJn8cjG4pVCkOhhYzDGfKxuyi56U,83
574
+ cirq/protocols/json_test_data/GeneralizedAmplitudeDampingChannel.repr,sha256=B8IcecjURK2UNviwn_HEZgDRiW6DhgmMJiVWJykLjNc,48
575
+ cirq/protocols/json_test_data/GlobalPhaseGate.json,sha256=A5dqfTH23rT77sO4EHeyfzL20y0fhKvODmudMevsgYA,123
576
+ cirq/protocols/json_test_data/GlobalPhaseGate.repr,sha256=gDLHpkg-pfN4-lz_abzZb3K2DgulpQ2YR5uAu1Dykwg,29
577
+ cirq/protocols/json_test_data/GlobalPhaseOperation.json_inward,sha256=mjssuAqSqgGpNmX7RKY6d1LgkCPeVe0TurimhJQ3128,128
578
+ cirq/protocols/json_test_data/GlobalPhaseOperation.repr_inward,sha256=E4q15ArsJmEVJKUD7M5s0CIGHRoj3n318XtyF2PZ2EM,36
579
+ cirq/protocols/json_test_data/GridDeviceMetadata.json,sha256=VUf487Y5_BN3FFNGyvUAHp6BgHl4i3jvngaM45n9B2A,5961
580
+ cirq/protocols/json_test_data/GridDeviceMetadata.json_inward,sha256=X7VkPt3dmKNeU6j3EEzBlIn3i_R47b2kt0nSDy2HOqo,4507
581
+ cirq/protocols/json_test_data/GridDeviceMetadata.repr,sha256=CUgbaLZ0862iK2mLS_TT1KQXPpSW1GHBYL129k7gJW0,1643
582
+ cirq/protocols/json_test_data/GridDeviceMetadata.repr_inward,sha256=5-tHgWDBLwj3pO9zk8PwFI2WVQehlNiuD-RpzzvqRmc,1483
583
+ cirq/protocols/json_test_data/GridInteractionLayer.json,sha256=cknuXeHfwGozmVXd6THWPYekpzI8HnLWl5jXSkbI0A4,101
584
+ cirq/protocols/json_test_data/GridInteractionLayer.repr,sha256=TiFgGlm8d2jCVCDzhx9cszrLQzcv-VPFK3LoQAan9B4,82
585
+ cirq/protocols/json_test_data/GridQid.json,sha256=hWMrmU0ghYgnQbl68phBRJOa_KBUZIv0iTmXgmVpDqM,72
586
+ cirq/protocols/json_test_data/GridQid.repr,sha256=XX1XEb941M6if3604YWq9WNgSfjUGD5NLYOpeBsUntI,33
587
+ cirq/protocols/json_test_data/GridQubit.json,sha256=-NehjeVv5xBjj70mdVIQNwLCI6-p1RI0lGN75IK4srU,56
588
+ cirq/protocols/json_test_data/GridQubit.repr,sha256=t5ScTXpGREbMhtsC6w196bYMdoZgBGC_zWuiLbyTSsg,22
589
+ cirq/protocols/json_test_data/H.json,sha256=Z_ZInvhKgdgUxHklH8vzlBl5_VAbQrQeP8VQrWQkdm4,69
590
+ cirq/protocols/json_test_data/H.repr,sha256=bOk_DwlVKvg48KLllfHlj692wQq_3rnbvM5Bd4QKE4U,6
591
+ cirq/protocols/json_test_data/HPowGate.json,sha256=VC9CnubF8nb1pu51zOgN5y1wbouBLZVefKwiLZK_TBk,169
592
+ cirq/protocols/json_test_data/HPowGate.repr,sha256=giHvI1G1YiG-nEjiP-F7GSvfms6Dn5Zv8tvr1j5cMCU,31
593
+ cirq/protocols/json_test_data/I.json,sha256=JUZNEOMEuG8ZxRLPit0pnzBZWkIcUhXfJWnEfWNVu9Q,52
594
+ cirq/protocols/json_test_data/I.repr,sha256=TDlI3KYiF-_gSlrB8teYEPCbL1vgTxInjBF9k1RroBo,6
595
+ cirq/protocols/json_test_data/ISWAP.json,sha256=LXDo7JPW4UimvFbb6ca1i5sFG-6Xa6Jp8iq8bUXZzXg,73
596
+ cirq/protocols/json_test_data/ISWAP.repr,sha256=FCxdKHgZP6bRBGDjchQw96XEecVKBuqHMlixauTuvFM,10
597
+ cirq/protocols/json_test_data/ISWAP_INV.json,sha256=LZSKWT-pxVfcvZskof3HwXm1FuML-ZDx22z3zvsvvRo,74
598
+ cirq/protocols/json_test_data/ISWAP_INV.repr,sha256=_hZ_9aRtWGnXfd2K5UmNeNBkwA6ugzBprJmfq0BD618,14
599
+ cirq/protocols/json_test_data/ISwapPowGate.json,sha256=qH0ShbfvtKy0sFGkAd9iKMUX3W5zcdonrIyFQ5TsPgM,177
600
+ cirq/protocols/json_test_data/ISwapPowGate.repr,sha256=nJGTK2uGRSr3H8uCKvIUJqapGtNfoF5kYOpJL35CpQ4,39
601
+ cirq/protocols/json_test_data/IdentityGate.json,sha256=JivT5zKI7qd3RKRmD6urzp4upxinYIBj9qasxdsFHGM,258
602
+ cirq/protocols/json_test_data/IdentityGate.repr,sha256=gMYOMtrfRgb4RVK3uUwD1midnCM174zAcHr5s0LXCSw,69
603
+ cirq/protocols/json_test_data/IdentityOperation.json_inward,sha256=xR_zlzYY6guLBmnP9wT8jMH1LwSkd-PBNeLIpuT_oyc,600
604
+ cirq/protocols/json_test_data/IdentityOperation.repr_inward,sha256=oIJ8KA4aHJYMtLirsUu0a-F8hyQ2qUZ87Cop6SKnAFI,185
605
+ cirq/protocols/json_test_data/InitObsSetting.json,sha256=40kW5h0F_HC5SOEFFtbTgymLJjcZHwVRUzfvAnTT8oA,1048
606
+ cirq/protocols/json_test_data/InitObsSetting.repr,sha256=QpjddPOwqrVFkc0gHZWOdJYXlO5Q4ftbncY5ST88xuY,197
607
+ cirq/protocols/json_test_data/InsertionNoiseModel.json,sha256=pjRRfBlMY1LT58HBYxCnPYs3hvXTP5SIEecKINPXuJw,2245
608
+ cirq/protocols/json_test_data/InsertionNoiseModel.repr,sha256=_UuncrqSmJtanZeOUgB4XlkG5eYtSH81YPIwQeTUrBw,582
609
+ cirq/protocols/json_test_data/KET_IMAG.json,sha256=PjVfVhvJTTDTlhl53RNPs78m7L88K1G7d0z2Nr2T-b0,52
610
+ cirq/protocols/json_test_data/KET_IMAG.repr,sha256=Mh3qpHzI_0JEN-j6qOt73vK-q78XIkU81GxSul9wH3o,13
611
+ cirq/protocols/json_test_data/KET_MINUS.json,sha256=JaA_j47GDV4O3I8tA1cfArWAi6LOqjNW0dNmi6HKef0,53
612
+ cirq/protocols/json_test_data/KET_MINUS.repr,sha256=RwCQUjKloqOD4gg4n72soY72RZTYnNuN7ioaJpe5tkM,14
613
+ cirq/protocols/json_test_data/KET_MINUS_IMAG.json,sha256=CuE3gXWVnaoVhrHSxuA0pqRNHvud-Gvpnwb5aV517oQ,53
614
+ cirq/protocols/json_test_data/KET_MINUS_IMAG.repr,sha256=VHn7DNkf1oGZFIXHhzge1swda7vMJc7kbtJdrRvopDI,19
615
+ cirq/protocols/json_test_data/KET_ONE.json,sha256=SWXNCTHlDwV0rkfheuXUYEDPjGwMxQb1OrCAbIGpYz0,53
616
+ cirq/protocols/json_test_data/KET_ONE.repr,sha256=curoumsWdLNOpS_D0ivqWX7X-BX9SoOPK2EJtIDjgvo,12
617
+ cirq/protocols/json_test_data/KET_PLUS.json,sha256=djvMv4dxwk9nhgkCSffV5T3wImPTfhn2TeQzE-lu_L8,52
618
+ cirq/protocols/json_test_data/KET_PLUS.repr,sha256=4RJb7-MiQjEXHAWWZr2ADjAh3sx-yBjDiFMysuqYuws,13
619
+ cirq/protocols/json_test_data/KET_ZERO.json,sha256=IGd1lD9WjahoinpIwm5-MJHxOeWVAqjPP7-MtsfwsRM,52
620
+ cirq/protocols/json_test_data/KET_ZERO.repr,sha256=Eb_mFAAl6WAoHRTWP8GM8M1NSPripi9iN7oRsYbjyCk,13
621
+ cirq/protocols/json_test_data/KeyCondition.json,sha256=4n-CpHBqQW6028gXMLyNFwtsws2L4W-nMFcDumpNUpc,131
622
+ cirq/protocols/json_test_data/KeyCondition.repr,sha256=-oP0cu3yLYfhCLkGyEBHs69MD53ieWbM-jzZH4x-1QU,47
623
+ cirq/protocols/json_test_data/KrausChannel.json,sha256=KpwkT0v62A-szlcC6vTNKwSQxL0LLR_xK9KLlFpKMrw,703
624
+ cirq/protocols/json_test_data/KrausChannel.repr,sha256=MTfDMU4wuUcPgpF_Ic0ZoDR95vcwODYGikaPMVEkTFU,333
625
+ cirq/protocols/json_test_data/LineQid.json,sha256=ZglITwWO3eA7eoPvNcIkt0ZVALj7m3SgQUmsSBi62Rk,209
626
+ cirq/protocols/json_test_data/LineQid.repr,sha256=EQ4_z67ASw4XWLl05qlHGT4ysysMtH1nht5sfXwYbwY,93
627
+ cirq/protocols/json_test_data/LineQubit.json,sha256=FRphBwNwyT9G5AaRAEQUhSJs5pp5m7fwbFanHzHgUuk,104
628
+ cirq/protocols/json_test_data/LineQubit.repr,sha256=5luUi7hiv7HmjPsu88aj7v4LID8nDOPQG1m7BIt6Klc,40
629
+ cirq/protocols/json_test_data/LineTopology.json,sha256=zy-oVNfzkyc7DwLHfWXUNjxzTrmsQvFYv3UDb_rcoYM,50
630
+ cirq/protocols/json_test_data/LineTopology.repr,sha256=6XRmh7knnEW1zeWssm26_ySTY7xyNUKkne_ol7otidg,30
631
+ cirq/protocols/json_test_data/LinearDict.json,sha256=EqCoSR3SqwmTfkuqII-AP7iL0EObemfWvlFAfCAsX1I,520
632
+ cirq/protocols/json_test_data/LinearDict.repr,sha256=nzooCij_zEBNKhKW6q33JahEvuHfLIKvzHOuG3CtmOI,126
633
+ cirq/protocols/json_test_data/Linspace.json,sha256=ygvT3kNsZuq_PKyPRhRthfOHXCfsaYthGXlhdTsE9m8,329
634
+ cirq/protocols/json_test_data/Linspace.repr,sha256=PJbvEv4bwJckZhaTTtgiuzI-9ug-fYXKi4FhbvSj73E,136
635
+ cirq/protocols/json_test_data/ListSweep.json,sha256=I1_NvIs06X4xaZdswIvXb0FD_DopX54TPhSZ_MizMRQ,311
636
+ cirq/protocols/json_test_data/ListSweep.repr,sha256=8pbPgdn325CqWWWHKO40KV1guu97zBABL_AL1E9CS8A,81
637
+ cirq/protocols/json_test_data/MatrixGate.json,sha256=0wyhxqGnR-j5roWX58TC2mRwkulO8796D9nRGYbaMhw,3806
638
+ cirq/protocols/json_test_data/MatrixGate.repr,sha256=et-yPv6f-XKxvNwxeL92QAamGzpTuLsxolFibenMris,243
639
+ cirq/protocols/json_test_data/MeasurementGate.json,sha256=ojFPaCG2HwJ0WVoH0kA4LekVBagAEUvDdwY_do_4XzQ,831
640
+ cirq/protocols/json_test_data/MeasurementGate.repr,sha256=TBX8BBb3fQbWcMDGFXfnWhm6qIoCjKjG47A0JLzTLzY,372
641
+ cirq/protocols/json_test_data/MeasurementKey.json,sha256=6j_4eY5lfnhA2rVt0eWcYle50AF2kddvWP8zvlhl3wk,259
642
+ cirq/protocols/json_test_data/MeasurementKey.repr,sha256=DiAyQ0u0LWepSi3KPgYhMWHlMRQqrXShtOSeHsUP4Pg,157
643
+ cirq/protocols/json_test_data/MeasurementType.json,sha256=OjFtbTIm-EweRuREf6jV_YAL_0obxkmBUlI81KYCtps,6
644
+ cirq/protocols/json_test_data/MeasurementType.repr,sha256=GKWPv9INNDbe8VHe-Ef3i1ykQ9aGIxaom-8Q3E4ptYc,64
645
+ cirq/protocols/json_test_data/MixedUnitaryChannel.json,sha256=S44Yl3LDXyPuvCs_8oU0iA4hXvm4k11_FnQ-FwrE11A,2890
646
+ cirq/protocols/json_test_data/MixedUnitaryChannel.repr,sha256=btyHCJZOc0KUvNHOCYqvsDkPi352tjy9O7Zf4XI5zL8,486
647
+ cirq/protocols/json_test_data/Moment.json,sha256=XkNGe04dogNVHWwAPUVFyGJZWHKmFggWoy2-gU6Hm9U,1336
648
+ cirq/protocols/json_test_data/Moment.repr,sha256=zmD-5J0nOIrJzqDxxfKDnhc8RvVghIcJUk8pNTCyyOg,194
649
+ cirq/protocols/json_test_data/MultiAsymmetricDepolarizingChannel.json,sha256=FQ68e4brRCsjN_5CL53DeF14QgCqO4V2mjV6HoGMX2c,115
650
+ cirq/protocols/json_test_data/MultiAsymmetricDepolarizingChannel.repr,sha256=nqLmF-C4XmYAfQ6-uV70uPnHj4fWmiP1axVyWb6DrJA,68
651
+ cirq/protocols/json_test_data/MultiDepolarizingChannel.json,sha256=Iyhfj1Te8kmiohUbYDliUgq8eSoYmAd2flDtq1UopBU,69
652
+ cirq/protocols/json_test_data/MultiDepolarizingChannel.repr,sha256=irweLwoQcgXjo3rauM_LFr6go18AmEFuUVoJrPJ167U,33
653
+ cirq/protocols/json_test_data/MutableDensePauliString.json,sha256=8tacPXw8rBV16LtAAqgYbC4e9D6x9d_UAh4N6wAguug,180
654
+ cirq/protocols/json_test_data/MutableDensePauliString.repr,sha256=beJuIhJ9znTlwmi0dFZVuNH5Gg08ldZyTaUrgEC56Lc,57
655
+ cirq/protocols/json_test_data/MutablePauliString.json,sha256=Hh55iSakuxfvcR9o4H5jJjxJGLtH5YVPWeYUQ9Dez8Y,411
656
+ cirq/protocols/json_test_data/MutablePauliString.repr,sha256=Z14lmAcnb1epu42k4IaluTWDYfE34R9ZbDUMprgR6JI,102
657
+ cirq/protocols/json_test_data/NO_NOISE.json,sha256=DVqPv7EmW2CPheT6K6wXRIT06BseOJhEDnXnNbXIdr8,34
658
+ cirq/protocols/json_test_data/NO_NOISE.repr,sha256=3tDPJlXEx0xQnRqISC0JA9o5ADWiUrtXSSy0DaxsTLw,13
659
+ cirq/protocols/json_test_data/NamedQid.json,sha256=74fdT6slQkdk7mQN1OjXF8OrfGVHMe__S3H5K_HEqSE,68
660
+ cirq/protocols/json_test_data/NamedQid.repr,sha256=94WW-0lj8ZgjNtMnJfTgsWsk4rh9uoUIkxWfEUT9Cfs,32
661
+ cirq/protocols/json_test_data/NamedQubit.json,sha256=9-71jVCxE6vh9Y-q5sL_hqbDTX65ODZ9MB-env7jJ8k,51
662
+ cirq/protocols/json_test_data/NamedQubit.repr,sha256=5Quly9x0wrDBQck_eQqf-wSBeV-2hrP8pCaL0ILZ6bQ,25
663
+ cirq/protocols/json_test_data/NoIdentifierQubit.json,sha256=7uWqyPYDlSLDd_sPiIkvMVwtGjbZPlKZEl21wihWHkQ,40
664
+ cirq/protocols/json_test_data/NoIdentifierQubit.repr,sha256=kYHtz0ffOnpMWi2o-64okh0aFgGCEcU5vvoJd_pvVs0,32
665
+ cirq/protocols/json_test_data/ObservableMeasuredResult.json,sha256=ujXPPI_ImhnGUR-4_I13-l4fB06ymiC8M59busJd55o,1324
666
+ cirq/protocols/json_test_data/ObservableMeasuredResult.repr,sha256=uKBxHZ9bIK-Uy8trgpJlI7e9gJaOoeHaasZaXk-L_ek,310
667
+ cirq/protocols/json_test_data/OpIdentifier.json,sha256=c2gI3xWXFit000q2leQ2hu629u28oIwG-vDkhMKo1-g,605
668
+ cirq/protocols/json_test_data/OpIdentifier.repr,sha256=tmqKctXBKHa_sLxCgwYBOD-UFh3VBd7_6VGgX_9MR_c,415
669
+ cirq/protocols/json_test_data/ParallelGate.json,sha256=S3ciRlLrJ4qlFaTxh-N8riCUZzdevbYhuQ6dWAkxEkc,146
670
+ cirq/protocols/json_test_data/ParallelGate.repr,sha256=FmcbIVImld4M45OsTWB3vw6wUlVrSyP1bVxiuNpaZZg,48
671
+ cirq/protocols/json_test_data/ParallelGateFamily.json,sha256=XKp4GHHi_cH2ClHAWawt65c34jSV92sQPfi4ccMqJEw,727
672
+ cirq/protocols/json_test_data/ParallelGateFamily.repr,sha256=Gpsub1A32f43nhteY7XiVKoSmDxfmAMjKS6zELi7lDY,268
673
+ cirq/protocols/json_test_data/ParallelGateOperation.json_inward,sha256=lfnenzoIc07jdoGhqQRC0GRzDuRR3-kCmzZm6R7aar0,278
674
+ cirq/protocols/json_test_data/ParallelGateOperation.repr_inward,sha256=uDcNTd-vqq7ztuREIStrnNWva9AZdsWTBFkHLqBMF6U,75
675
+ cirq/protocols/json_test_data/ParamResolver.json,sha256=n3pj6g_tPUz3GMFtpyGdYmpI_j5s1EtViUq8miWxmDw,464
676
+ cirq/protocols/json_test_data/ParamResolver.repr,sha256=wUFtM8qsZWlRZdPSCuS7zs7ZETS6glRCqyyIDZkWQWw,107
677
+ cirq/protocols/json_test_data/PauliInteractionGate.json,sha256=GB0nyDvh-HIcfjwGXabcDuaFMPzIX34yjENuUWSp0Vs,264
678
+ cirq/protocols/json_test_data/PauliInteractionGate.repr,sha256=SS8sW-Jci8dEiRFaE-d1IIBfErp07zGf-YF4mHyzCuI,54
679
+ cirq/protocols/json_test_data/PauliMeasurementGate.json,sha256=ItpEiEGSiBMmmud0YYdT3S7EwVDADQTfUSsz1BSHnrY,907
680
+ cirq/protocols/json_test_data/PauliMeasurementGate.json_inward,sha256=3-6Zz3miag760VWRohQExraDuLGGqt63edB6z_tjqJ4,718
681
+ cirq/protocols/json_test_data/PauliMeasurementGate.repr,sha256=UiKJv71DKgJpPtnz2s7a7tuCJ2qOWHn1i-_e6wUuLoI,316
682
+ cirq/protocols/json_test_data/PauliMeasurementGate.repr_inward,sha256=DM9k57g_OpoJGYPqU_9-lwa8LflIbBfmLLQI_MZou3U,202
683
+ cirq/protocols/json_test_data/PauliString.json,sha256=v3EiJjP5VPjzkCvwU273p0LAI_MEkidJk_mQ_UNiZOY,1336
684
+ cirq/protocols/json_test_data/PauliString.repr,sha256=EVRdOk_vwXyUeuM5DfrEfhEeP0xkXRpgEtMczkiVREA,160
685
+ cirq/protocols/json_test_data/PauliStringPhasor.json,sha256=7VnUMndJeetKM8vZocs03SndGzootSkGJi1OJ7aueD4,1066
686
+ cirq/protocols/json_test_data/PauliStringPhasor.repr,sha256=OgMMabgKRRix69peUP67Kn-Ru-F491F4wEikMBAGN64,212
687
+ cirq/protocols/json_test_data/PauliStringPhasorGate.json,sha256=iQv1JVC6Fns8WNrX-GabE6kx9XZKFGYaDVf1IIZHHq0,314
688
+ cirq/protocols/json_test_data/PauliStringPhasorGate.repr,sha256=BYA8PFj9nC7r-7FmY4qNVSsVHkhyHf4wMdpft0nic7A,108
689
+ cirq/protocols/json_test_data/PauliSum.json,sha256=nR9mDEzTNyusHSgdAPNMIaTtgfEeMr5SqmLdQrwTECw,1178
690
+ cirq/protocols/json_test_data/PauliSum.repr,sha256=69HYGBriUoFZhrD-nk0V_kLxjMPIKCVFrWP067InJVc,188
691
+ cirq/protocols/json_test_data/PhaseDampingChannel.json,sha256=jDg59mvWzp1HD0tUJajOdKeAjefjpomffUIbFWd7jac,56
692
+ cirq/protocols/json_test_data/PhaseDampingChannel.repr,sha256=vN_-T0lCAExBtHuZVPXYOK6h2krukXJ1sLjY1gx7iUg,26
693
+ cirq/protocols/json_test_data/PhaseFlipChannel.json,sha256=OsPwcDJzsK_8NG8kO_JqmcMmxlBprGsEjDGFYNdVwSs,49
694
+ cirq/protocols/json_test_data/PhaseFlipChannel.repr,sha256=e8fv0dg5519VlADuQT4KtNQ7g20vgtXeA8BUM6A2eRs,22
695
+ cirq/protocols/json_test_data/PhaseGradientGate.json,sha256=ItZqMV0dCckm0rt9xn1mgbJK08bODtFmqE3yltwWDiQ,78
696
+ cirq/protocols/json_test_data/PhaseGradientGate.repr,sha256=yFN_g2cKEm2meituU76iT2bKj1y3sFHVFPJ8OQn4XpA,52
697
+ cirq/protocols/json_test_data/PhasedFSimGate.json,sha256=nrINsqITzy1AHuEEvPrsQEpIu-5kwGh5MngUAP_KEgQ,114
698
+ cirq/protocols/json_test_data/PhasedFSimGate.repr,sha256=ogfTz7j5522Pwndh1785ZpZFfxY5X50vA6xyZrAAxUM,73
699
+ cirq/protocols/json_test_data/PhasedISwapPowGate.json,sha256=KBEeJUr2pLAlD39snTCuNwkjirOETbInmSctetLLDNQ,106
700
+ cirq/protocols/json_test_data/PhasedISwapPowGate.json_inward,sha256=TX-OfxAzGnzplTjic1UVWSuakhAXyp4v38-0MQ-fVCE,91
701
+ cirq/protocols/json_test_data/PhasedISwapPowGate.repr,sha256=ls3jjhD8CJyBQeaMvmtgLiT-sxWVg-x1-xwkIstHYmI,75
702
+ cirq/protocols/json_test_data/PhasedISwapPowGate.repr_inward,sha256=9XgdIrvAJKw7roVwlGzpZtcqWsHQYSKVvbaQchlCSRk,57
703
+ cirq/protocols/json_test_data/PhasedXPowGate.json,sha256=ewn2xXnpIVF7NjvG5HjiaIYBbRCoa_45ZOzItaHifrU,108
704
+ cirq/protocols/json_test_data/PhasedXPowGate.repr,sha256=zI_RuyoAIM-EslzgKf6aDeEE08L29zquNKeyRbfzEUM,77
705
+ cirq/protocols/json_test_data/PhasedXZGate.json,sha256=rMzDLWKmNnTY8P5oLyqYYbUYhr-ZVAFrsGh6yVuBPKk,123
706
+ cirq/protocols/json_test_data/PhasedXZGate.repr,sha256=VFYDGRF1Hry_RSHRARfaVJqwCot5N4UPxN6dLP9ubWQ,81
707
+ cirq/protocols/json_test_data/Points.json,sha256=GNCyYvsJqDwWzAYMtZ7xOXb7V7W92-uKOZXTW0SAZds,269
708
+ cirq/protocols/json_test_data/Points.repr,sha256=lu59UtH-fJdBZ63pycWOyVAYg0sZfFHjqAvfmcbFj6o,107
709
+ cirq/protocols/json_test_data/Product.json,sha256=MJDuyFnoWdanmKRisswWNcQ-Ma3LA2NczLQRTSzNz9k,277
710
+ cirq/protocols/json_test_data/Product.repr,sha256=qrZLz0E3ibSAbdFOnlNhoYciOqU8EhpbX0scqEz73Dg,107
711
+ cirq/protocols/json_test_data/ProductOfSums.json,sha256=L7tvSt3w6hjqcqt6VFonRybF6oAMCO5n1bBfOqa4xjU,101
712
+ cirq/protocols/json_test_data/ProductOfSums.repr,sha256=q5sXPQDDyUPDJUxo2BF8RZvVejfNB3KoaHmZW7IpASw,34
713
+ cirq/protocols/json_test_data/ProductState.json,sha256=pGip8chPaRpl8wYwrK_jhy44P-NEEJOMsgXqb70LDCA,404
714
+ cirq/protocols/json_test_data/ProductState.repr,sha256=PestrcrZ7FLLvqAlK9C0LnMJ-OghX7yz3spPKbmti2g,95
715
+ cirq/protocols/json_test_data/ProjectorString.json,sha256=Tvibo1oeUEIYOU_wNVNvbmDJoATJZ3ObB7PxpPmBSDI,247
716
+ cirq/protocols/json_test_data/ProjectorString.repr,sha256=swANVCex7bWLYu0efisAyAQuriH47AvIFCoA1XzhmSY,86
717
+ cirq/protocols/json_test_data/ProjectorSum.json,sha256=Oc3fzi_4nZJkoFA3aTJvMMc1gb92ilfm8Nfrhw2exzc,296
718
+ cirq/protocols/json_test_data/ProjectorSum.repr,sha256=TOx1KgSMfJ2P1fTUaCLaGHBZBnTzMbbTVNSc_fq3LpI,105
719
+ cirq/protocols/json_test_data/QasmUGate.json,sha256=4Hlw1tWbxx4JN6ECHCZl6HCZjQKvLJCfDiq79nlzlko,85
720
+ cirq/protocols/json_test_data/QasmUGate.repr,sha256=aOeuwnWe19GR-YphKZ-YSIZ4pbu88Lh9bk9EW7GNth8,50
721
+ cirq/protocols/json_test_data/QuantumFourierTransformGate.json,sha256=q9hLmKiaQ6EkGE_IHX4R8Ajk8TudtylriUwN7YOOyog,94
722
+ cirq/protocols/json_test_data/QuantumFourierTransformGate.repr,sha256=p9ZBLLvpwEPUWRAVnNYgadfWycnQNHr4To00M24wi1A,68
723
+ cirq/protocols/json_test_data/QubitPermutationGate.json,sha256=Zg8E-L75KRmeEkpL17jxtehXWbg6XVXs7NlEiOrDBtA,114
724
+ cirq/protocols/json_test_data/QubitPermutationGate.repr,sha256=L1791EEPRlnjTszhMwMGiAZWlIwxJfyxF0V0a0QvMt0,49
725
+ cirq/protocols/json_test_data/README.md,sha256=P6S2QZFQbbLxPeygz-9q3QHXtddUhT8fhhhe0TG3YU4,215
726
+ cirq/protocols/json_test_data/RandomGateChannel.json,sha256=Q3WaKzmlQbYp1E50Cmly7MZoCslymyHn-q1lP7tIAhM,193
727
+ cirq/protocols/json_test_data/RandomGateChannel.repr,sha256=BAMMnz2qd4vH4oYSVH-Xvh-3rndU3QXxMqCm-Z_0hdM,57
728
+ cirq/protocols/json_test_data/RepetitionsStoppingCriteria.json,sha256=T_TkyEk3_KbSZXcY3mLXw1SSAbbqJqa-4cWb8KG9Bpw,114
729
+ cirq/protocols/json_test_data/RepetitionsStoppingCriteria.repr,sha256=mRdW3VnxB1QHMq_z4g9VEMuuhrI-d1CHxXr4oZZQ_-I,93
730
+ cirq/protocols/json_test_data/ResetChannel.json,sha256=XopXjQRJPwy4EIEJ-fxxsCo6v_zUsOp8tfvjxLB8Mfg,51
731
+ cirq/protocols/json_test_data/ResetChannel.repr,sha256=y_DTKiB-gSoZK8cfs56ryByM7nvMOosVFCv_ZvzAonA,19
732
+ cirq/protocols/json_test_data/Result.json_inward,sha256=9Zk7D0QYXO6ON8BRizgzPh9IgcqFmNY8jzej_xiIyTk,7908
733
+ cirq/protocols/json_test_data/Result.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
734
+ cirq/protocols/json_test_data/ResultDict.json,sha256=7v7OztzxmNHNvjMvPC6A0l9mGyyXXZVFLruevDI4oQg,8053
735
+ cirq/protocols/json_test_data/ResultDict.json_inward,sha256=Dt21hALykx1owFtqYzXFS_IRT-ZvIb7pNAkQv70Ctpo,7952
736
+ cirq/protocols/json_test_data/ResultDict.repr,sha256=Rg_YVj0A-lvjkUVQLjITfupNaZ8ZeImVnvo7AZjG1WU,1861
737
+ cirq/protocols/json_test_data/ResultDict.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
738
+ cirq/protocols/json_test_data/RoutingSwapTag.json,sha256=aMYzQBB7FV2xYSkaqZCKGD-hMr1wCup0bdc9odMwYzs,36
739
+ cirq/protocols/json_test_data/RoutingSwapTag.repr,sha256=jg-0sfn_2E2LqxrffPB6qpB7BB4Mz9bfVwQsfb465d4,22
740
+ cirq/protocols/json_test_data/Rx.json,sha256=M2FSXDaSdnc4VLgS1a0fGB002JASCF1PGt0st6No338,53
741
+ cirq/protocols/json_test_data/Rx.repr,sha256=YmJsb3LQGqNwKTWwLC0DgYP8Fwkb93iN8p5d3ucelbY,24
742
+ cirq/protocols/json_test_data/Ry.json,sha256=KQr0YcErHPoIslazR9haDU2b_8bbsI2J4JMiS86xr9Y,53
743
+ cirq/protocols/json_test_data/Ry.repr,sha256=8ksMXR9iMUL0NCdidg2CYmXlutN9dtOZcGwgF70gMVQ,24
744
+ cirq/protocols/json_test_data/Rz.json,sha256=cQlA-IKDYKA5kb4HR0g2lewqt8VSHXN4XqgzmzZJP2Q,53
745
+ cirq/protocols/json_test_data/Rz.repr,sha256=GC2K3WiTdUdx1HAe_Xh6pFAiwnvRnUqHpphwVkrQUsE,24
746
+ cirq/protocols/json_test_data/S.json,sha256=Odmu6S8K3Bw21QNe_B66Ykq7FmSagtstyNM9Xkpx29Y,71
747
+ cirq/protocols/json_test_data/S.repr,sha256=f_7YwqyoWCj0oZtwelOzCwxoOpsPakFriVlA8nxIGcQ,6
748
+ cirq/protocols/json_test_data/SQRT_ISWAP.json,sha256=D063vfjZV3ghvmxfn_xNKlMqafpl_I7jhj2qwxW2MPg,76
749
+ cirq/protocols/json_test_data/SQRT_ISWAP.repr,sha256=9hTJq3nvneofeURraNJL6FKSJkcR7Yclj3UkmHdWzcE,18
750
+ cirq/protocols/json_test_data/SQRT_ISWAP_INV.json,sha256=2dSJApOTXr8YAyp4QNGVDOM-u_-i3d7giv5-KepEEOA,77
751
+ cirq/protocols/json_test_data/SQRT_ISWAP_INV.repr,sha256=TvoXx6uHH8lv7VrOnWnJTNZAwvzUH2MbsvcbixJRp88,19
752
+ cirq/protocols/json_test_data/SWAP.json,sha256=X1i1HMF2uVhPeh_K9cZatliHl-gCyd76vYoATkktn8o,72
753
+ cirq/protocols/json_test_data/SWAP.repr,sha256=csJpdSIRJzgNCdQ0GSxVjkyULLkaJin-BCOv9XUedec,9
754
+ cirq/protocols/json_test_data/SingleQubitCliffordGate.json,sha256=pk3iBcQz-PaXiVCaCCrThTkaLlz5aWeAnJRtNuJfeqQ,216
755
+ cirq/protocols/json_test_data/SingleQubitCliffordGate.repr,sha256=gt5YFNElLlatEeVFzRt6c8KzcH6KtxMuyeRq3LK6bns,82
756
+ cirq/protocols/json_test_data/SingleQubitMatrixGate.json_inward,sha256=oR_yF-BH50zFzKr7x6YmSzMdKLpgkssZMI5YpVfQUKc,907
757
+ cirq/protocols/json_test_data/SingleQubitMatrixGate.repr_inward,sha256=yBed5edr3k_VaaKOJOf_nRxoAJV8IloTq58Qjt3GHfo,115
758
+ cirq/protocols/json_test_data/SingleQubitPauliStringGateOperation.json,sha256=GW18FC6UgGIGR1bZLImAC410cXIXi1vRLYOGKea7YIo,204
759
+ cirq/protocols/json_test_data/SingleQubitPauliStringGateOperation.repr,sha256=Cf0BGK1VW4ZmEgRZaPum1u530la9lAqzF5ljlw_cGYU,28
760
+ cirq/protocols/json_test_data/SingleQubitReadoutCalibrationResult.json,sha256=VJA92-u50S7h7zpQ99nHh-piCP_PQS_V--FjrHFB9uY,334
761
+ cirq/protocols/json_test_data/SingleQubitReadoutCalibrationResult.repr,sha256=Jzwoa3ZdvXXEFioymxNd6s5zfmsl7iJXFAo4RLIXn88,173
762
+ cirq/protocols/json_test_data/SqrtIswapTargetGateset.json,sha256=vLzsG3NbPTfuQgB6WBhIEt7jKZiSPhfK6_Bh1nf8u8Q,1515
763
+ cirq/protocols/json_test_data/SqrtIswapTargetGateset.repr,sha256=EXUCNTxyDqKbq4Lw6kbQbWgfT6YIkvB740z5CZjZ3Ik,875
764
+ cirq/protocols/json_test_data/StabilizerStateChForm.json,sha256=alT_EJt0Ex6cxerka9_YJi9JhB6gvgLofH8Tl4dRw2E,251
765
+ cirq/protocols/json_test_data/StabilizerStateChForm.repr,sha256=oDtEuV2Q7euJ1axVTB22AxFXwu9j99uqZutnFD19j-E,40
766
+ cirq/protocols/json_test_data/StatePreparationChannel.json,sha256=NBMRv9lxsdWb8Os1hcxHloidKzC0bhalgIxhc6OPt5E,414
767
+ cirq/protocols/json_test_data/StatePreparationChannel.repr,sha256=bMWj3BJjE3cnt4KxrwA9WjJWPLti4KcsuhKye0swDZM,115
768
+ cirq/protocols/json_test_data/SumOfProducts.json,sha256=-_KMfwWm_Wobx_1K4Fy7PfQNt7JanvMtuvxFUAhmZb0,88
769
+ cirq/protocols/json_test_data/SumOfProducts.repr,sha256=EK1HbGdUzaBXgjHI4a56TCmGopKkP3cSrOUwnRt_ccU,56
770
+ cirq/protocols/json_test_data/SwapPowGate.json,sha256=I1ZVxusP8SzxwW2n3Z1XjIuguxGCld-mFuaTCnf30-Y,172
771
+ cirq/protocols/json_test_data/SwapPowGate.repr,sha256=Zr6oWijotmJVMeywjUikY0dPwXUZnfBJ6UMDqZIEwLI,29
772
+ cirq/protocols/json_test_data/SymmetricalQidPair.json_inward,sha256=RfD0Jy1OE8GRKrMHYLy5ADQsYZ2n_WUFKPy3YMEfihw,171
773
+ cirq/protocols/json_test_data/SymmetricalQidPair.repr_inward,sha256=HoS6O8xbikCUU1k7CGjkCWNqBq0UUl-I5B1aQ7ebSXU,49
774
+ cirq/protocols/json_test_data/SympyCondition.json,sha256=E3CHdecvRGhpukhJLxRUzwU-7j_xOV2SpYHCMc6oasg,1244
775
+ cirq/protocols/json_test_data/SympyCondition.repr,sha256=bLvqMeovrpidl37-x46NhKkVbR-erYpZnVa1cf5g0DM,254
776
+ cirq/protocols/json_test_data/T.json,sha256=cQ6Lr96RK4lbRN8w7BkhzwcyjbN3zEdOoAa1RPEmbEg,72
777
+ cirq/protocols/json_test_data/T.repr,sha256=HNwqoQ8INnlYEf_he7OVMYgMGw_eQAjC1umsxuA9YRA,6
778
+ cirq/protocols/json_test_data/TOFFOLI.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
779
+ cirq/protocols/json_test_data/TOFFOLI.repr,sha256=HPE1adZ-8E51fxisPx4tWD_NxGhGuYCRpMd7BPqDa6s,12
780
+ cirq/protocols/json_test_data/TaggedOperation.json,sha256=aAOHhS4FRqMMoWW6gBXt94MJ8WD044K7VQbFgnehc_4,373
781
+ cirq/protocols/json_test_data/TaggedOperation.repr,sha256=gTNiZlRQ2MVpAVsJTmvIZ1cyMDZQWe0KuP8mf97D0LE,85
782
+ cirq/protocols/json_test_data/TensoredConfusionMatrices.json,sha256=Irb4yYzbuvaraH4VI0geh5FM1G7ieEkt0msF9XY3QbY,828
783
+ cirq/protocols/json_test_data/TensoredConfusionMatrices.repr,sha256=UnEJkd9BUy501X3zY3UDdXkn-Aj8ZT76qh4YcBOEPMI,535
784
+ cirq/protocols/json_test_data/ThermalNoiseModel.json,sha256=3Pe4purDYGL-rVC1VjM3QKew1qUKOVDDVgqJJPL-b3E,478
785
+ cirq/protocols/json_test_data/ThermalNoiseModel.repr,sha256=q6n8SxiVO4V2PCv8HsE3WVN2RhfXOdST7zaDbt1vxeo,357
786
+ cirq/protocols/json_test_data/ThreeQubitDiagonalGate.json,sha256=Giy1bSDyP88AxpvTuHUIf_ikXhO2XpDLO6XZs2SxrZk,147
787
+ cirq/protocols/json_test_data/ThreeQubitDiagonalGate.repr,sha256=pBPE3IfuWgPtebLWcqpTguUrZ--j-hS1PDTTC7KB1hI,90
788
+ cirq/protocols/json_test_data/TiltedSquareLattice.json,sha256=A7hGSskEasyAu-o3PBsRlFzFrRgpPOuuaFRNGns08F8,69
789
+ cirq/protocols/json_test_data/TiltedSquareLattice.repr,sha256=zQir9B6BBbrIGKYiVAdnFstEBii5Q4AojSPYvXdrDJI,44
790
+ cirq/protocols/json_test_data/TrialResult.json_inward,sha256=4Ab89MBflxH1yJMw31DkITTVLpRp9KDiv6VXksDca8s,7963
791
+ cirq/protocols/json_test_data/TrialResult.repr_inward,sha256=7Dh72uey8KFCYabUIAlQYJhxpO8N4Iw41z44ji0Zgp8,1942
792
+ cirq/protocols/json_test_data/TwoQubitDiagonalGate.json,sha256=IBdqZq_rM-rmW2k3G9cf9fW5BSgjgNbaNKk2EhjQCfU,109
793
+ cirq/protocols/json_test_data/TwoQubitDiagonalGate.repr,sha256=jSNbYpfBtGObgCq2WDqZiMPwDkUiycT8NE14Pfim45k,68
794
+ cirq/protocols/json_test_data/TwoQubitGateTabulation.json,sha256=fbiJdPGLwHGBcVYG-oZFCORG7QuNQmA6MfReqUtMcCQ,12038
795
+ cirq/protocols/json_test_data/TwoQubitGateTabulation.repr,sha256=dF2MlMleKNobgDWF0mCTqH9JkdrXoQOqgKtfoMAM2WE,3728
796
+ cirq/protocols/json_test_data/TwoQubitMatrixGate.json_inward,sha256=2E6o8tzoiTnt8ViQGn2PG421UEh8JBNSlYGz_qN79Wg,281
797
+ cirq/protocols/json_test_data/TwoQubitMatrixGate.repr_inward,sha256=G6v-BqECV3dcPiIjNLRUQYrRVtyLt0HqD00fDXwzt8o,151
798
+ cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.json,sha256=EK2bbhnx9EEnhJx16J7LjamlC6nUwt_DeKaXmcxcTyU,41
799
+ cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.repr,sha256=qPILaenyLEonsD0rywxnEyICOS7ANVo6X0cb7Sg5sj8,25
800
+ cirq/protocols/json_test_data/UniformSuperpositionGate.json,sha256=iK4MquwPDvWyDaEzkz7cERIc1xcbNZ-MScdttjHb2VU,81
801
+ cirq/protocols/json_test_data/UniformSuperpositionGate.repr,sha256=lft1g9nxkx_63DFHixSQL8e8tIOoz4PXDW7RqEhGw6A,57
802
+ cirq/protocols/json_test_data/VarianceStoppingCriteria.json,sha256=PVdbXD8P9qjLqBI1ULgEVGEHxZhl0ahduLASk2VhrDU,105
803
+ cirq/protocols/json_test_data/VarianceStoppingCriteria.repr,sha256=8J4dzmOZuhZ8jjDISwSLwY3JqIFG8f_8HvLT7az-tqA,84
804
+ cirq/protocols/json_test_data/VirtualTag.json,sha256=yd6Yr22V94ycuO8UoYnWkV5Y8LgX83M-6Us2mUj7wq4,31
805
+ cirq/protocols/json_test_data/VirtualTag.repr,sha256=s_nfJTD_HDvQL0cCLR6WJNlnyazmn94JcY7SNHsC6fQ,17
806
+ cirq/protocols/json_test_data/WaitGate.json,sha256=MxLHW5v7gpbBpEfKfIBJpOPkyc2A9dAS98AuDnXC6zg,98
807
+ cirq/protocols/json_test_data/WaitGate.repr,sha256=1Ew7Ry0oWQ5I1crjJEC31iVQQUid3jOJqUF-T7t1Msw,38
808
+ cirq/protocols/json_test_data/X.json,sha256=J04Nvrf7z3XSsO8Bo6M9vlEuBVpnNNbAf-pTRbuK3AU,68
809
+ cirq/protocols/json_test_data/X.repr,sha256=-aRvGMrV63KbtLXNe1Yopej13KJGWbUtPk2p1cixHdQ,6
810
+ cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.json,sha256=xX1bU6phU78ftaTQYXZdyTvMGfqz7DJOFvqVK2S635c,317
811
+ cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.repr,sha256=TxzEMzHVcjMpzBOxHxOVpLuFH9AsJlsN664ckGhHaQA,263
812
+ cirq/protocols/json_test_data/XPowGate.json,sha256=B5Qwp1ymyJafCOJPZcop-llaHnPI1AYRRcVaSpqu21I,192
813
+ cirq/protocols/json_test_data/XPowGate.repr,sha256=Rd5IQsO60R40kQhtmzfiuHJ97mny9t-_ODup5JGykuw,61
814
+ cirq/protocols/json_test_data/XX.json,sha256=aNryR4CwOwb2JROMElYJN_E2C3mOKmqYLFeJAFCEwzw,70
815
+ cirq/protocols/json_test_data/XX.repr,sha256=NTwZnJd6uVeqWF7yd6PWEESp0Qlxx5M-T4iSHkQ84nw,7
816
+ cirq/protocols/json_test_data/XXPowGate.json,sha256=AmnTH_2yIy8c-rt8WC4YZWmbV-WWJCJrxhgzMxH-NUU,170
817
+ cirq/protocols/json_test_data/XXPowGate.repr,sha256=E_NsbpQbq06ydw0OAickWIVgI4xr7vLFWrs5n6SmFOQ,27
818
+ cirq/protocols/json_test_data/Y.json,sha256=IuO7QER1c5GAn6RFWW3wcR1c41uc-yVCA6LDBPw9y_M,68
819
+ cirq/protocols/json_test_data/Y.repr,sha256=n-PSf-8nfhNQf21iY1omHIY4qhmwXhtYGz_uGK69ZsE,6
820
+ cirq/protocols/json_test_data/YPowGate.json,sha256=3KDI069fobCau50ybBxbpqHzVjadEeviLIILwDtsRj8,73
821
+ cirq/protocols/json_test_data/YPowGate.repr,sha256=84-k5JQcph_7rfx2GEOtAOZwd4EjWYb6tFF3rjxSIgc,15
822
+ cirq/protocols/json_test_data/YY.json,sha256=OavnJy5jOl3Tp---FMNrUzmNnZrDzbXpzHraDCwzjIo,70
823
+ cirq/protocols/json_test_data/YY.repr,sha256=0dsJmae55jTVHUOTvrncDMU9boakhGsWP6Cd6q3_ofA,7
824
+ cirq/protocols/json_test_data/YYPowGate.json,sha256=GW6e0KcTfVxBOjqY8MZ2RZPXnU_9pFFMr9bmSnXncGc,170
825
+ cirq/protocols/json_test_data/YYPowGate.repr,sha256=cJg_5p7y2WLYAwbSRWHPBvKIHx6CZF3oYshjO83Q7Nc,27
826
+ cirq/protocols/json_test_data/Z.json,sha256=ieNVrFbjyt3Vgj6nWCZvJ0iwsuAeNscz6zRfaHBpapA,68
827
+ cirq/protocols/json_test_data/Z.repr,sha256=Esepg9w9ld9F5bSSzbY2VfVe5174Ul42nAefRZ3gmdM,6
828
+ cirq/protocols/json_test_data/ZPowGate.json,sha256=wX8aUqY_A0i9nbz9gzgp7r_qVk7BsAneMq9kom3V3fg,192
829
+ cirq/protocols/json_test_data/ZPowGate.repr,sha256=qRfL7Fg9Mv02nGtaAJNLzhtL4l6QyZ0v1C0N4A0kJtM,61
830
+ cirq/protocols/json_test_data/ZZ.json,sha256=VaYRetX-YoVEt8d0N2TO4-IWFeiRj_xH8AGnPfgAjHM,70
831
+ cirq/protocols/json_test_data/ZZ.repr,sha256=hANyYzdHlkmvVAFJU-erxF6CGJyDQrrHeMWXlJg0WvU,7
832
+ cirq/protocols/json_test_data/ZZPowGate.json,sha256=XWPJnsaryyYIfPiQA6ln00Ie6p-G_ykN3MSX9ASfRp8,170
833
+ cirq/protocols/json_test_data/ZZPowGate.repr,sha256=_5zZUxhZ2n9V5ulQ6sO69sFEi7X8_T4Z_HEQtpD7BQw,27
834
+ cirq/protocols/json_test_data/Zip.json,sha256=3L4Lazj5oksJCit2cvXhwnNJSDNh2kCGtcCjoUwVQes,272
835
+ cirq/protocols/json_test_data/Zip.repr,sha256=xlnQ1-q0aTS9t1mMO7vdCSj14QAuff1kTMCTX7TvzIk,103
836
+ cirq/protocols/json_test_data/ZipLongest.json,sha256=NEPlMm8IPrDHBrvyASwq9IZu5fROzqG5u9PiTbe8vXM,280
837
+ cirq/protocols/json_test_data/ZipLongest.repr,sha256=F-Ds7_1eqKgis0YvJqj3LwiXbkH8ZdP9k_ThmWsJL4k,110
838
+ cirq/protocols/json_test_data/_InverseCompositeGate.json,sha256=04Jo6qCe2RCkOZZHP_jMqgSkCP0Y26ZdXOeU9UJuQd8,172
839
+ cirq/protocols/json_test_data/_InverseCompositeGate.repr,sha256=MiivoajhEj7wtXepm3ZKJC2tKKN4LUFbmZBe2WQU4mg,54
840
+ cirq/protocols/json_test_data/_MeasurementSpec.json,sha256=c03X4XXcc9xz8rqLHnlUeEI74JeDcT1AuafZUyqNOtg,1288
841
+ cirq/protocols/json_test_data/_MeasurementSpec.repr,sha256=RO09cD6h-Th8dwtERQ6bPW8tVZFFUW8JngAzc-ASib4,285
842
+ cirq/protocols/json_test_data/_NoNoiseModel.json,sha256=mgmgKTFYinC7Jy6tyVtLzDlNAs57OtgImnGLS3D__TI,44
843
+ cirq/protocols/json_test_data/_NoNoiseModel.repr,sha256=gmrS4PKW2nLntZwr1egmF6on_dz0g8R_A_0hvllyD0Q,18
844
+ cirq/protocols/json_test_data/_PauliX.json,sha256=ZMgvQzSejILeutxsN921hs3MR_lGotKm5WQZy1JpYJA,84
845
+ cirq/protocols/json_test_data/_PauliX.repr,sha256=xhLaG7OF-9wEpRFw-Adsz56gOkn13nAueX-1STTFeHI,11
846
+ cirq/protocols/json_test_data/_PauliY.json,sha256=baGT5Fp73wG7JDwAIdgHevmsOuuU9t6JHR3dRIOECYE,84
847
+ cirq/protocols/json_test_data/_PauliY.repr,sha256=DWUDgFXr4_Ms1oj3ttCJjmbm5u2ttP4CI8EF07g7mXc,11
848
+ cirq/protocols/json_test_data/_PauliZ.json,sha256=G1u-lbIVsfDH-qVue8tjY2X0jONeKx-7gjHW14fiff4,84
849
+ cirq/protocols/json_test_data/_PauliZ.repr,sha256=tAnAqtqpeQYSaNEj0LhFYw63yzJZQHLqWIGK0nJxQ4M,11
850
+ cirq/protocols/json_test_data/_QubitAsQid.json,sha256=4Q3Y4SMamfOPsLWJCR1id5XqkXaX-IaxF_Mbdc1uQOE,105
851
+ cirq/protocols/json_test_data/_QubitAsQid.repr,sha256=zl0LkSVwGHAdx-Pyd6HNcZ9IsYBqBEvpRsEuosuIDTM,50
852
+ cirq/protocols/json_test_data/_UnconstrainedDevice.json,sha256=1QyTPzb8XCpzmwY_qINFDV7B1WmeOoAxivp5UBecvp0,51
853
+ cirq/protocols/json_test_data/_UnconstrainedDevice.repr,sha256=N1wr20BY2S2XC4NmOOLkHJbwbfyJmpwlBD15CCttx4I,30
854
+ cirq/protocols/json_test_data/_Unit.json,sha256=WV_rtQ2tUJPzlq6kG3498qHQOpPXAQpXZ8uBZXQtjDM,26
855
+ cirq/protocols/json_test_data/_Unit.repr,sha256=UzkB1npUVoSQ0s0JS8mBknRSSI8Y8egOClVegEfecss,14
856
+ cirq/protocols/json_test_data/_XEigenState.json,sha256=INFjtLztdCsSICfKkomxsovoQCYdo8p7eoZSbagMVeI,127
857
+ cirq/protocols/json_test_data/_XEigenState.repr,sha256=fsxe_-I7y_0MN9wTo89gbc3ofdVHjRd-tJlxUJo50ic,36
858
+ cirq/protocols/json_test_data/_YEigenState.json,sha256=1mIWq2O_hOuOfCOdThTf2iNx04GemwlD-WnaWbG6Ahg,127
859
+ cirq/protocols/json_test_data/_YEigenState.repr,sha256=xOsv4JMPz5zf4P9o2ezAROyUEVua6aIQYYCPXB3dZ7g,36
860
+ cirq/protocols/json_test_data/_ZEigenState.json,sha256=DnBLzEfAc-tfaaVpBy8hd29Cn5NTDwcJwxhpRZ1SpZE,127
861
+ cirq/protocols/json_test_data/_ZEigenState.repr,sha256=V2P3aMF1iBbzud8CUvnSVrBRt7KjOPbeWdeZKMRO510,36
862
+ cirq/protocols/json_test_data/__init__.py,sha256=RIJ_YGR076gQ3AA0BBqlj_Uhi0iYoHu9KkFgzLY8kU8,653
863
+ cirq/protocols/json_test_data/cirq.MSGate.json,sha256=G_roYqHu9XgZSu1lMZbInFsefVvgZfKuRubengXuawg,63
864
+ cirq/protocols/json_test_data/cirq.MSGate.repr,sha256=grCt0Y_v0_26K-HgqtVzc8pRgS09z1s4JhjE-cAucoE,16
865
+ cirq/protocols/json_test_data/complex.json,sha256=fGbU2uxufM6Pt-sg3sHazL0oiqusseIPOid-1sxi0Do,212
866
+ cirq/protocols/json_test_data/complex.repr,sha256=A-Gf4uPuecYNJPvdQYJ694YCx0uy1RV1HD3MYN6WUlo,19
867
+ cirq/protocols/json_test_data/datetime.datetime.json,sha256=fb50Dr0wfnkYrG_pBzUsIstWb9GsFHbpnh9eZKEqhAc,67
868
+ cirq/protocols/json_test_data/datetime.datetime.repr,sha256=IDEKudpeojzrhU4klq49vtF1j5OaVObd85I2c50et1g,71
869
+ cirq/protocols/json_test_data/pandas.DataFrame.json,sha256=IBwVTX_VHkXyjcNF19Douy-wTOoY-t4as44FAYNAucE,1476
870
+ cirq/protocols/json_test_data/pandas.DataFrame.repr,sha256=c2a42YxLzFAM_H-2ERv7y44trdmXXhm4Ar6cXnFhbuM,565
871
+ cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJTF_R9lRheE2MPNq7AHzA-xOs8,110
872
+ cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
873
+ cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
874
+ cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
875
+ cirq/protocols/json_test_data/spec.py,sha256=qy_Wy5gf96KNz23jwcfJ8wtynnXNP0WbIcC6qS-_5BY,5791
876
+ cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
877
+ cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
878
+ cirq/protocols/json_test_data/sympy.And.json,sha256=eaM07ihBPjZbn44gRIy6TbXeEwblF-QN32Jb1ATAQ5Q,178
879
+ cirq/protocols/json_test_data/sympy.And.repr,sha256=EFN2FEj37avIYn5AUyYycrQdIXANEABEdS2xKjQaKRc,47
880
+ cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
881
+ cirq/protocols/json_test_data/sympy.E.repr,sha256=5TZkWsfhPeqaM5BUy4U_PrJOeJi4OogjqHSHlNPwMb4,11
882
+ cirq/protocols/json_test_data/sympy.Equality.json,sha256=QB4ZR-brr3-DYLIDlzesq9Rcy3GlgU4YS12psrzur5M,183
883
+ cirq/protocols/json_test_data/sympy.Equality.repr,sha256=5SidbSHI4xbF6XgSKVMVOYfdtmJSYtX9rhrxGYI2wJQ,52
884
+ cirq/protocols/json_test_data/sympy.EulerGamma.json,sha256=nEbXjVXJ27G_bX3SQp1-o7Do113yClYrGrOVwDTgvjE,48
885
+ cirq/protocols/json_test_data/sympy.EulerGamma.repr,sha256=GIUTA9f1CDmN44kIFYyErdsGCj6NmwXJww7R6MUDYvY,20
886
+ cirq/protocols/json_test_data/sympy.Float.json,sha256=HFkBmN51ZoGF93U16X_9vRUVkNsputnOfxTVP-LlpQo,61
887
+ cirq/protocols/json_test_data/sympy.Float.repr,sha256=H2uK53HNWTF4tAG6TTP1Wuhvss-aAqWnI26sLNWOG60,52
888
+ cirq/protocols/json_test_data/sympy.GreaterThan.json,sha256=RceHlPzCXOgE-hRrW9BMsXgR9DF24ok_Q_ptbMHtZec,186
889
+ cirq/protocols/json_test_data/sympy.GreaterThan.repr,sha256=1O4MH_mCEhNaksrE_Fau_JW-mENwZSpSEZb2D61OsYs,55
890
+ cirq/protocols/json_test_data/sympy.Indexed.json,sha256=p678vhUV1kP-O7TL85V3OWfGDxWP6p58sL4dX3K1e8M,270
891
+ cirq/protocols/json_test_data/sympy.Indexed.repr,sha256=oheRHGYZc1SRGSr7UeVbg0SAuQM-z4qNbqRlzUKByRw,68
892
+ cirq/protocols/json_test_data/sympy.IndexedBase.json,sha256=ROJjG422YZbFmC4AWbQN9cMQkXC50VRIbo_Bq2OifOk,120
893
+ cirq/protocols/json_test_data/sympy.IndexedBase.repr,sha256=4YW8dM4s85Di6x9B8ZBV5b3Lxccelt9Y-C5U4OlVygM,36
894
+ cirq/protocols/json_test_data/sympy.Integer.json,sha256=P1T8fJhXoMMN9RwTCXNAVsPA0022btcv1NkyP5QA7_0,56
895
+ cirq/protocols/json_test_data/sympy.Integer.repr,sha256=dabVVMIK3-iXbhD4-8GR573r8CXfC2gyTu5GX_8JoFs,21
896
+ cirq/protocols/json_test_data/sympy.LessThan.json,sha256=pYMllJqZcjAcH6-EU_N7lmcyQkR4pAXwH-UXaEKveaE,183
897
+ cirq/protocols/json_test_data/sympy.LessThan.repr,sha256=UiCWBJlPEM1mTrXODmmHdigaHjv8olz9hodXSJtfPkM,52
898
+ cirq/protocols/json_test_data/sympy.Mul.json,sha256=v6ync9FPSpGCMm215OFP6Ys-aNzZEUfoaJjQvxjGwJs,794
899
+ cirq/protocols/json_test_data/sympy.Mul.repr,sha256=PyuiEzSnRFkhTO43ZUyL5H63mWEIcPSYrsEtOSsLdQ0,179
900
+ cirq/protocols/json_test_data/sympy.Not.json,sha256=pbGra21C3e6nYfVLQPSUZi6-fGjDMjkouRpKqZsvy8w,112
901
+ cirq/protocols/json_test_data/sympy.Not.repr,sha256=4np2NPnSsMJJRKO1W1ez5Fsj_HKzDnItzfNNLhhYeyg,28
902
+ cirq/protocols/json_test_data/sympy.Or.json,sha256=ldjgZWPfy2SxrPtPIAoD5aJ5r5zUlS52K1FN4IQWyr8,177
903
+ cirq/protocols/json_test_data/sympy.Or.repr,sha256=_jBJmKzI6kOtrG17Fme6LcTRZa7A3L2rgBoqDBKuZ94,46
904
+ cirq/protocols/json_test_data/sympy.Pow.json,sha256=9t2ho1233pZBRu42LWfplkLZb4mqmRkQQ72dZx28GeY,612
905
+ cirq/protocols/json_test_data/sympy.Pow.repr,sha256=Pq980YU8aHzUv5j_BUmwDHeGgzVi1rXX8N06Uqc_exg,148
906
+ cirq/protocols/json_test_data/sympy.Rational.json,sha256=Nwgk-Tu5ycAjHhuhkokNFx4nIl4zuw4QTwMYiTLIZvc,69
907
+ cirq/protocols/json_test_data/sympy.Rational.repr,sha256=2ufFnZ-Grjz7r5rmHfSjvgbrjfC6tsB8c0ed0K3UsCs,25
908
+ cirq/protocols/json_test_data/sympy.StrictGreaterThan.json,sha256=fE-e7g6TkxwRGdFGvJqmiL8atgxtgGb9zmoFBHzABvs,192
909
+ cirq/protocols/json_test_data/sympy.StrictGreaterThan.repr,sha256=ceYzWJ53MsbVmGLzL-bx52SomvkvPyxqs5WTGpbNp14,61
910
+ cirq/protocols/json_test_data/sympy.StrictLessThan.json,sha256=ygJAkBjja77dyq0h7_FElht2PMsAOj5_JP0Nhv_x-no,189
911
+ cirq/protocols/json_test_data/sympy.StrictLessThan.repr,sha256=hm0clQiNf8rBDDOfCPElcRAkscsGKEKFRBffQydLwRQ,58
912
+ cirq/protocols/json_test_data/sympy.Symbol.json,sha256=MvEdH0ou6Z1CRhKrTcPAABSlDC8BZHj-R0PdD34QX-s,118
913
+ cirq/protocols/json_test_data/sympy.Symbol.repr,sha256=vnQ0m3ghzzcMgF7aQqFAIX44BKNzAKGArMuTLjOypKc,41
914
+ cirq/protocols/json_test_data/sympy.Unequality.json,sha256=Bd2vedLFPwZuWyIcipOYXT6G3wfTj-_I8HmoZ0_pBLY,185
915
+ cirq/protocols/json_test_data/sympy.Unequality.repr,sha256=PsC01doMaEuySfnFUQhHdcAq9tlmLzSdQ8WKe8PUaTM,54
916
+ cirq/protocols/json_test_data/sympy.Xor.json,sha256=irgOYOU5To1SNNxdGC_mRveem8RpX-dn8VUThzJOFZY,178
917
+ cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPWquua5VsbJ8V5slw,47
918
+ cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
919
+ cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
920
+ cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
921
+ cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
922
+ cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
923
+ cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
924
+ cirq/qis/clifford_tableau_test.py,sha256=MPb5kGoCOjHpfIzADKmd1qDbUkXR6nwZbpQnC6UCTH0,18385
925
+ cirq/qis/entropy.py,sha256=SWB_Q7k5io_ZB1FzpNeUZNte3QqjiRR1_8vN2nEOt-M,4242
926
+ cirq/qis/entropy_test.py,sha256=DYdTUSosNo8njD8XiX7ZHtSydZf2wJun1RMKne6is5Y,1717
927
+ cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
928
+ cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
929
+ cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
930
+ cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
931
+ cirq/qis/quantum_state_representation.py,sha256=AqzdC6GFxLim7erINbsXF7hIkgm0P0MzxwWFXj5WeLo,3232
932
+ cirq/qis/states.py,sha256=FkUp-pOj_a1rd6U9t3xaq7PK8KPNKsq54AWmkpLulDY,41775
933
+ cirq/qis/states_test.py,sha256=vTvZE0Y-WL7gD7g5gy0HendmrHfbh-qPZ6KsDJH7aAg,31849
934
+ cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
935
+ cirq/sim/classical_simulator.py,sha256=dBI1bgbMKPBYTTnBEU3pfI1UkXn4XZFeHFP21z7TLWM,9295
936
+ cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b-myCmbI,12739
937
+ cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
938
+ cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
939
+ cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
940
+ cirq/sim/density_matrix_simulator_test.py,sha256=X2BVzl1jZeORA3aiK3X6BKFpt1pcnXhx74NA2cL9sCg,61288
941
+ cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
942
+ cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
943
+ cirq/sim/mux.py,sha256=w7sdSWFtmAEmHHn5nMH4H1qBCCp5oltlteH5vs3C_ik,12451
944
+ cirq/sim/mux_test.py,sha256=VKwMk5r4iX3tNY-Af-pZwhUVF9qxq8yT03YxhV2DmME,13717
945
+ cirq/sim/simulation_product_state.py,sha256=py-gVRPis1EfyavdCW5gLhiULocrqUOTe7ZI7OD-nws,7014
946
+ cirq/sim/simulation_product_state_test.py,sha256=ZZeCC9a_VIehiMzyo9QQPL4PD2G2h8XVZk80IZzD5Ok,9093
947
+ cirq/sim/simulation_state.py,sha256=EWHXsDjcx01K1haIRmMp9GwEw2WXjwLnBXHFCga_m5I,12551
948
+ cirq/sim/simulation_state_base.py,sha256=pK1CtIvP9dWCSmGHoutz-hFwmcrFg779MyDcfUJPkzs,4070
949
+ cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5JJ4SY,7560
950
+ cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
951
+ cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
952
+ cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
953
+ cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
954
+ cirq/sim/simulator_base_test.py,sha256=ag_1DIA82vEBLrXlwxWBvtobJa9E6SqBT46F6aPZESc,14979
955
+ cirq/sim/simulator_test.py,sha256=bPcjADGo1AzA5m_zvaap38NJ6n-IGKBRSAVgFmu8-ek,18799
956
+ cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
957
+ cirq/sim/sparse_simulator_test.py,sha256=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
958
+ cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
959
+ cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
960
+ cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
961
+ cirq/sim/state_vector_simulator.py,sha256=vQlFlnnczQn5dmSBACzouZnCgxJhIM3O38KfGiv-Caw,8206
962
+ cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFPw9cBMRs3WM,7900
963
+ cirq/sim/state_vector_test.py,sha256=ZxJ3WjEdfI0guBlQs0JfhK05qAKQefvtpfuLjM3vR-M,16607
964
+ cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
965
+ cirq/sim/clifford/clifford_simulator.py,sha256=zld4rZYuq8_m7C_m9n6WPhtxLrGKVMHT3vQI942a85Y,9828
966
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=caKQHVNuQoZYcJqfanTtNx6Hhc_6VmD908Z2mzJ8o6I,21405
967
+ cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=0T0ckoRzm-pdQuu9gwFlJe2wOqzf772QDHY7yLLoY9U,2173
968
+ cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
969
+ cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=c0AiqB_CMW9DzAJWRRe86-LJAPIaRQai7JOm7Gco6Pw,3030
970
+ cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=KNWsT5MbwULzARrtLtAYzJpwv09Ld8uy0cu1DU4pMx0,3958
971
+ cirq/sim/clifford/stabilizer_sampler.py,sha256=JE30zh0SOlE1MswbFtZE_Rfc831qkB3pgCCyF8O8phA,2554
972
+ cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
973
+ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=7ZQyFGbzkWC6kh4_jmZvtW5mLPapEoe61lye43tzfso,6704
974
+ cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
975
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=EWSVRig2ZxpVamCXL8TTTcBIJaHCxeUmWohPhzrsztE,14155
976
+ cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=UuvgpwexGB5LzMfaa3Gws2vHhC9pyHrqW_gDtx_pAYM,3201
977
+ cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
978
+ cirq/study/flatten_expressions.py,sha256=q9U-AukDri63yC4pF_dEKCX81RfquK4z31ktLkL0gz0,15528
979
+ cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f90-2uNj1c,6202
980
+ cirq/study/resolver.py,sha256=eJW9cIj4AncLCPOhv7X5MAAM1DnpcCybQPHzn6hYJL4,11746
981
+ cirq/study/resolver_test.py,sha256=LY1h8RCPY4d_8O5hprRcIf3HFhzODQrMbUrmwmt1fbM,10727
982
+ cirq/study/result.py,sha256=ci9Pg9IW4OMR4aZ4SaQ7TPVTgoSU-1WarjKEXBv2F2g,19214
983
+ cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
984
+ cirq/study/sweepable.py,sha256=lVzlkF9d_PaT1RSLponKzwXebGoDXQ56zwd1XEMa6h0,4338
985
+ cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
986
+ cirq/study/sweeps.py,sha256=VhGc1Q4qJHF9QQlCpGh-X5rF3tKp0esUvWCy1y22S9M,21403
987
+ cirq/study/sweeps_test.py,sha256=fiOKKnDyD-Ju7xeQM7A9pKkfR58VHXKdc0qw9d0MwRA,17231
988
+ cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
989
+ cirq/testing/circuit_compare.py,sha256=vWgMVa-TVwTRUMyEvNV6Ah3CMRlZYVo1xn41MsCTHzo,18766
990
+ cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
991
+ cirq/testing/consistent_act_on.py,sha256=hE_6fRPcmlvgRf2bHkB0XS4jnh_cR2PVS-g9YyNIijo,7670
992
+ cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
993
+ cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
994
+ cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
995
+ cirq/testing/consistent_controlled_gate_op.py,sha256=kYWpELVPT5c-bxTTNkWceiuEJDdsKheO3ZV0N1mTnpk,2665
996
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=-Uzm7T3HFKSE8jPfTPi9ElJaXCHqaOpbfjFvD1un5rE,3221
997
+ cirq/testing/consistent_decomposition.py,sha256=mkOmMAMPr0B215n-nSX3yxHxA45HwTb7G0KFEIr69jI,3665
998
+ cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
999
+ cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
1000
+ cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
1001
+ cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
1002
+ cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
1003
+ cirq/testing/consistent_protocols.py,sha256=w8KIfrNPmp5IpKqUntdZbtIOIa1JyN34q6RGb3cF7Tg,7468
1004
+ cirq/testing/consistent_protocols_test.py,sha256=U9lzwbnjAwQVcL8fRN5MpHSgUj4faRA3pt5Z6uEPOwQ,10003
1005
+ cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
1006
+ cirq/testing/consistent_qasm_test.py,sha256=5qpvWQt6KS4ltp-ia8LE4YrgmWSVo3hwcJplQsFIvww,2915
1007
+ cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
1008
+ cirq/testing/consistent_specified_has_unitary.py,sha256=gFFhitFqLnEy3rYmtZVkZ_wq5eVt7A8SUT0kbl8g6n8,1093
1009
+ cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
1010
+ cirq/testing/consistent_unitary.py,sha256=8O9xaTEQCUNOn8BsuHnCXcbXI8ZV2DZGiNp1dk55xM0,3284
1011
+ cirq/testing/consistent_unitary_test.py,sha256=yK8fFh2bcmZunUF2lrsTWY5pt9sk6pFKInvMg0MrKZ0,3312
1012
+ cirq/testing/deprecation.py,sha256=FEcBPgLFKkfXDDU-DKrOL_ZO-1a4dEtGiQ8C8vosQQ0,2176
1013
+ cirq/testing/deprecation_test.py,sha256=LC---8mwEnEu4mi_95aJmv-z5lEB1wSFVqX_KVueOT0,2219
1014
+ cirq/testing/devices.py,sha256=K1LKZi1_8WUvz7b_7_4_R75kRC08ATBXRxMzhQ3Kz9g,3289
1015
+ cirq/testing/devices_test.py,sha256=MeakoMeIRgcKkTTKqp2khfCaybRaCsZuaCHhTLgNy6U,2922
1016
+ cirq/testing/equals_tester.py,sha256=XmCj8zPoS5DKGKDMVTTEC_uIikiYCth0l0o6QPd4oBU,6597
1017
+ cirq/testing/equals_tester_test.py,sha256=337JBdQcxsj_-qx8rrub0vycC8knx6JpVcFvFbWt2es,10595
1018
+ cirq/testing/equivalent_basis_map.py,sha256=n6NNq70tIzpeqRHUOF08wgJUKOZDxK_YqrZGhFugwdY,2650
1019
+ cirq/testing/equivalent_basis_map_test.py,sha256=Gg8CzHzkbKUAxZdLRlsP2oS-rstUXP6T0m6X_v8d1IU,1523
1020
+ cirq/testing/equivalent_repr_eval.py,sha256=o7juCX8DNaVjaodkQrA8xEsFurmZ-P-trtJ3M5_lhgI,3357
1021
+ cirq/testing/equivalent_repr_eval_test.py,sha256=6k2EhVYx2vxdJT2JEH0Kv390p3G0dJ0TEp1tdpFS_v4,3024
1022
+ cirq/testing/gate_features.py,sha256=7hFdlkFCDDiQ6gJaEQ6ICAQgMOu-bgGvFUz-7rVCRx0,1403
1023
+ cirq/testing/gate_features_test.py,sha256=4cMncHo6SvyMvSFY1m9eQOwwKMUuADlWaavgbOMC8ZM,2390
1024
+ cirq/testing/json.py,sha256=Lzpfv_vn8NqYUhmB373Ay9NY9qkfd_piJMsLI4uSRSM,6683
1025
+ cirq/testing/json_test.py,sha256=wKpzoEHPariqLdZaIxgb87Tx1gAIbIXoXWUyR8TykGw,1152
1026
+ cirq/testing/lin_alg_utils.py,sha256=Lcmz-1RwctkS58ciVP8tnBV1Ka1cAWslDM2l5NCzYT8,6286
1027
+ cirq/testing/lin_alg_utils_test.py,sha256=HiCNYby5ZXVcXJLb8CNatExtuAacrphgUERsqKswF6U,4245
1028
+ cirq/testing/logs.py,sha256=s5w_qv-DLyZ_4S76u3ZH5zrV1jVSOW8ktmouR7aOXBI,4034
1029
+ cirq/testing/logs_test.py,sha256=spuIb0EOJxW-UNEuBds20ouIE1ROdqL9TbyTlqn1p6o,5811
1030
+ cirq/testing/no_identifier_qubit.py,sha256=jeevOm60Jm8jkdxTJaR9vFwYEBFamCQKL_F1UuQizg8,1225
1031
+ cirq/testing/no_identifier_qubit_test.py,sha256=K4fCbM_o9Hw1d7KggAttWKr2T_Ty9T7JXnjaQMpfgSg,1001
1032
+ cirq/testing/op_tree.py,sha256=Qpb8TX2TUY1SNPxAwd4NkO29Zdf4EIydy-N1TdQnK4U,990
1033
+ cirq/testing/op_tree_test.py,sha256=CzE_y9B8m8nV0nb34f51-hESgZLoEXlZ3JDjPWvkMjw,1118
1034
+ cirq/testing/order_tester.py,sha256=m59iRdipLkpCKycTuflXQtAKWzS88t9110CajIqjKys,6726
1035
+ cirq/testing/order_tester_test.py,sha256=1KevbjlXrW1e1vrU2Lj4---jlUn9n80uHtJgRM1G_lU,5195
1036
+ cirq/testing/pytest_utils.py,sha256=dNVr8k246110-BIdM6VHvTp4_NhnGebTLlbErXslkzo,1956
1037
+ cirq/testing/pytest_utils_test.py,sha256=NThV-uSoa9ob3YY_oUBD6j8dxlR52dOUAuiegvmaiYM,1366
1038
+ cirq/testing/random_circuit.py,sha256=slo1oK32x8tL344DVfAnXNL-7MDOD7fhYqBcS_ufl8k,6134
1039
+ cirq/testing/random_circuit_test.py,sha256=8H48CmWjXqhHvQs2bP7IzDonnIVUcY0m12RLpG9xejs,7079
1040
+ cirq/testing/repr_pretty_tester.py,sha256=vM-EC9K4BdQUL8dA4XdJaY7xQxCQ1Z5FZJR_jmuceZY,2934
1041
+ cirq/testing/repr_pretty_tester_test.py,sha256=mqEH4H6kL6sFd0r6M99LsMBLc6nS_m8dGFZQl1zei5w,2286
1042
+ cirq/testing/routing_devices.py,sha256=7D1fxGFPdabjMH4MRix-S0nwS8fxRC-dxNT6Xb6Csq8,2565
1043
+ cirq/testing/routing_devices_test.py,sha256=65cXCM86_sf5BLgswaYrrefsqyFXluibdDzD6JL6wOw,5684
1044
+ cirq/testing/sample_circuits.py,sha256=xZuhNN_AbCBmwTyP0K1lKcu0LQR38y479nLknX25rD4,1616
1045
+ cirq/testing/sample_circuits_test.py,sha256=S8__hXfSPjL7FLx1ei6en3n9ymQbehYt7FKi3llmmM0,920
1046
+ cirq/testing/sample_gates.py,sha256=N9oKdKTthk-KxToof4cH81is2uZvIwUmHTAKwFdMqoY,3317
1047
+ cirq/testing/sample_gates_test.py,sha256=rMMI1o36KDyGFtLh_XiQvIzhsyePktsDw88eRauRqWc,2430
1048
+ cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1049
+ cirq/testing/_compat_test_data/module_a/__init__.py,sha256=Ic68-4DyonoJbDUUXqg4Z5e1AbPjl_yIwKLp1EsrXp0,434
1050
+ cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
1051
+ cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
1052
+ cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=PJAhIIXSoTKwr17h7fn_ojCE6eva6hNz9wlwyaoXTG0,178
1053
+ cirq/testing/_compat_test_data/module_a/module_b/module_c/__init__.py,sha256=InVpoxhxUpAKUFiY_M6DK6cCw8Qgxv6JEYAeUQ08rjI,88
1054
+ cirq/testing/_compat_test_data/module_a/sub/__init__.py,sha256=J_aog7f4MdSMcu4rvTRgzTi5XvnUqggo4VPuWWUgx9c,143
1055
+ cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py,sha256=ERf76Zh2nhGeoGky01MHwYVdhZZZG0gpqhOWKhp1Mvw,155
1056
+ cirq/testing/_compat_test_data/module_a/sub/subsub/dupe.py,sha256=L7pscpZJYh5jPDgnLF0aecWGJ7G8-IqkdAhjXYHCbog,77
1057
+ cirq/testing/_compat_test_data/repeated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1058
+ cirq/testing/_compat_test_data/repeated/cirq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1059
+ cirq/testing/_compat_test_data/repeated/cirq/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1060
+ cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1061
+ cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/repeated_child/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1062
+ cirq/testing/_compat_test_data/repeated/cirq/testing/_compat_test_data/repeated_child/child/__init__.py,sha256=8G8BELwcj3pa6VIhrqjPX4KnhiCuPbe-JRR4_R8RvM8,82
1063
+ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1064
+ cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1065
+ cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1066
+ cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1067
+ cirq/transformers/__init__.py,sha256=B4ijV7PR4bN_QBswNqpAehIWTjXuaRMeyccrWz4Gw4w,7285
1068
+ cirq/transformers/align.py,sha256=95iI2sIil7V02hRPaXB-wG_eiMb5yF6ffUZU3fHmPP4,3341
1069
+ cirq/transformers/align_test.py,sha256=X4ysJuemqqOeKix2rO9SlwF4CBQzEYbgiqgZmlMxbsQ,7722
1070
+ cirq/transformers/drop_empty_moments.py,sha256=uZJG9FpUNyA1Mi0xLDuVuhj_siZhPZ1_s08Ry9xQ-1M,1535
1071
+ cirq/transformers/drop_empty_moments_test.py,sha256=h6Pji0z0o9KOB7fnSHseWpIAhzvxWurF_flg9XWm_YI,1959
1072
+ cirq/transformers/drop_negligible_operations.py,sha256=eP2dP_n0BYlr8aZ1wnD8YWsqCtwN0l0O6p45RbXEpfM,2097
1073
+ cirq/transformers/drop_negligible_operations_test.py,sha256=32mS4QQ8tiH3wBAAgbUU8LgwWDmvreRVEDZML_kgxyo,3859
1074
+ cirq/transformers/dynamical_decoupling.py,sha256=nVYH0vNIflfnB-gp8awMb0xv8lo_FYkeMJNBoBtCUQg,15053
1075
+ cirq/transformers/dynamical_decoupling_test.py,sha256=UXYBxc_8lnq-pqMBgj5qhPEXnYv6bccMjiIBtEMTGTQ,44728
1076
+ cirq/transformers/eject_phased_paulis.py,sha256=ZeVEh614OihWZtHyaBBtgpWj_dUxQGXDzf4NmBlzbeM,14725
1077
+ cirq/transformers/eject_phased_paulis_test.py,sha256=AOMmOq3fWFGm2_qDyocjtF9fK7GAhC0kF550mkjtPx4,15791
1078
+ cirq/transformers/eject_z.py,sha256=3u0Q0WGGAxmZuPnyiU4q04gJMnY--0nvhF4eotnSl9k,5803
1079
+ cirq/transformers/eject_z_test.py,sha256=mKa-xViF9ZyuJpHWeqmYfPHL-3AGNTTfe0yHaXYHRZ8,13226
1080
+ cirq/transformers/expand_composite.py,sha256=jDuipLc-9uYKGogQ7HAH0NLg5qb1uhdxh1nFWBYWkPk,2402
1081
+ cirq/transformers/expand_composite_test.py,sha256=l-4EZqj0CN9NJJRYSvvAYLkIvQ9t2YAPtkCnuKs-KJU,8677
1082
+ cirq/transformers/insertion_sort.py,sha256=LtuLQmoA1uWyraPqQ7_QZdkf_vAk75V5HIHvnk4GIZo,2613
1083
+ cirq/transformers/insertion_sort_test.py,sha256=E4unAfvPrTE73zI7OnZ8vWq5BUXYpPYjUw2zuq1a_vw,1231
1084
+ cirq/transformers/measurement_transformers.py,sha256=JXB-hpCmLD4oVA4Y8hAFL4khowPVlwKsmuDVlgLC_4o,19496
1085
+ cirq/transformers/measurement_transformers_test.py,sha256=mJKYFqqMwZnD8KXVM1tmF2kcIZXkkZKlfOU9XbGxYpQ,29019
1086
+ cirq/transformers/merge_k_qubit_gates.py,sha256=v9vY3f52S9QR7D_Om4APSZ65rwJH6Z7g6Gf3pD_9H3I,4380
1087
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=523FmfCC7mGX_zecGaQ2tgdqBvMGiMinwJMIfKBgG8E,14016
1088
+ cirq/transformers/merge_single_qubit_gates.py,sha256=p452ZsVPcxQSBwbjcT1H0OOPinb37DAIHxNjphEwvGk,13671
1089
+ cirq/transformers/merge_single_qubit_gates_test.py,sha256=ZIJmpi2rGNSGEu0xY3zRS7gFJbX6-zyGrIsaqGrL5jI,18080
1090
+ cirq/transformers/noise_adding.py,sha256=UePj56mCvhg6Vp5DJfQcjjaIo_UzcrnOCg2eN6YvkQU,4468
1091
+ cirq/transformers/noise_adding_test.py,sha256=nHOoKUPBBOkWF6A_JhIO6-G0AuFkLKBCxH7e2BOem9M,2171
1092
+ cirq/transformers/optimize_for_target_gateset.py,sha256=8jEOazQmnDsHEXJhdRDzIWVLYuAwy3EIByqpq7_VTVg,7216
1093
+ cirq/transformers/optimize_for_target_gateset_test.py,sha256=6xu7bDUf2CifMGFvutXT_CI2Wu_FSeucg6tcXHEeOZw,19574
1094
+ cirq/transformers/qubit_management_transformers.py,sha256=uLSwYrJ62REI8WCslClRiKQdNE7mLD48L5bhINHRY34,9431
1095
+ cirq/transformers/qubit_management_transformers_test.py,sha256=QjrEx3jC1AG4YGD2VdHW59SRW1icQ-pJc3zAMkJqAvE,14051
1096
+ cirq/transformers/randomized_measurements.py,sha256=pbftgY2ctVMOoJHPBq96ruW0hkcNustLo6_d_eQvyPc,5725
1097
+ cirq/transformers/randomized_measurements_test.py,sha256=ZfD8QW9Iy7NfidA1Iez9DUuT9HuzyEzFpHF1JNffE-I,2817
1098
+ cirq/transformers/stratify.py,sha256=vrQjnDHb54Yu3IJz0FO1uLRX2QD1o7wI3UDPeRUsTVo,10453
1099
+ cirq/transformers/stratify_test.py,sha256=X4h2KMc82N3G6d_qLIP0HTsrDWerWgEXTH_WBPN8nd0,15257
1100
+ cirq/transformers/symbolize.py,sha256=5gVjtxJ5C0EpxSlGMTsU6VNwGfJfFosuPNgZOofQ1Wo,3992
1101
+ cirq/transformers/symbolize_test.py,sha256=IF92t0r_mhC48tmCCVJqykXD6ms166n6XfbcSRTrJbY,2243
1102
+ cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdrqo5xJcqEWgwPHUfY0VaHk6lxI,3825
1103
+ cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
1104
+ cirq/transformers/tag_transformers.py,sha256=xGTEe9_H857Zd-GJ_g1tlCz_zH3kWKGBq38Zzoi1klU,3510
1105
+ cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zKDCZ_Gwtnykkt4,3439
1106
+ cirq/transformers/transformer_api.py,sha256=3Cwf_HI9QuRxcmoDvq3vLUMmbyS9-XI927hH9yUlpK0,16824
1107
+ cirq/transformers/transformer_api_test.py,sha256=vz_zTDPJIfjfqORGKCxeAs3U1F3X2dFNbe50o79uY-4,13273
1108
+ cirq/transformers/transformer_primitives.py,sha256=U7eN9UQ3YpW6D8UPJTHxsSO4ERpZxRxt14rqbMTk71Q,36521
1109
+ cirq/transformers/transformer_primitives_test.py,sha256=QAayPS74Ro4TTol-IOPnd7S49DKhvXYmWci0nOsk05A,41712
1110
+ cirq/transformers/analytical_decompositions/__init__.py,sha256=Rw7X6hPh14k-cDTcdWI7fQu8v5oU9d1vHuwulUBv-8o,3694
1111
+ cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sH7nesFWgYOWEl0UCUAmx6zsFQG0ibeQZpq7Imx38MY,6743
1112
+ cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=Svuj7abPvWyEK1W4_6M17hah-xp4Y0E_VICvGyvHeig,7138
1113
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=mZ5ojjxpSkQRhlRmTg0waBXAkCj7hWeEEYQRkCxjzEs,8701
1114
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=E_6BPxf8mTt5C7kCVvFLvgtfsFoDSwjAAH_-KVbxhYo,5086
1115
+ cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=jFWTFjCQ76cDbtyWaYk3RGPFv2oZLnwSVyanUXClu7A,9115
1116
+ cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=6ZDfSTL7aWSXXfM5DToeX8VxMalWirrCGKKg7QKBGFc,5591
1117
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=7GKdVnN5jvpjABudB0zE1kUn0BPZmuvRZcM2yLMUoWs,4540
1118
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=yWHkXXErOxLmnp5t65WUsY9e9iN6L950MZRw5OY3QW0,2172
1119
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=EIrK1PbHRMMhT5wei6rYk8diPEaqEZ0B-9M1chhCfCo,15450
1120
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Bk94HEm9a-cywM_Q2TBF6eUYkSJB1GWwJ5QO1J-rMoA,9006
1121
+ cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=6kaQfcXY7je42o-pVprSwgPXCDJXraDXQ9mHyR_BaBk,8428
1122
+ cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=oh96QXddCm1v8CrYA5mEnnx_ENXwZi89W6paVZU273I,12344
1123
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=CRZylmI8nA_aq6vXj0WmMce8PIe8OFCjq4_bqYfkenk,2464
1124
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=0nHp7b_Uz-00eod1U6c8Lcx78zNes3hABWnPR_NuMo4,2554
1125
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=6IChilA5NB4X00MYumvbRUo757cLaIslXmtirJk7TxU,9252
1126
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=a21HU4BE82AG2UJU4hUVqymUU7Lw4CLw4-NChX4OpLI,6808
1127
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=2bIpZOHBHxH2mdbJfDpo6nQgpitOI0ZmoH_5l_nA1nU,6167
1128
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=c-vFBZnybd-Ez4rcs13THGGthzEZ0qw9Iw9sAKbE6yc,4494
1129
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=bBA8RP-lzv8fKRiHT6M5NEBbl0l_ml5carekhGD5gnU,11705
1130
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=eDpkbJqVnSLuqXNJkU1BsaUYSIFRWrUXgQO35xrQHXE,11074
1131
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=8tYGV41gQBRzJSNUB3bsTMI8vil0TNE4TgqWlEw8BhE,9656
1132
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=bX8ap8VskN-gKxn3F4A8_vhgWO0AErOpP1QVVEtBjmY,7073
1133
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=dP9umZJBgNJ8FbDFFZVgMSyO-NjWJqXmoWyQuTo--0g,3751
1134
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=Cj_GZvJykt5NfNuB8vEY30DE2tU3nJtnUztAArgnfE4,4204
1135
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=s08m1PJODNUNzNNkn_zu2qasRSWmXJAq8Tb9cHKk-yU,25348
1136
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WfPQA_wTpRknovNenxC1LPAt9cVHqwdRhUhPZ8sLNr0,20655
1137
+ cirq/transformers/gauge_compiling/__init__.py,sha256=kgsBfsjwCjHMcwZd2wpzXFWPT9ZK-7PjzhEMV0q0pao,1557
1138
+ cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=EoM_TKZt8mJwYFQAfv3rviitXWvGT8I5N36droPWPCE,5576
1139
+ cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=dPV2vqsyC-eUi_jmwEk6dhOKHnQLJ_A01_Emxw2j8QQ,1427
1140
+ cirq/transformers/gauge_compiling/cz_gauge.py,sha256=dtcC49-qIvH_hRaQpQLBvGu-3323r4cwWpFImBnDebE,2586
1141
+ cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=MQURH_tIIPxHu7CRWWEdDksHYr9GzGZH7RqnjZdc994,889
1142
+ cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bXqAEVBXHplnxRMwNA0GrbpHsVLoY-zV0zpeP3VNjJY,18834
1143
+ cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=JFG7aCe-PxPGZDPCAx82ILu6PX_laFvCDlaabwvL0Kc,5272
1144
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=NUbcz-tGS58QPohpsmMx0RbB4d79GMSoyVxdL3CPiZc,5060
1145
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=qPcs2BWU-1gOEz0NCLixBLO9I1PVIOLShB7wkprcQZY,1896
1146
+ cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=CfW3hgO6AgUB7D6tC8J2XZQw2Ge77LT44BygCzMW4Xc,3536
1147
+ cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=V6g-jyGujMKEzGtOi_OhMxX5oTznGXJi9tCNKI9Qrb8,901
1148
+ cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=yhrF4pa1u0-iwYay47_2bZ4xfU323TOdlyazl0U9v4c,1122
1149
+ cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJO8BoP4uA0SqSLXS6bqn3T69SwcBHCQHBwWAkI8YTk,1328
1150
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=qnVmbXqehhDucg6Cm3VZm5lHez-uttayPSHqL4JHPEA,2557
1151
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=WXZjPf3SAxZHwWbORnsNPeBu1jHeqBqRkrTPCZiNnAY,1033
1152
+ cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=kOFHb5GydzeMNwSvDLFuEjc71jHC1HBWxaWinPlrArs,3163
1153
+ cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=2KJ14je7QNISHQE8GAK0Oy0HisDFiGEYHxCGc0LhRRg,918
1154
+ cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
1155
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=awhnFQiCvAIX73-_u44U7I8_m-xk9TG5KUjbDH_B8K4,10797
1156
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=WJ2P6QfwY2l6RYUfMeWbn096MHDiTYXQAV6-0ThR0AQ,1571
1157
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=od4YwSC0dVIMPPdNY3kv9dW5uKbaQ3QpKjD_8aP-am0,20089
1158
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=bvgDe-3KhwTLSokL7X93IZgneGNLrgzSgNulMhsoARs,3922
1159
+ cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
1160
+ cirq/transformers/routing/initial_mapper.py,sha256=N3_n8zhPP0TFQkPr46j-1zZw1R9RcMCUZF0-NfZWOfo,3050
1161
+ cirq/transformers/routing/initial_mapper_test.py,sha256=N3RrubB1suUbD8SuYoZtMASAQPyb5a4NJqJmhJZpV04,1344
1162
+ cirq/transformers/routing/line_initial_mapper.py,sha256=Z38g6BUBMGyRRH0l9nh3m8XtcgYqxarbRGWMhAOiB8I,9431
1163
+ cirq/transformers/routing/line_initial_mapper_test.py,sha256=Qu51LOZjv0KQHcwtEax-4dF78g9g1pl0COpF3xFHE6w,7568
1164
+ cirq/transformers/routing/mapping_manager.py,sha256=w-dSQOs_IpUMU8HPyFQlJ2scER4DnX03llp44504Rq4,8621
1165
+ cirq/transformers/routing/mapping_manager_test.py,sha256=dSqouwT77Pa9cj3osKCv478pOrJzB-QP40sozNz-j3k,5957
1166
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=2nx56mQUQFRv6xHd97sfb6qePiQ6yI9_y7d_tOAk6pg,21960
1167
+ cirq/transformers/routing/route_circuit_cqc_test.py,sha256=Neg9A29Re-I4A4Tu0VNLKkl1_225M7wFHRx-TpLLzco,10140
1168
+ cirq/transformers/routing/visualize_routed_circuit.py,sha256=VgHN3zQ2cfEd69i5i85Tt4_HHpdv1yRyJbQ9I67-00Y,2907
1169
+ cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=Cv00tV0C23M-3JxOY-hvFeLPASc6hR-XkYxxzJ3nhwQ,4193
1170
+ cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
1171
+ cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=EwotTSGzomfLBNze9DlddRG56q0SjUSK9_SiF9gs6yw,14246
1172
+ cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=hhswvGSsR5NhRzER96VHjq-P5fuv1VIrDnjAT-c0LBE,9606
1173
+ cirq/transformers/target_gatesets/cz_gateset.py,sha256=J-GlZ1yuVCz3jcSs7h9FGSj26fDqk9mQMLU3f5f4j3k,5033
1174
+ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=xdcvqpaHyU2Z_-yqIwEGy7KMj-p0C-aL7seHWLKOoh4,11432
1175
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=ToMXP1uCSb1PulzOWEyujXD-HEHdHlviLoDETiTV2K8,6273
1176
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=lH7xYm_qkgi_MegqvvxNMQvWnAReUskCXaKpCsIQppY,14580
1177
+ cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1178
+ cirq/value/abc_alt.py,sha256=ZNHskvHpu3KOhMpIo0C5MBEbEpWFQ2WPiNdstppwZ7E,6026
1179
+ cirq/value/abc_alt_test.py,sha256=3ryHzM0B2uxFw3ZP_BIj0FWg4gXKNPLfeQOJMPVL1FQ,9033
1180
+ cirq/value/angle.py,sha256=6YP1RWv8IrruvgxvqlCYxcabYRE8bXrbV_Jx66Jfuvs,3285
1181
+ cirq/value/angle_test.py,sha256=jKLd1hkY-Tb22krD-WkJjfqFy9EJIIZCAL57__FgW_c,3608
1182
+ cirq/value/classical_data.py,sha256=mPkDGZb4I0a1qSgY-T01NLzkJSgSpKpU_o_EQQEn3mc,11517
1183
+ cirq/value/classical_data_test.py,sha256=q1QMT17E-X9kcaPw1oQqx3Hwnq3hyht24HaK3z7Udpo,5332
1184
+ cirq/value/condition.py,sha256=sl2ol2vyVIQba3YQVXqVI_IgglFMGcDlw7vrCjo9wFk,11920
1185
+ cirq/value/condition_test.py,sha256=oEdim5nOYYY8UPU91H2xhb9MH8EC2WbMXTQ_DruHVO0,12949
1186
+ cirq/value/digits.py,sha256=-3HTHqEQqy5evUz8aLE6ruw0NV3ncuPrc5asRMQ-sQ4,6063
1187
+ cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,3848
1188
+ cirq/value/duration.py,sha256=9zhnMe7EBicqbRp267GkPz97q1y1DcnPDXHqdEjJpts,10389
1189
+ cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
1190
+ cirq/value/linear_dict.py,sha256=0g4fWremhgnLTxjApVJzB6y0hJ9Vz-afudHltvvqkUY,12582
1191
+ cirq/value/linear_dict_test.py,sha256=eZatVgAMonquI2qys4WJx6ddUc2KDea440qHIOxlTfQ,20061
1192
+ cirq/value/measurement_key.py,sha256=tgKhfa6UUPMP3azlF_yuARqg31T-lAAMhoTK6OtUEeQ,5175
1193
+ cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
1194
+ cirq/value/periodic_value.py,sha256=QAIEt2Ls9ZTumQg913anBjehBidrrk6ULkQNSk4Qu-s,3936
1195
+ cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLlOYUk,4572
1196
+ cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
1197
+ cirq/value/probability_test.py,sha256=vFpPiofJY-ddsfpDrtgP-AiXFCDtKVXhjkv_4Vl1-Qg,984
1198
+ cirq/value/product_state.py,sha256=yrYlvVoINj4N_fj_9nxugm1qsTxOzIh5j_pJGsyJ8lc,8997
1199
+ cirq/value/product_state_test.py,sha256=CGRb5pKl5bVB9yWeil12qweQ735wYP64jQGoC-j3tto,5978
1200
+ cirq/value/random_state.py,sha256=Kv3dcVif6ltJSI0RT9kSI1XeofW16jdtmo5T3pD4m9w,2099
1201
+ cirq/value/random_state_test.py,sha256=AfzX82WsyyuLYnoakNOTj2PPL1fYRH5ZaH84uO-6Cvg,1394
1202
+ cirq/value/timestamp.py,sha256=pC-hwfLL6U1_5937AMw6YtGgEBq71prNQ6jOjh8Kbls,3633
1203
+ cirq/value/timestamp_test.py,sha256=L-MmYEuoTDdyyX6MJ6-wBqxHcSMabQHogX_DhOm0SAg,4214
1204
+ cirq/value/type_alias.py,sha256=64tVzxOqzwtKTwuqXan-PeTyjy7i6J928FCg5NtMcw4,1121
1205
+ cirq/value/value_equality_attr.py,sha256=kD3XRkpAp4UKCRWsoxwLjjQXnaSh1gAqMDIZH7xtbJ4,10491
1206
+ cirq/value/value_equality_attr_test.py,sha256=ZWsjAlJd9M_-HONqTXcdjpIaFCilLcelyodZl1fIu2Y,6557
1207
+ cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1208
+ cirq/vis/density_matrix.py,sha256=7Mydxi7r1at6W0t7lH99Gq__deyCQ9RxHf-HveKLTZw,4820
1209
+ cirq/vis/density_matrix_test.py,sha256=yoOQd0XqCECfmM6ycsBEF2hEyM5NTeNNAoVYEhRj8pk,7082
1210
+ cirq/vis/heatmap.py,sha256=nKb91MmL5HxMQd95u0v3pf0zrV2dMqdUGCMDxOyoOO4,17620
1211
+ cirq/vis/heatmap_test.py,sha256=5Z6EymBugK_tygqKb_qHy7rBI1LfIG67tzPtGUWSUB4,20587
1212
+ cirq/vis/histogram.py,sha256=EYuCshhIwXJPaoL5PvWG58bI2gK5mhbTyiWpDHVjq_I,5109
1213
+ cirq/vis/histogram_test.py,sha256=G2JRYXfVwrw7TVaaejILqOowxRn_2oF456dYNH9pzeA,1956
1214
+ cirq/vis/state_histogram.py,sha256=WOFxYGbI9Pg7YGb_oFRBX4loTaAsw6viFBTRHFIPv8M,4297
1215
+ cirq/vis/state_histogram_test.py,sha256=zHQeSPGVViN5s1QHGsClm0zlIXdt_oyIIDQaAItDIDk,3837
1216
+ cirq/vis/vis_utils.py,sha256=MQDCuV-ZfHrtpSRF_-iIRuNvPR9Xv5umRpixPyZ5CvA,1274
1217
+ cirq/vis/vis_utils_test.py,sha256=geSavo2Ip585fjanPK3T8AUuvhUwNclLBdl_W_OOycc,984
1218
+ cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1219
+ cirq/work/collector.py,sha256=-1r5giLOPTFFA2M1yHf9l8yLUiePB_6gRzNaOKhQ_rc,7750
1220
+ cirq/work/collector_test.py,sha256=2dAOkKTn0tazxb_gyhKPJghXpj47Bm2SuCCpf_EW7kI,5004
1221
+ cirq/work/observable_grouping.py,sha256=fYK48ml5U2B9AXXBFvql3YkIU2xSzBF-Bq5tWMVTYbM,3473
1222
+ cirq/work/observable_grouping_test.py,sha256=c_axFGnGfCAqk69oqSgottsT_u_Versa4A_oZrgasMk,5875
1223
+ cirq/work/observable_measurement.py,sha256=5SC_Dtkb7eZEKS6hA7BY41TX41-racYWyW8C_my_uYA,28211
1224
+ cirq/work/observable_measurement_data.py,sha256=IdxqP9anGxLWDugJMNZUO7stKkcLQKJnCdYuSaBVP1g,21135
1225
+ cirq/work/observable_measurement_data_test.py,sha256=EDmmrcQeN-QtWdIxYqjpYyn_443zF_2peVV6DwU49zA,19731
1226
+ cirq/work/observable_measurement_test.py,sha256=-NIQyQ9izFw09BfieMM59FBxLvtgwennuJSx9iwNTjw,21071
1227
+ cirq/work/observable_readout_calibration.py,sha256=hunvihB8Cf9s9cyaWArEx-CuVQOO9K9Tm7mueAft4z0,1908
1228
+ cirq/work/observable_readout_calibration_test.py,sha256=5XpRIP3VQ1EGtbvnOetElWHIDpKv6d086eyHtAxDeh0,1849
1229
+ cirq/work/observable_settings.py,sha256=KWnoOnhu04tn_tTe9XUlcKVu7bfWy5BlVGgYc-UZBz8,6650
1230
+ cirq/work/observable_settings_test.py,sha256=TE2rIdeI7UjW9Oe2jAT2SAQ2A90GVZquOUa1ORcvObM,4373
1231
+ cirq/work/pauli_sum_collector.py,sha256=ZQgXylJUk31XUatimtTDSPVdLw1myX4ggcnENKnQ7ao,4218
1232
+ cirq/work/pauli_sum_collector_test.py,sha256=3fb_KS5bZ7AZTCl3y-SyN-jysqnb35o1cHPyQq_Ol_s,2443
1233
+ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
1234
+ cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1235
+ cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
1236
+ cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1237
+ cirq_core-1.6.0.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
+ cirq_core-1.6.0.dist-info/METADATA,sha256=oCYJcYjUWVc6TB34MwBSd6t4AMvV7DSO1RJ2DDCcr0I,4839
1239
+ cirq_core-1.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
+ cirq_core-1.6.0.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
+ cirq_core-1.6.0.dist-info/RECORD,,