cirq-core 1.6.0.dev20250520054601__py3-none-any.whl → 1.6.0.dev20250520183459__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 (290) hide show
  1. cirq/_compat.py +15 -17
  2. cirq/_compat_test.py +6 -9
  3. cirq/_doc.py +2 -2
  4. cirq/_import.py +6 -6
  5. cirq/_version.py +1 -1
  6. cirq/_version_test.py +1 -1
  7. cirq/circuits/_block_diagram_drawer.py +9 -10
  8. cirq/circuits/_box_drawing_character_data.py +6 -8
  9. cirq/circuits/_bucket_priority_queue.py +7 -7
  10. cirq/circuits/circuit.py +118 -125
  11. cirq/circuits/circuit_operation.py +38 -52
  12. cirq/circuits/circuit_test.py +4 -4
  13. cirq/circuits/frozen_circuit.py +13 -23
  14. cirq/circuits/moment.py +23 -29
  15. cirq/circuits/optimization_pass.py +4 -4
  16. cirq/circuits/optimization_pass_test.py +4 -6
  17. cirq/circuits/qasm_output.py +11 -11
  18. cirq/circuits/text_diagram_drawer.py +21 -36
  19. cirq/contrib/acquaintance/bipartite.py +5 -8
  20. cirq/contrib/acquaintance/executor.py +5 -5
  21. cirq/contrib/acquaintance/executor_test.py +3 -3
  22. cirq/contrib/acquaintance/gates.py +16 -26
  23. cirq/contrib/acquaintance/gates_test.py +3 -3
  24. cirq/contrib/acquaintance/mutation_utils.py +4 -4
  25. cirq/contrib/acquaintance/optimizers.py +4 -4
  26. cirq/contrib/acquaintance/permutation.py +15 -27
  27. cirq/contrib/acquaintance/shift.py +3 -3
  28. cirq/contrib/acquaintance/shift_swap_network.py +4 -4
  29. cirq/contrib/acquaintance/strategies/cubic.py +2 -2
  30. cirq/contrib/acquaintance/strategies/quartic_paired.py +6 -6
  31. cirq/contrib/bayesian_network/bayesian_network_gate.py +9 -10
  32. cirq/contrib/circuitdag/circuit_dag.py +2 -2
  33. cirq/contrib/custom_simulators/custom_state_simulator.py +3 -3
  34. cirq/contrib/custom_simulators/custom_state_simulator_test.py +4 -4
  35. cirq/contrib/graph_device/graph_device.py +5 -5
  36. cirq/contrib/graph_device/hypergraph.py +12 -12
  37. cirq/contrib/graph_device/uniform_graph_device.py +4 -4
  38. cirq/contrib/paulistring/clifford_optimize.py +2 -2
  39. cirq/contrib/paulistring/clifford_target_gateset.py +7 -7
  40. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py +31 -31
  41. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py +23 -23
  42. cirq/contrib/paulistring/recombine.py +3 -3
  43. cirq/contrib/paulistring/separate.py +2 -2
  44. cirq/contrib/qasm_import/_parser.py +20 -32
  45. cirq/contrib/qcircuit/qcircuit_diagram_info.py +3 -5
  46. cirq/contrib/quantum_volume/quantum_volume.py +24 -24
  47. cirq/contrib/quimb/density_matrix.py +12 -14
  48. cirq/contrib/quimb/mps_simulator.py +20 -20
  49. cirq/contrib/quimb/state_vector.py +6 -10
  50. cirq/contrib/quirk/export_to_quirk.py +3 -3
  51. cirq/contrib/quirk/quirk_gate.py +15 -15
  52. cirq/contrib/routing/device.py +3 -3
  53. cirq/contrib/routing/greedy.py +10 -21
  54. cirq/contrib/routing/initialization.py +2 -2
  55. cirq/contrib/routing/swap_network.py +3 -3
  56. cirq/contrib/routing/utils.py +2 -2
  57. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +8 -8
  58. cirq/contrib/svg/svg.py +3 -3
  59. cirq/devices/grid_device_metadata.py +10 -10
  60. cirq/devices/grid_qubit.py +20 -20
  61. cirq/devices/insertion_noise_model.py +5 -5
  62. cirq/devices/line_qubit.py +13 -13
  63. cirq/devices/named_topologies.py +18 -29
  64. cirq/devices/noise_model.py +3 -3
  65. cirq/devices/noise_properties.py +2 -2
  66. cirq/devices/noise_properties_test.py +1 -3
  67. cirq/devices/noise_utils.py +7 -7
  68. cirq/devices/superconducting_qubits_noise_properties.py +21 -21
  69. cirq/devices/superconducting_qubits_noise_properties_test.py +5 -7
  70. cirq/devices/thermal_noise_model.py +14 -14
  71. cirq/devices/unconstrained_device.py +2 -2
  72. cirq/experiments/benchmarking/parallel_xeb.py +29 -31
  73. cirq/experiments/n_qubit_tomography.py +5 -7
  74. cirq/experiments/qubit_characterizations.py +29 -40
  75. cirq/experiments/qubit_characterizations_test.py +1 -1
  76. cirq/experiments/random_quantum_circuit_generation.py +19 -33
  77. cirq/experiments/random_quantum_circuit_generation_test.py +6 -6
  78. cirq/experiments/readout_confusion_matrix.py +14 -14
  79. cirq/experiments/single_qubit_readout_calibration.py +12 -12
  80. cirq/experiments/t2_decay_experiment.py +7 -7
  81. cirq/experiments/two_qubit_xeb.py +32 -32
  82. cirq/experiments/two_qubit_xeb_test.py +5 -5
  83. cirq/experiments/xeb_fitting.py +25 -25
  84. cirq/experiments/xeb_sampling.py +22 -33
  85. cirq/experiments/xeb_simulation.py +5 -5
  86. cirq/experiments/xeb_simulation_test.py +3 -3
  87. cirq/experiments/z_phase_calibration.py +19 -19
  88. cirq/interop/quirk/cells/arithmetic_cells.py +23 -36
  89. cirq/interop/quirk/cells/cell.py +9 -21
  90. cirq/interop/quirk/cells/composite_cell.py +7 -22
  91. cirq/interop/quirk/cells/control_cells.py +8 -8
  92. cirq/interop/quirk/cells/input_cells.py +4 -4
  93. cirq/interop/quirk/cells/input_rotation_cells.py +5 -5
  94. cirq/interop/quirk/cells/parse.py +20 -23
  95. cirq/interop/quirk/cells/qubit_permutation_cells.py +3 -3
  96. cirq/interop/quirk/cells/swap_cell.py +3 -3
  97. cirq/interop/quirk/cells/testing.py +5 -7
  98. cirq/interop/quirk/url_to_circuit.py +17 -33
  99. cirq/json_resolver_cache.py +6 -6
  100. cirq/linalg/decompositions.py +20 -31
  101. cirq/linalg/diagonalize.py +4 -4
  102. cirq/linalg/diagonalize_test.py +3 -4
  103. cirq/linalg/operator_spaces.py +5 -5
  104. cirq/linalg/predicates.py +7 -7
  105. cirq/linalg/transformations.py +20 -20
  106. cirq/ops/arithmetic_operation.py +13 -15
  107. cirq/ops/boolean_hamiltonian.py +17 -17
  108. cirq/ops/classically_controlled_operation.py +13 -25
  109. cirq/ops/clifford_gate.py +31 -35
  110. cirq/ops/clifford_gate_test.py +2 -3
  111. cirq/ops/common_channels.py +30 -32
  112. cirq/ops/common_gates.py +64 -74
  113. cirq/ops/control_values.py +12 -12
  114. cirq/ops/controlled_gate.py +15 -30
  115. cirq/ops/controlled_gate_test.py +5 -5
  116. cirq/ops/controlled_operation.py +12 -25
  117. cirq/ops/controlled_operation_test.py +5 -5
  118. cirq/ops/dense_pauli_string.py +23 -34
  119. cirq/ops/dense_pauli_string_test.py +1 -2
  120. cirq/ops/diagonal_gate.py +9 -20
  121. cirq/ops/diagonal_gate_test.py +1 -3
  122. cirq/ops/eigen_gate.py +11 -23
  123. cirq/ops/eigen_gate_test.py +6 -8
  124. cirq/ops/fourier_transform.py +5 -5
  125. cirq/ops/fsim_gate.py +14 -14
  126. cirq/ops/gate_operation.py +23 -44
  127. cirq/ops/gateset.py +23 -37
  128. cirq/ops/gateset_test.py +2 -2
  129. cirq/ops/global_phase_op.py +8 -10
  130. cirq/ops/greedy_qubit_manager.py +6 -6
  131. cirq/ops/identity.py +9 -9
  132. cirq/ops/kraus_channel.py +7 -7
  133. cirq/ops/linear_combinations.py +29 -48
  134. cirq/ops/matrix_gates.py +8 -8
  135. cirq/ops/measure_util.py +13 -14
  136. cirq/ops/measurement_gate.py +18 -29
  137. cirq/ops/mixed_unitary_channel.py +8 -8
  138. cirq/ops/named_qubit.py +10 -10
  139. cirq/ops/op_tree.py +7 -7
  140. cirq/ops/parallel_gate.py +5 -5
  141. cirq/ops/parity_gates.py +14 -14
  142. cirq/ops/pauli_gates.py +8 -10
  143. cirq/ops/pauli_interaction_gate.py +6 -6
  144. cirq/ops/pauli_measurement_gate.py +11 -23
  145. cirq/ops/pauli_string.py +35 -52
  146. cirq/ops/pauli_string_phasor.py +4 -14
  147. cirq/ops/pauli_string_raw_types.py +3 -3
  148. cirq/ops/pauli_sum_exponential.py +2 -2
  149. cirq/ops/permutation_gate.py +4 -4
  150. cirq/ops/phased_iswap_gate.py +9 -9
  151. cirq/ops/phased_x_gate.py +10 -10
  152. cirq/ops/phased_x_z_gate.py +11 -11
  153. cirq/ops/projector.py +6 -6
  154. cirq/ops/qubit_manager.py +6 -6
  155. cirq/ops/qubit_order.py +3 -3
  156. cirq/ops/random_gate_channel.py +4 -4
  157. cirq/ops/raw_types.py +48 -70
  158. cirq/ops/state_preparation_channel.py +3 -3
  159. cirq/ops/swap_gates.py +9 -9
  160. cirq/ops/tags.py +2 -4
  161. cirq/ops/three_qubit_gates.py +20 -38
  162. cirq/ops/two_qubit_diagonal_gate.py +5 -5
  163. cirq/ops/uniform_superposition_gate.py +2 -2
  164. cirq/ops/wait_gate.py +5 -5
  165. cirq/protocols/act_on_protocol_test.py +3 -3
  166. cirq/protocols/apply_channel_protocol.py +8 -14
  167. cirq/protocols/apply_mixture_protocol.py +14 -16
  168. cirq/protocols/apply_mixture_protocol_test.py +5 -6
  169. cirq/protocols/apply_unitary_protocol.py +17 -19
  170. cirq/protocols/circuit_diagram_info_protocol.py +19 -30
  171. cirq/protocols/decompose_protocol.py +30 -34
  172. cirq/protocols/inverse_protocol.py +7 -7
  173. cirq/protocols/json_serialization.py +32 -51
  174. cirq/protocols/json_serialization_test.py +9 -10
  175. cirq/protocols/kraus_protocol.py +4 -4
  176. cirq/protocols/kraus_protocol_test.py +3 -3
  177. cirq/protocols/measurement_key_protocol.py +11 -13
  178. cirq/protocols/mixture_protocol.py +4 -4
  179. cirq/protocols/qasm.py +11 -13
  180. cirq/protocols/qid_shape_protocol.py +6 -8
  181. cirq/qis/clifford_tableau.py +12 -12
  182. cirq/qis/measures.py +7 -7
  183. cirq/qis/quantum_state_representation.py +3 -3
  184. cirq/qis/states.py +51 -51
  185. cirq/sim/classical_simulator.py +10 -10
  186. cirq/sim/clifford/clifford_simulator.py +6 -6
  187. cirq/sim/clifford/clifford_tableau_simulation_state_test.py +1 -3
  188. cirq/sim/clifford/stabilizer_sampler.py +4 -4
  189. cirq/sim/clifford/stabilizer_state_ch_form.py +3 -3
  190. cirq/sim/density_matrix_simulation_state.py +15 -15
  191. cirq/sim/density_matrix_simulator.py +11 -11
  192. cirq/sim/density_matrix_utils.py +9 -9
  193. cirq/sim/mux.py +9 -9
  194. cirq/sim/simulation_product_state.py +9 -9
  195. cirq/sim/simulation_product_state_test.py +2 -2
  196. cirq/sim/simulation_state.py +14 -27
  197. cirq/sim/simulation_state_base.py +8 -24
  198. cirq/sim/simulation_utils.py +3 -4
  199. cirq/sim/simulator.py +28 -43
  200. cirq/sim/simulator_base.py +12 -25
  201. cirq/sim/simulator_base_test.py +6 -6
  202. cirq/sim/simulator_test.py +7 -7
  203. cirq/sim/sparse_simulator.py +8 -8
  204. cirq/sim/state_vector.py +8 -8
  205. cirq/sim/state_vector_simulation_state.py +17 -17
  206. cirq/sim/state_vector_simulator.py +4 -4
  207. cirq/study/flatten_expressions.py +12 -14
  208. cirq/study/resolver.py +9 -11
  209. cirq/study/result.py +11 -24
  210. cirq/study/sweepable.py +5 -5
  211. cirq/study/sweeps.py +27 -40
  212. cirq/testing/circuit_compare.py +5 -5
  213. cirq/testing/consistent_controlled_gate_op_test.py +7 -11
  214. cirq/testing/consistent_protocols.py +10 -10
  215. cirq/testing/consistent_protocols_test.py +7 -7
  216. cirq/testing/consistent_qasm.py +4 -4
  217. cirq/testing/consistent_qasm_test.py +2 -3
  218. cirq/testing/devices.py +4 -5
  219. cirq/testing/equals_tester.py +2 -2
  220. cirq/testing/equivalent_basis_map.py +4 -4
  221. cirq/testing/equivalent_repr_eval.py +3 -3
  222. cirq/testing/json.py +14 -14
  223. cirq/testing/logs.py +3 -3
  224. cirq/testing/no_identifier_qubit.py +2 -3
  225. cirq/testing/random_circuit.py +7 -7
  226. cirq/testing/random_circuit_test.py +3 -3
  227. cirq/transformers/analytical_decompositions/clifford_decomposition.py +16 -16
  228. cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +13 -13
  229. cirq/transformers/analytical_decompositions/cphase_to_fsim.py +5 -5
  230. cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py +3 -3
  231. cirq/transformers/analytical_decompositions/pauli_string_decomposition.py +3 -3
  232. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +4 -4
  233. cirq/transformers/analytical_decompositions/single_qubit_decompositions.py +6 -7
  234. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py +2 -2
  235. cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +7 -7
  236. cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py +4 -4
  237. cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +7 -7
  238. cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +11 -11
  239. cirq/transformers/analytical_decompositions/two_qubit_to_ms.py +5 -5
  240. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +14 -14
  241. cirq/transformers/dynamical_decoupling.py +13 -13
  242. cirq/transformers/dynamical_decoupling_test.py +4 -4
  243. cirq/transformers/eject_phased_paulis.py +16 -16
  244. cirq/transformers/eject_z.py +5 -7
  245. cirq/transformers/gauge_compiling/gauge_compiling.py +38 -38
  246. cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +2 -2
  247. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +8 -8
  248. cirq/transformers/insertion_sort.py +5 -5
  249. cirq/transformers/measurement_transformers.py +14 -14
  250. cirq/transformers/merge_k_qubit_gates_test.py +1 -3
  251. cirq/transformers/merge_single_qubit_gates_test.py +1 -3
  252. cirq/transformers/qubit_management_transformers.py +5 -5
  253. cirq/transformers/routing/initial_mapper.py +4 -4
  254. cirq/transformers/routing/line_initial_mapper.py +9 -9
  255. cirq/transformers/routing/mapping_manager.py +7 -7
  256. cirq/transformers/routing/route_circuit_cqc.py +27 -27
  257. cirq/transformers/routing/visualize_routed_circuit.py +4 -4
  258. cirq/transformers/stratify.py +8 -8
  259. cirq/transformers/synchronize_terminal_measurements.py +6 -6
  260. cirq/transformers/target_gatesets/compilation_target_gateset.py +8 -8
  261. cirq/transformers/target_gatesets/compilation_target_gateset_test.py +2 -2
  262. cirq/transformers/target_gatesets/cz_gateset.py +4 -4
  263. cirq/transformers/target_gatesets/sqrt_iswap_gateset.py +5 -5
  264. cirq/transformers/transformer_api.py +11 -26
  265. cirq/transformers/transformer_primitives.py +24 -36
  266. cirq/transformers/transformer_primitives_test.py +3 -3
  267. cirq/value/classical_data.py +18 -18
  268. cirq/value/condition.py +8 -8
  269. cirq/value/digits.py +7 -7
  270. cirq/value/duration.py +12 -12
  271. cirq/value/linear_dict.py +8 -12
  272. cirq/value/linear_dict_test.py +2 -2
  273. cirq/value/measurement_key.py +8 -8
  274. cirq/value/product_state.py +9 -9
  275. cirq/value/value_equality_attr.py +4 -4
  276. cirq/vis/heatmap.py +23 -35
  277. cirq/work/collector.py +9 -17
  278. cirq/work/observable_grouping.py +4 -7
  279. cirq/work/observable_measurement.py +29 -41
  280. cirq/work/observable_measurement_data.py +14 -14
  281. cirq/work/observable_measurement_test.py +2 -2
  282. cirq/work/observable_settings.py +9 -10
  283. cirq/work/pauli_sum_collector.py +5 -5
  284. cirq/work/sampler.py +17 -17
  285. cirq/work/zeros_sampler.py +3 -3
  286. {cirq_core-1.6.0.dev20250520054601.dist-info → cirq_core-1.6.0.dev20250520183459.dist-info}/METADATA +1 -1
  287. {cirq_core-1.6.0.dev20250520054601.dist-info → cirq_core-1.6.0.dev20250520183459.dist-info}/RECORD +290 -290
  288. {cirq_core-1.6.0.dev20250520054601.dist-info → cirq_core-1.6.0.dev20250520183459.dist-info}/WHEEL +1 -1
  289. {cirq_core-1.6.0.dev20250520054601.dist-info → cirq_core-1.6.0.dev20250520183459.dist-info}/licenses/LICENSE +0 -0
  290. {cirq_core-1.6.0.dev20250520054601.dist-info → cirq_core-1.6.0.dev20250520183459.dist-info}/top_level.txt +0 -0
@@ -1,59 +1,59 @@
1
1
  cirq/__init__.py,sha256=ATT0Sbu4iemRSpJ0xGabMJJ85kEeGJZ0TPirye6BWwM,28336
2
- cirq/_compat.py,sha256=WAe4w7ZvaLlmn5J-YQMoHNwlosFaTUW6XiI1bXhPCrA,29569
3
- cirq/_compat_test.py,sha256=t51ZXkEuomg1SMI871Ws-5pk68DGBsAf2TGNjVXtZ8I,34755
4
- cirq/_doc.py,sha256=GlE8YPG5aEuA_TNMQMvqS6Pd8654akVJavUnNngtWUg,2915
5
- cirq/_import.py,sha256=bXzIRteBSrBl6D5KBIMP0uE8T-jjwMAgoF8yTC03tSc,8457
2
+ cirq/_compat.py,sha256=CC1SwZPVT37jGOejTB242MOAtOXSEft7iS9_clTEonM,29510
3
+ cirq/_compat_test.py,sha256=ZSmenkbqEfRJpGsvutmV8vgIlfZCWj8GAVgi3t5YRso,34635
4
+ cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
5
+ cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
6
6
  cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
- cirq/_version.py,sha256=rVWHIzX5f80Gx-FcYCU3EnViu_WpB5-sDIe3g3W9IvQ,1206
8
- cirq/_version_test.py,sha256=jiYb5o_j2CKo4xTNOUq5JFabeJRwq7FSrueSdraFEM0,155
7
+ cirq/_version.py,sha256=_yw4RRKmSVMdivsE0OY76zMuGfszlmva9RUSjE8v554,1206
8
+ cirq/_version_test.py,sha256=iWTeHzqPI62gfoklh-rr0MZPy7EgzCssOSH5q9vhnLc,155
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
10
+ cirq/json_resolver_cache.py,sha256=S-zUVI4D_XnAxyR6z7WHDImCVmB_awJp6EStD1-CNPU,13621
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
- cirq/circuits/_block_diagram_drawer.py,sha256=nOJep9Wz8Q-hb0dX-Xteg8_R1r0HQxbOPYqKJiOaLzw,9545
13
+ cirq/circuits/_block_diagram_drawer.py,sha256=OpIupxl6plGVaLkU13RqYGELAlHAIy56tV6qjg51Yws,9489
14
14
  cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU8OEunecX5SSIRU,11475
15
- cirq/circuits/_box_drawing_character_data.py,sha256=hXDBeaffIzqQ0Lm52PBE3GEHMnDsqi1JsvUf3ezkjh0,12151
15
+ cirq/circuits/_box_drawing_character_data.py,sha256=hExbMJHm9LGORhlhNiUvPiHquv4pJqIgJqJCivW4dbM,12109
16
16
  cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
17
- cirq/circuits/_bucket_priority_queue.py,sha256=FQwlSAEpoe7ZQEdCD5w3oVYI4xfqOKeVxJI4Zv0NR3U,6780
17
+ cirq/circuits/_bucket_priority_queue.py,sha256=U564r2mou4aZsOlpVYiZCgirqS6mVznG3ESyawBt4gE,6749
18
18
  cirq/circuits/_bucket_priority_queue_test.py,sha256=7XXeGMhz-dyfo9xeqbBKSxJ0hHVuakGMR45Zp7she88,5324
19
- cirq/circuits/circuit.py,sha256=reDLqLMj3SZM-z-7vLZhvy4XRTnmkK0HigbknFtMDLA,119141
20
- cirq/circuits/circuit_operation.py,sha256=8zeK57Xjkavt_ur9ESqocMURTcqD-f2T3hAe95gVB-g,36395
19
+ cirq/circuits/circuit.py,sha256=thMCMQkCtm11YAMyPH121kPNMnE0nH4Zy6bpd7nBcPg,118908
20
+ cirq/circuits/circuit_operation.py,sha256=5LN0vXQT8hoUP8Vhkozm3d6hPqw0BUX5WBhKMr5qOng,36252
21
21
  cirq/circuits/circuit_operation_test.py,sha256=aC4gS7O64kS-n2RPO2d7W7pTN2M0eNGTVOGhhv3HOgs,48899
22
- cirq/circuits/circuit_test.py,sha256=3I_L3i2qv0uSgVorSRd8T7u8CiglPtgU_oFGxf9RkBI,162793
23
- cirq/circuits/frozen_circuit.py,sha256=NPhwvwmjxpEjvikYkTtQz__T_Wb4AFDoxXeanucV6HE,9236
22
+ cirq/circuits/circuit_test.py,sha256=8lOt-U48Taxa2DzGG0XP0uXgzA0mAJAKaVpkXDzmJ98,162773
23
+ cirq/circuits/frozen_circuit.py,sha256=CwlREZbCCrHJ6zTLLEbER_M7P4IsBEADhM5dbDBTvvM,9152
24
24
  cirq/circuits/frozen_circuit_test.py,sha256=WBG2tc3VHYNxZV-FpL-opgsgUOZCCFqyrClt4fMDMrg,4169
25
25
  cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
26
26
  cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
27
- cirq/circuits/moment.py,sha256=g6gPgOvRx7sVcxlmjzPvd7UkdFlElCw7bHrahWhrK5M,25924
27
+ cirq/circuits/moment.py,sha256=5yQOqFI-_ow7O0PX0ToulzpsJq8J8AUVCIJg-Oeqaqc,25826
28
28
  cirq/circuits/moment_test.py,sha256=kfPObC2xXlulWV7exXt6a6wraXrdZJiAV4xTGwXFc5Y,31152
29
- cirq/circuits/optimization_pass.py,sha256=8R3AqhL55giV4JPAX052r5hY-erG562Uv_SoNHHXeQU,6499
30
- cirq/circuits/optimization_pass_test.py,sha256=g93T6fhtlGH8s-iepFmyvR4xWqUpmK25-xS1QYzkY0A,5963
31
- cirq/circuits/qasm_output.py,sha256=Kp0BWiMpCUxt5zXcE-tynU7R8U7hwCHG-hnjzfzeBiM,13120
29
+ cirq/circuits/optimization_pass.py,sha256=r_elKwotCt8QDz_7meQQxHW4b8mCN7zFZOlmXTsDE54,6473
30
+ cirq/circuits/optimization_pass_test.py,sha256=FvCCOZrqVQLYrf_BUAZ6M-sm6dMv00_xsvpN25Op1BA,5914
31
+ cirq/circuits/qasm_output.py,sha256=qclnyiEnRzkcr0JqzzABuiHD3INkiALmhl1jCW0AYNk,13079
32
32
  cirq/circuits/qasm_output_test.py,sha256=YC0LxqLycNgw8Ozd3Q9_DAH-p7TsMLPYiH2pnKLEkks,13877
33
- cirq/circuits/text_diagram_drawer.py,sha256=EGnSC4lB12NdgAPeKWc6yaBUr1_bbcd1hhff4zm1GZM,16610
33
+ cirq/circuits/text_diagram_drawer.py,sha256=qqjzbswwRfXCRfJXyTIdCrj_zkUgDW5A-ctEXDRVRhk,16451
34
34
  cirq/circuits/text_diagram_drawer_test.py,sha256=iaK7AzVlS4iMAg53YlqaYiJTaMqfhA-noLUBapG7yg4,10787
35
35
  cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
36
  cirq/contrib/json.py,sha256=ITiaznB1mndxtasVO5QTeu-31h3vgGTBCGFzousOxHE,788
37
37
  cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
38
38
  cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
- cirq/contrib/acquaintance/bipartite.py,sha256=8PsPAo2POlrQ4sw6pnUu_WOiGL9VD1ASCy8rkpm2XnI,6545
39
+ cirq/contrib/acquaintance/bipartite.py,sha256=9BusD-thMIfOEZeDuUEBnZUJoOJ8bc-DzNJTVMOrVR8,6494
40
40
  cirq/contrib/acquaintance/bipartite_test.py,sha256=sLygAb40mRfEk1bAzgPf1mMlgIqrWvhay8SW5aTSfwk,16100
41
41
  cirq/contrib/acquaintance/devices.py,sha256=5wnuG4IFrva4J3muqf81iOS3zlxuEZ81V2UA06PeB6s,3064
42
42
  cirq/contrib/acquaintance/devices_test.py,sha256=l76xfjzmYhvWash8_XDUKhqFkfTBT-rFqdfbjLbxreI,1243
43
- cirq/contrib/acquaintance/executor.py,sha256=a6SIaykIfZaIlxHxlgpwzqfvUb46O2V2i_qEJsEGlcI,8661
44
- cirq/contrib/acquaintance/executor_test.py,sha256=ckGFNNV1EsS1XE5jxn1x8A3KannC-L20fCnxcnypmBg,7939
45
- cirq/contrib/acquaintance/gates.py,sha256=Fkk7f0YwVLULh1hGXqjtGm5etb9xuhgvQlb3hrcMML0,13571
46
- cirq/contrib/acquaintance/gates_test.py,sha256=hKN3uX7ew4Sv8j0DTBbBm8n64NxHMC4s6kFTpaPspac,15044
43
+ cirq/contrib/acquaintance/executor.py,sha256=PcdI1a8H1KrNWI0Es8S4PdEKrvC1vG-K8lPHcZiaymM,8626
44
+ cirq/contrib/acquaintance/executor_test.py,sha256=4NjZuWI5qy5PlrHjaNRlwmDyF3Mr_9vui1LBqeDIh3o,7926
45
+ cirq/contrib/acquaintance/gates.py,sha256=de3wWd79UcrLD0o_n0Mw9_qBCtk4rPZ-y1t7d-hwOM8,13492
46
+ cirq/contrib/acquaintance/gates_test.py,sha256=2PKXWH6IGzUCQvqXs4IXYS0bwVyLuekgS40biZkMQd0,15024
47
47
  cirq/contrib/acquaintance/inspection_utils.py,sha256=yTJ-ferTfvLst8Lm6mchsQV5qgFI-D6LtnQD_dG-B9Q,2636
48
48
  cirq/contrib/acquaintance/inspection_utils_test.py,sha256=e2mLz0Wc-6dGTdBcfiW94fYIxW0pg-W1ePalO6bCR7M,1478
49
- cirq/contrib/acquaintance/mutation_utils.py,sha256=q-aikSKFLGISgTNXYDGinFUW30mNLPjqTj00-SeDU80,4754
49
+ cirq/contrib/acquaintance/mutation_utils.py,sha256=jnLy8Xg1kFC_7UHENaqGFpvPjmZBu-vs2vu-vIUoupg,4716
50
50
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=_wDNSWIUAkgFa8T6xlcxP0bItLpEiSGd37mdDgEobq0,7900
51
- cirq/contrib/acquaintance/optimizers.py,sha256=ZPsZW-ZakNcLMRATpVkNuBT7vBd55XqHUU3dtzMO0rw,2121
51
+ cirq/contrib/acquaintance/optimizers.py,sha256=f9FZF-JvKoLYYz6H3rDs3tbrCzX33v1aCRDNKmWT84I,2099
52
52
  cirq/contrib/acquaintance/optimizers_test.py,sha256=SGNvMoW73sdqVJr08NvXJeQvd0zg2y1rOB6iUEeHDsA,2500
53
- cirq/contrib/acquaintance/permutation.py,sha256=S9ngL-kIkTle0gBYbp-OzIxTUQl7Hp5C_w4UVd5apUg,11832
53
+ cirq/contrib/acquaintance/permutation.py,sha256=CF4TzVXxVaZ6dpINxAEbPx2jGsNcCHEk_gB6eygJvaA,11733
54
54
  cirq/contrib/acquaintance/permutation_test.py,sha256=KsvkWSv9CH5TXPb0ZJMCwvHoYbkuxYhBrZpA-58aUi0,11539
55
- cirq/contrib/acquaintance/shift.py,sha256=ZZ5Krvgx5OOLhr5qLOVvP0G_dvGMgy-fIrJPxIgY10U,3107
56
- cirq/contrib/acquaintance/shift_swap_network.py,sha256=WNWUZtUmyzzt3xZg6g_FgmbTNON5gtU9uKWXjWhB9YU,5311
55
+ cirq/contrib/acquaintance/shift.py,sha256=kb15_jMGe-njrGLPnEule9eBfgEzf-ScqHA8eawFPp4,3094
56
+ cirq/contrib/acquaintance/shift_swap_network.py,sha256=gT8A7ASsrL3DCwdnzZuUZEkyfkAHBbOEwQfCFVhQDtU,5285
57
57
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=qtJtW4L1bi03ljgCXqcuD09T_DyFJzDHUI9JHsZMvGU,11626
58
58
  cirq/contrib/acquaintance/shift_test.py,sha256=srf0_Sa-k6xIzwY9lCCwGn7ev2fFnJ4la1OHy9XmgX0,4639
59
59
  cirq/contrib/acquaintance/testing.py,sha256=YMgVGA9ZUMOeQ5tiwbzeZQ6HyQpDyZ5vMoHAVJHHy6Y,1618
@@ -61,25 +61,25 @@ cirq/contrib/acquaintance/topological_sort.py,sha256=u01U9Z8WjHzF3jD1IC_wpdqJ67O
61
61
  cirq/contrib/acquaintance/topological_sort_test.py,sha256=qYVwguw93ouBO13P95wFb7Igdc8WOdTiK5dNH_asZ0A,1716
62
62
  cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
63
63
  cirq/contrib/acquaintance/strategies/complete.py,sha256=Ty3ua6PC80y_J1lyCOmzoRmMmbv-lnjhS00uxChR8to,2194
64
- cirq/contrib/acquaintance/strategies/cubic.py,sha256=9ynZcuGJxG6eH3XZn_8hrDTGPzoWgbaeT7Z2a5wOHvA,3180
64
+ cirq/contrib/acquaintance/strategies/cubic.py,sha256=NwjnMu0o6_wa657rvDp7oF-Iszhchk8ivyYAsP6qxEg,3173
65
65
  cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=ew1VlBa-FuhWQnMt1sqngM-fyfJhNLNKs4ZvYHc0ofs,1599
66
- cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=Cr7VeT4k8SUoZGdLtw9uw355uQV1fFT161rAscjZDDE,2583
66
+ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=XMyTgC59egPIANVfdJ7NbZ-Y4f5K0hEZPJ5GrtqsoBE,2570
67
67
  cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=jgEurSuDAM8oqPUkk2cvDgYQVBNvsc0Jh6ZfbNt-jMU,2165
68
68
  cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
- cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=6MKRJLzXWTSUBQ3PPIxYY5ikBwH7MVu7DBAADgY0o-Y,9182
69
+ cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=WUZozcgf50gIhVTDDw_r7KZU_uApBgbgdW6M0su7zPE,9113
70
70
  cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=isSFAcFj4j0lSPyXfh0i1Rb87Uw05k9GxU7o-wKLCoE,5913
71
71
  cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
- cirq/contrib/circuitdag/circuit_dag.py,sha256=chqf4O67gSq56uCSVMj8-n6eHGBP6NYZN9oYNI29p9U,6888
72
+ cirq/contrib/circuitdag/circuit_dag.py,sha256=4ijaMjfzyBHY3rUrGnsM4K0hb30_qJywntpjPDskZlo,6882
73
73
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=0qn0Bwy48QI_TQzlxF0lmvz22llrSpRbj5F2RQzGmnc,8258
74
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=SQSaoo8KcEMUk32tVgTtukNWP7zGFB6WnF2XtWTL4HY,3222
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=AJgs1HIkXQvoJ2_ll4oSrT2dwzqFlP4By5B-nYHqUDg,7806
75
+ cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=dSTlTiFwXicJxQA4yHREGF7aJnkafNVrf74w9hkMsYQ,3210
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=8IB03E_v3sWPDmnymWgJ0VCUHYl-iO0B6-VKaluLLKw,7793
77
77
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
- cirq/contrib/graph_device/graph_device.py,sha256=Hi7KZnV_lY_qNhPFyrzdbqvpTHYu7XNc2RC0w96KdV0,7942
78
+ cirq/contrib/graph_device/graph_device.py,sha256=DLqi-88Zj4P4QyYvi_uAiivDEuDcq98Qp8CVEtff3rQ,7919
79
79
  cirq/contrib/graph_device/graph_device_test.py,sha256=BM4BsDDofCyOtChTQFX7SBLgGv4lgA0Yl6BKmTqzBwI,7239
80
- cirq/contrib/graph_device/hypergraph.py,sha256=QiqOsGLp4XpfpJhKXarnA2PJmAnhQvHc89ve4m5Y1oA,4750
80
+ cirq/contrib/graph_device/hypergraph.py,sha256=blulP4Q7jKpmxAqEhIuwjClIQdU-zDKmIknbNZZHPr0,4692
81
81
  cirq/contrib/graph_device/hypergraph_test.py,sha256=uLGGLOdo0Ro4MaDevHU91pheMTX2m7-Hf1bRvJ3UrAo,3805
82
- cirq/contrib/graph_device/uniform_graph_device.py,sha256=54FG3kpcQesDICgkF8U_iSZudbQNWaUrps6tpMhhXXM,2394
82
+ cirq/contrib/graph_device/uniform_graph_device.py,sha256=H3DAC0JLTJvtivoY2yRV6ID3Rvc1ltvePBZU59KoAZY,2372
83
83
  cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=nmKYkbnxBBvDOcvbSzs_x19aqz4JE4FkD568J77aryI,1652
84
84
  cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
85
85
  cirq/contrib/hacks/disable_validation.py,sha256=7Z1_vpGF5sXP3wGIGUysvna0rnFNrpFMmfD0sz7saJ0,1455
@@ -88,165 +88,165 @@ cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ
88
88
  cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCYgow7tl8Pjf5Q,7674
89
89
  cirq/contrib/noise_models/noise_models_test.py,sha256=oA7HRMPDi9lv9Lqb8idF9C6Vqjh3KuxD00z5JkE5ybw,10588
90
90
  cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
- cirq/contrib/paulistring/clifford_optimize.py,sha256=ascURgO3SGCUO9ZWC9YEmK0E64rJxnoVOrApbWprJVg,7866
91
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
92
92
  cirq/contrib/paulistring/clifford_optimize_test.py,sha256=HZBBf13Q6JBLrzulK_--xs-tTiu794tOW2ncYLB3SJ0,3965
93
- cirq/contrib/paulistring/clifford_target_gateset.py,sha256=bwJX97xaZPBi-KNwN34qtf_MUguEd52_lbHlBIibimw,6373
93
+ cirq/contrib/paulistring/clifford_target_gateset.py,sha256=L-oL0chwBIEQ6zWVPO6ENQJTK7vB5I7RP6i9SkDyr8Q,6330
94
94
  cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
95
95
  cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
96
96
  cirq/contrib/paulistring/optimize_test.py,sha256=-CHtu1CsRvq0iO_ET2gtNsRy6odUWMXU4RAI7yFft-k,3619
97
97
  cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
98
98
  cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
99
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=FRCaB3Gi5fP5XF5nJankPw0IEIFp6ZlIFQ5OfFFYJvQ,20164
100
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=yPFWcZiVkUcwwpjQQsT135JPmj9p5KOS9urzNqUWAfQ,35501
99
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=Tz69rtet_u69CpOxERkGjaC0Ty13OTd6THP8tl097No,20057
100
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=fo-bNK2T-f8eTfIaPh_2sszYg-v-Epn0EBOEoC8QcCk,35495
101
101
  cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
102
102
  cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
103
- cirq/contrib/paulistring/recombine.py,sha256=Aym48ZRNDyFQOgBSqVj4gHvz8ZnjBjs8YAk6NIIkp74,4379
103
+ cirq/contrib/paulistring/recombine.py,sha256=phJ-SY4zdqZpIZca0iSsY0lK6NdXd0M0sOOWnUdGn5U,4353
104
104
  cirq/contrib/paulistring/recombine_test.py,sha256=ydCc2JxmmjZ8TR-Ojyy5lIRed_P-n6UKWIRZ6HIlzVc,1959
105
- cirq/contrib/paulistring/separate.py,sha256=LKjzjZVlo3D5UCqzff9anDuuxaW9CiAI-R7N6VGnMFw,3962
105
+ cirq/contrib/paulistring/separate.py,sha256=h3UHkJp2dAQn9wrW57Z2s6GvfnPZwRMzTHULoyJVfkw,3955
106
106
  cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
107
107
  cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
108
108
  cirq/contrib/qasm_import/_lexer.py,sha256=_XlorbGfEXgsqTZcGbtgfEgaJ6mJ8I51pEjlBsaOT6I,2965
109
109
  cirq/contrib/qasm_import/_lexer_test.py,sha256=L1Deb3FO5urHnXN-nb4FRKpaDTqITTMLBeUu3JFeWaA,6254
110
- cirq/contrib/qasm_import/_parser.py,sha256=xvmfYYoTUu-ucZ900vVxCNG8vRzCjuQQmOQ4VpYfOJg,26088
110
+ cirq/contrib/qasm_import/_parser.py,sha256=i-bUT3Zzge5fHCYHuveamks8OeeC1XLhq9cqJlgQjns,25983
111
111
  cirq/contrib/qasm_import/_parser_test.py,sha256=92GQEZixq9rK42RqnHHrqOGeKBdrCIWn5RiM5ygKEaY,40303
112
112
  cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
113
113
  cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
114
114
  cirq/contrib/qasm_import/qasm_test.py,sha256=NhGf4U_xYgJ4ZQmkS-5GoLWpJRweT1R38OcgHcau328,1898
115
115
  cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
116
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
117
- cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=GV9pV2PsSm0EbgREdDvXrCOcys_K6Weezpo1AOBBXP8,4596
117
+ cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=iseXGluQb8lWQ9L9mF9uJQMhInFaPWXDOBumX_fj34E,4551
118
118
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=mNeqAKJwzE4sZQEadto8EFuP_UI9ckfMJFzqfBHuYhc,2429
119
119
  cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=am9X5DsgQ569P2-nKfZn6oOYMbxNaaYCsJ4IyZvCpwg,2486
120
120
  cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
121
121
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=Q6SqGhxvs2JVYvmT0S4tSNxB-DBUE7bHkrhqUb1cLNo,6125
122
122
  cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
123
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=LBzQrMFx0mYMwdJb_1n7vDwU7vQ1Rmxf9NZMOuFekG4,19467
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=BTNd23yvkuXrZv21JVMdr9VHLpjy2OEFDTbjpl8FGlA,19418
124
124
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=NvqrJaw0Nok2Z_71eKQQQ_xoazxIPWim8NZ14iS5CpE,12436
125
125
  cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
126
- cirq/contrib/quimb/density_matrix.py,sha256=fJPsbmaADRvwyWCBmKRsn1YYxR88LDkf1Sz_Ye3wWrE,8672
126
+ cirq/contrib/quimb/density_matrix.py,sha256=Ja0iBv9pPGad0Y5_9R0QZFTOOSAnU6-BuewLcO6JiVQ,8606
127
127
  cirq/contrib/quimb/density_matrix_test.py,sha256=lsDKLOGsr7vXTJAf5mXFXrDRn_QM-s5BoTABubWCtEU,3036
128
128
  cirq/contrib/quimb/grid_circuits.py,sha256=5tFgTwb83x7QFJh8-4Vj5lO07eJvEL3f8QW4MCdKucs,4701
129
129
  cirq/contrib/quimb/grid_circuits_test.py,sha256=gemrEO7qcxx7L4bIJbA6gHd4Ub3kVf8e_IQY6U9dyv8,3260
130
- cirq/contrib/quimb/mps_simulator.py,sha256=xEtLqkAHNavyUr8IuBJ-RHi_O4qK9DoIbNSOfZyR8u0,24710
130
+ cirq/contrib/quimb/mps_simulator.py,sha256=DVQHmlm9G0-OLjX6hH_lHLIJ0ely43LZfsxywyT-7mQ,24651
131
131
  cirq/contrib/quimb/mps_simulator_test.py,sha256=x4Ro-nAEb3xbr0I4pjw3oTRK4yRCYaRmv7obcr2ti9o,17179
132
- cirq/contrib/quimb/state_vector.py,sha256=sBhbKU0kMwY0wdCT6DT0Bm6ehKMZgtqiHDiCulQpidw,6759
132
+ cirq/contrib/quimb/state_vector.py,sha256=8CvClbDRr4rLSApbIAVYzDs3zMZ9e3a_VW7VErIectM,6693
133
133
  cirq/contrib/quimb/state_vector_test.py,sha256=l1soE2DqwBkPcinSFRRsmG36ukJ5Bahrin7SfIq4W34,5837
134
134
  cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
135
- cirq/contrib/quirk/export_to_quirk.py,sha256=CAhgt_9aCHnLbAKGGotPYAD0tHAhy41UTSeSAGtXwUA,3873
135
+ cirq/contrib/quirk/export_to_quirk.py,sha256=vbzG3LzqlZfRxdqVIdYoqFalBfkFHUtE762rCVTYNqs,3860
136
136
  cirq/contrib/quirk/export_to_quirk_test.py,sha256=HVIvNP8pSx7gmpTZ6TAf2YZGs--bPK0DVcfjX-xjHbI,12022
137
137
  cirq/contrib/quirk/linearize_circuit.py,sha256=ackWBymRhMLOL9MBvPkamXLfOQG0xDKOHhP01_l1G9Y,1581
138
- cirq/contrib/quirk/quirk_gate.py,sha256=2xMuZTG-Mqfcrw7vQccProRZz0cfT8CjhdZln0bUL2c,7309
138
+ cirq/contrib/quirk/quirk_gate.py,sha256=mldzqkKYD_KlY3gkI4ujrHn3Xlp1L2ODHKyQr6eL8Gk,7232
139
139
  cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
140
- cirq/contrib/routing/device.py,sha256=RecjRwGN9uOe9ax7omPoLQfNY_n6QfLLlteE81ySwt8,2925
140
+ cirq/contrib/routing/device.py,sha256=5BWKLh5AIJNNLNoUAr-ROHF87JSK75x5Hu4V2SRo6cU,2912
141
141
  cirq/contrib/routing/device_test.py,sha256=60ZAstzmHpw9XxrYd3HOMpWnXaEWmH2yq_zJmxLhC8E,1962
142
- cirq/contrib/routing/greedy.py,sha256=TBkt0z76Fefs_6rlKE3sQXGqo_96GYsVDixrMiz9Oaw,13929
142
+ cirq/contrib/routing/greedy.py,sha256=QUD9WRBdc7nCe7nx_MBoawNIZ4wtIWH2TU_AiHGsuBI,13841
143
143
  cirq/contrib/routing/greedy_test.py,sha256=i4XSZyERmHKTkaLCHV5cBk0qH-LnRg8tcJVyKM2slmE,2290
144
- cirq/contrib/routing/initialization.py,sha256=M6z2eSiFaoZutZFQXhTJrQKdNVp2TEBtEPfmwGUlZAk,3733
144
+ cirq/contrib/routing/initialization.py,sha256=WPHsk488_O3_brXrxJ5lciljj25BFbv_Yr0vxE8AtZc,3727
145
145
  cirq/contrib/routing/initialization_test.py,sha256=-YzTK9rgiIjUdJnPQrhXtaxY6j5q6jnzs7S_sDdf0V8,2533
146
146
  cirq/contrib/routing/router.py,sha256=iirNwH5n8djNANVDCDDoHgaHT84pWP14vnw8DhoA2zs,2607
147
147
  cirq/contrib/routing/router_test.py,sha256=3VXVTexolCP0CKgsCSu6fMmEliQE48EcSq2uKujfJUY,6366
148
- cirq/contrib/routing/swap_network.py,sha256=3isu0X6KZS6Fkp6ZdZcSNpqP4IJVjxfY818GCI_kQlk,2385
148
+ cirq/contrib/routing/swap_network.py,sha256=wQPDb3ZyIyaB1O2H7IyoZxfsGsuVn5GpdpDSURwdzj4,2379
149
149
  cirq/contrib/routing/swap_network_test.py,sha256=iiiSLBi4kGr_W6TqpT8Zq0VA8haNnsMk-9wl6D0nsec,4852
150
- cirq/contrib/routing/utils.py,sha256=8fhDAqpYI8Tn12aTAOHjThzlv7QM0fbVrUWIUXgM9sg,3786
150
+ cirq/contrib/routing/utils.py,sha256=xvA1khTMBly750GVJm_pCc5uBpAHpayLGZ-Yq4m2qg8,3780
151
151
  cirq/contrib/routing/utils_test.py,sha256=4ssy2pXdHKRv99on91ag1SgZihYEfNR96i4AuTh90nM,2057
152
152
  cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
153
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=MQSONppSKLWXckXFYKQ2CJ0aXHEgaaOOmdWpHWysClo,10920
153
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=D-lsr1y65fiDtuPJ4wWPy3LrnB4w6hVVV6LT6cuMZU0,10851
154
154
  cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=ZtJpaXOeFG2PgywULlybSf8LZ24yT4nh2oiMepDXKxg,13884
155
155
  cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
156
- cirq/contrib/svg/svg.py,sha256=QQs--lyGCOY8ynbUIxdJf-i-8X_fU8NRjPIn8ELUnIk,9410
156
+ cirq/contrib/svg/svg.py,sha256=TU273Ei6XhKr_pbHyQPx2BPa-59r6L70IzDT8LvgDMQ,9391
157
157
  cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
158
158
  cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
159
159
  cirq/devices/device.py,sha256=4MXGo_NHHlysc3aK5a29jgdmjJniA6VCum8tUDW4HFw,5407
160
160
  cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
161
- cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
161
+ cirq/devices/grid_device_metadata.py,sha256=pgh2wu33i9rWOqqYgsTMtLuB2k4L8EAD6tMx_o_ju5g,8602
162
162
  cirq/devices/grid_device_metadata_test.py,sha256=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
163
- cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
163
+ cirq/devices/grid_qubit.py,sha256=lY3YZV4w16nABywVsrq1GzEw4h3DyRMaxxZwsTFbvKA,18760
164
164
  cirq/devices/grid_qubit_test.py,sha256=aRSoRL-L-LaXCgBOzaMvVDwdP0kGN0Oc1yIYaRlNYk0,15048
165
- cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
165
+ cirq/devices/insertion_noise_model.py,sha256=HpWosP7VmaGg4B9bA_v-vWwMifjvh7mMS489xRH868U,3601
166
166
  cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
167
- cirq/devices/line_qubit.py,sha256=nZOtTehJq2JuKP4evGQkR-ktMWNizkDPtUQhU1A4u-s,11829
167
+ cirq/devices/line_qubit.py,sha256=Bwr4KM7F9o5n_ChYtkH5uSaRUqMqAQaRAsVF7yl4bkM,11773
168
168
  cirq/devices/line_qubit_test.py,sha256=ZJjt3iWXxmFqpBypDvFKQhTFb_lvVp8aokbFG5iNfDc,10323
169
- cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
169
+ cirq/devices/named_topologies.py,sha256=CNoMG2xhisUgssSdngzr8VpA5YBPjpVhw4dtXxKAb7Y,15735
170
170
  cirq/devices/named_topologies_test.py,sha256=opABh1NgkfubHF4sCCTAxmFHLZXVZIgdKrZLQefd-AE,4854
171
- cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
171
+ cirq/devices/noise_model.py,sha256=teJNj25_tLTu_8_6fkKNyFAVnaRH6actJFXbhIJCHMY,11239
172
172
  cirq/devices/noise_model_test.py,sha256=QvgpP__Eecojm1DkCbRgDyu7xrbyPbvg7POS4xFktK4,9276
173
- cirq/devices/noise_properties.py,sha256=0VzM0_rmV1JumKQccj9_GEGPE0jNkuwIqXEaZfmEjcU,5111
174
- cirq/devices/noise_properties_test.py,sha256=mThe9jXkw_TDWSnBozTBTy6u5GtGiwQnoYpUbWWczD0,2385
175
- cirq/devices/noise_utils.py,sha256=N6zxBAmhbK3UGiu9FTQH_3GFB_0668B3x5NyAUKlIvI,7187
173
+ cirq/devices/noise_properties.py,sha256=g6Joc444K4WRwAYQGGP_rIah0nIxxJQ3WJmE8JsgbXo,5105
174
+ cirq/devices/noise_properties_test.py,sha256=UU3JXgDEckm-XTVeEW-LoonrJbst7qw4ahAH42n_cYY,2353
175
+ cirq/devices/noise_utils.py,sha256=73B1o22072RhsNdo7_t_A-pa7Sub62ff4VpvNt0Ewdk,7155
176
176
  cirq/devices/noise_utils_test.py,sha256=Pn_BO0c5Ky9FJk384FXh_BkXXYe1V7GWIBgxsaoB9as,2099
177
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=3FWn3Kwgkq3qVyMffHNdmFdqUtv5JwNr7dzfFI7srNY,8164
178
- cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=9EJqa69H6aFexNqadH-bPTqtIF2kr53PmwJAG-XtnKE,12243
179
- cirq/devices/thermal_noise_model.py,sha256=Moob5RD0b0kdVpssp1Y8aXdPtqmlNR35DITFIautquc,11603
177
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=NGn-i3SlsOPojx0zoqQ1R0IyhxjTyWapvhJCDrwRPOA,8141
178
+ cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=Ld7ft0Vr4V69egdL67WKAdDF6vNXc2-SLPzx0u2ph2E,12200
179
+ cirq/devices/thermal_noise_model.py,sha256=LIGlA6ikYWqbh-759RqXPMDMpCV2uKHT_pRLfMCGkYM,11535
180
180
  cirq/devices/thermal_noise_model_test.py,sha256=vgloNkmkNes_pn0D50-LD2RUcsMJey7EN8Wm6Nc-d5U,12282
181
- cirq/devices/unconstrained_device.py,sha256=R3vHBELHhDYgvvwhLgtlLASNL7er2jBmKJilgzbed8o,1557
181
+ cirq/devices/unconstrained_device.py,sha256=wa94uVzaCPb1jmG3h6hSGJQggSuCvEK8wekkGXCOx_Q,1551
182
182
  cirq/devices/unconstrained_device_test.py,sha256=J8vABVWWywQuX6Jlo5Y0pWTh6VZRatdmjdBL6u0kZKk,1083
183
183
  cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
184
184
  cirq/experiments/fidelity_estimation.py,sha256=Z6BjqAKMzyMGRMnUyy5YN3o0fpAOMtnmtQ6b_dGhT8E,9283
185
185
  cirq/experiments/fidelity_estimation_test.py,sha256=On0O1StB6Fo85xuK6BWo-zZWb2at-GqhAgpSrNRBn3I,4955
186
- cirq/experiments/n_qubit_tomography.py,sha256=T4Q8GkcESrraFfnSnDEaMh_-7X7U3ufpdHwrjprBr4M,8482
186
+ cirq/experiments/n_qubit_tomography.py,sha256=16u0Tv14SyUM9WCk-ZxbBit9cl93MbZodGrj16XiBuo,8436
187
187
  cirq/experiments/n_qubit_tomography_test.py,sha256=8wIgs0O8DtlCGOyC0MZA_d3tLNoURX1ARcqnnp1360g,4439
188
188
  cirq/experiments/purity_estimation.py,sha256=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWWVsdpEA7k,2503
189
189
  cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
190
- cirq/experiments/qubit_characterizations.py,sha256=74AIfqZ48mWdLuN7L-QWLVEztVFp4RjkgCj10DiMJiQ,36721
191
- cirq/experiments/qubit_characterizations_test.py,sha256=db5dp9I3wRYLR-WZs9jVrPZvAPO5uRVjP5R1u1pPbDQ,9752
192
- cirq/experiments/random_quantum_circuit_generation.py,sha256=eV4A5QGXfQZIv-ivAT5ALTDh2M98ht06qQQbbaptIkE,28158
193
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=hWiW31iNzheaU2M82G4CDsAhSW8kQ1-DWm8FgDpxvU4,16549
194
- cirq/experiments/readout_confusion_matrix.py,sha256=Im2X1MWD2zIlxHynH0TGBalZRA6PpPvk1kjEI1NfgPo,20729
190
+ cirq/experiments/qubit_characterizations.py,sha256=1ly0iYWcXVxOicsZehIOukHZQtqtNrlad44MIDdJdXU,36617
191
+ cirq/experiments/qubit_characterizations_test.py,sha256=A0_BjQnjeOxXlR2kC7gEwtmssTnv8kR0ljAQA4hOGoQ,9752
192
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=EOjmyta3rNQ9af7PhRhdYFpDdqseXPW8cMDwvkdLfVM,28056
193
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=4GSfUK2hw2r90JAO7R2zSBqjtwWi8vXuAhw-iK6quwY,16512
194
+ cirq/experiments/readout_confusion_matrix.py,sha256=ro3miCMr8K-EDW918PHKL_QcqrDUT-_uTXUvJ1PPzEI,20666
195
195
  cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
196
- cirq/experiments/single_qubit_readout_calibration.py,sha256=K9IZQINYwDVxF3OT15Zd40JnQhKtGc9z5UNALMIIu4w,14749
196
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=-sC8QhSxRWQnPcdwserzDa7E0VyrUzwGdmGaPcNumQw,14706
197
197
  cirq/experiments/single_qubit_readout_calibration_test.py,sha256=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
198
198
  cirq/experiments/t1_decay_experiment.py,sha256=IA108IQ9KEcZilEwu_famESZmdMaxJAUKyHKJNhBjz4,7112
199
199
  cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
200
- cirq/experiments/t2_decay_experiment.py,sha256=RM8KbXmEWfLu865QksIZPCL9h37VQLUKoSTb1Uq_QnI,19176
200
+ cirq/experiments/t2_decay_experiment.py,sha256=w4W7QvdIPW5LO9KeREpMFJpFpz0F0wA9T9qPs1t4Mzw,19135
201
201
  cirq/experiments/t2_decay_experiment_test.py,sha256=b2ikIWTctvAp66GZftmVJ1z0mgS-eN0FsUU7bErG7Cg,15066
202
- cirq/experiments/two_qubit_xeb.py,sha256=fBl1XFMr495nwHDdYnuMSDUV6cvoMr6h1SOlvW0RimM,22845
203
- cirq/experiments/two_qubit_xeb_test.py,sha256=CO-3ceb9p-ZK9Xqr6GQOlpU02zYY_LZt4yg8U5HgNTI,10714
204
- cirq/experiments/xeb_fitting.py,sha256=UEPNyjpjoGUNTdQfdRUnPe_Yvdc18GewYN1FdJjWoYg,30401
202
+ cirq/experiments/two_qubit_xeb.py,sha256=JKv6B5iH3HXhiJQ4qG2BldVzWu1kinZNHpxJeZdDHVA,22771
203
+ cirq/experiments/two_qubit_xeb_test.py,sha256=MSwdIOcfFy9d-GZUzz4f-2_gblleR89dPIyC8pt_AsQ,10689
204
+ cirq/experiments/xeb_fitting.py,sha256=1DD3J3okzf2BqMatA1dg0soJAUvwgx7_qO9bfe5kw-4,30333
205
205
  cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
206
- cirq/experiments/xeb_sampling.py,sha256=7va7Rq_BpKtj-ip3Tnx6doqAoVWRQi4-g10kX03EEVo,14995
206
+ cirq/experiments/xeb_sampling.py,sha256=WfkeAWKIaLL4ArUQc0kxJdARYB-co_ZSk3ro7kca89c,14901
207
207
  cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
208
- cirq/experiments/xeb_simulation.py,sha256=w-4TI8KexpI6zJTS8PHmcWWWHfyRcbJYC4Ifin-bHts,5101
209
- cirq/experiments/xeb_simulation_test.py,sha256=2ETf99fb0b76w9NjH8pGHTVLLmQE6CIv0yzlCB6WbQ8,5646
210
- cirq/experiments/z_phase_calibration.py,sha256=NBn40t-w-PVorGVyEn_b16IiOkc7-wHY0KjWJMpovwY,15102
208
+ cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vKnn5HU,5073
209
+ cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
210
+ cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
211
211
  cirq/experiments/z_phase_calibration_test.py,sha256=F5ePCPHukDolucMPDfMbyeDSHMF3hEzW-EBEQHKrCyI,9048
212
212
  cirq/experiments/benchmarking/__init__.py,sha256=2jMiP2dmQrH9Z2eKC8koaQqZcOi_-ziuer-aHkLm_bU,709
213
- cirq/experiments/benchmarking/parallel_xeb.py,sha256=3RyTTnHpqV-8B-TmDS7jBnaLu6GFLKPUFDtOOnMUlwQ,26015
213
+ cirq/experiments/benchmarking/parallel_xeb.py,sha256=frCeZMRw03YGwDYYjWkg6blEFoGB8BPt9lxA9cNA8vA,25894
214
214
  cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=tT_iyG9_ZU933-t2altuugOy8ekqzxtjkmGn1rdF-ak,15867
215
215
  cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
216
216
  cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
217
- cirq/interop/quirk/url_to_circuit.py,sha256=VYFm_QSkpgug568oyF6LerZbFDkes3e5dR6YSREvuSQ,14226
217
+ cirq/interop/quirk/url_to_circuit.py,sha256=oEyMpUxjViS-TVzN3HWg_rK2k_MEBzn1VByMoOyJMi0,14083
218
218
  cirq/interop/quirk/url_to_circuit_test.py,sha256=A5mb66WkPAK37nO5RZRxJ_n5rvls2XzNaiCKch3lwLQ,26319
219
219
  cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
220
220
  cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
221
- cirq/interop/quirk/cells/arithmetic_cells.py,sha256=8H1YmrJi_I_eHfw-5icbKDFSeaFBFntTOBrMKvalb7A,13149
221
+ cirq/interop/quirk/cells/arithmetic_cells.py,sha256=okXTbRsVKGH2LAQ8-HfJxnUWGWkSHSomVGdnxqclvWs,13007
222
222
  cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
223
- cirq/interop/quirk/cells/cell.py,sha256=q325wair37CfRl-ipWtuy7bhf3r83pODTtw6cf9RyBQ,8452
223
+ cirq/interop/quirk/cells/cell.py,sha256=RUJm4fErnDBLNm-2GDoE2aKxOygOsFXo2TaGAb4uWHY,8365
224
224
  cirq/interop/quirk/cells/cell_test.py,sha256=ymhh6BN3kTCfsmki2I72KUxmZSP5GStszoBmQZAgj7M,2313
225
- cirq/interop/quirk/cells/composite_cell.py,sha256=-4UFAW0GWYELbRksIg8T1bfJq5Q5I6jxoe6SzUyc6H4,5356
225
+ cirq/interop/quirk/cells/composite_cell.py,sha256=SuCoJ-Px2HEEuoGXeX5mecza13VYfLCzi7F1AMVuNBY,5240
226
226
  cirq/interop/quirk/cells/composite_cell_test.py,sha256=aVikfJkju5niIiA2DmTqXPQ8Lr2AnqHtBp1QT0KtNRI,5344
227
- cirq/interop/quirk/cells/control_cells.py,sha256=nKQ-5wZUgywVMmXbFcqScF9VBj-R8hRGeXXelc20duQ,5573
227
+ cirq/interop/quirk/cells/control_cells.py,sha256=UGaSwYcjjC7RVOxaNY7PTejk9sHT-urALIY2FXIXV1c,5529
228
228
  cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
229
229
  cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
230
230
  cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
231
231
  cirq/interop/quirk/cells/ignored_cells.py,sha256=AEZ7O4kQZgCkd_Uvn2TbQkofp2IHM3GdY9c-9E2wSpw,1415
232
232
  cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
233
- cirq/interop/quirk/cells/input_cells.py,sha256=hR8zQQOCgbeRLK2f31mwRcAS5lGPi1AO83Uz1KuVDdQ,2951
233
+ cirq/interop/quirk/cells/input_cells.py,sha256=MUy4yD3oS3cEbB2yEj7SKVCSzkZO2LsT-j9FBiKmpi4,2932
234
234
  cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
235
- cirq/interop/quirk/cells/input_rotation_cells.py,sha256=HF_KFnfcFMCJ88XZF0BiOy1TsoCzD_qw2DAbeSV8qjI,7377
235
+ cirq/interop/quirk/cells/input_rotation_cells.py,sha256=TlxRbKQ6IPN8XgA7qocwufgnB5UQ_yHpCYhVQZTdRTo,7338
236
236
  cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
237
237
  cirq/interop/quirk/cells/measurement_cells.py,sha256=_6a6jm-EP9khPm2eZZu2ArlTdvfLzo1bW7LZ9GFaXVg,1539
238
238
  cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
239
- cirq/interop/quirk/cells/parse.py,sha256=uRlUzgcAVX5QDr7ALMQ5nWf-RcCW6l4VKChexKDMi4c,11909
239
+ cirq/interop/quirk/cells/parse.py,sha256=WKP0krx-7whsNrsbgVX9_97ZIi1zm2uYELQZ5KedI_o,11857
240
240
  cirq/interop/quirk/cells/parse_test.py,sha256=w3Vp13EBAcMvpCgWK9fzYwfBpVF4ax6JAqASLmFrYWg,7625
241
- cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=swv_ovLaqO073j-uo6JtII_Sw_Nh51e53tSq-8JREoM,3424
241
+ cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=2xBQt93gS0aam64ZU54Z8wnraIU5_G8auJLq5-7dBjU,3417
242
242
  cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=HEg156HfRnTSciiYEr_H3oIBtvF0GNafKwb2Gy53k5U,4552
243
243
  cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
244
244
  cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
245
245
  cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
246
246
  cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
247
- cirq/interop/quirk/cells/swap_cell.py,sha256=7WxDTBPu4gGKTkJYxtnNK5E3L3gmrzyCdi50fJuScFw,2443
247
+ cirq/interop/quirk/cells/swap_cell.py,sha256=oSF4Mg20EKEj_LedCQ_GWMyRWggxUsDhs414UB1IIWs,2424
248
248
  cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
249
- cirq/interop/quirk/cells/testing.py,sha256=L_77LEtJLXAKRsMREMbRf9pP43l-0JB_avl7UTb0u4g,3352
249
+ cirq/interop/quirk/cells/testing.py,sha256=hBfOZl1GfzFh8XzmI3X0t_kkWuZd9LJCWeK5XM4vrvg,3296
250
250
  cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
251
251
  cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
252
252
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
@@ -254,152 +254,152 @@ cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
254
254
  cirq/linalg/__init__.py,sha256=0dSlIBy-TVzf7b_-rLLlrS8ZFkgCfYg0pJjWs72xYOk,4045
255
255
  cirq/linalg/combinators.py,sha256=eFblS-EO45W0uqOm4rPmPj85_3w6Y3y7wnOTTLIiSK8,5366
256
256
  cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
257
- cirq/linalg/decompositions.py,sha256=bKwdrDSMQtnZgGhowVFrxfpuQbLR-s-xWwVF23h88Ms,38675
257
+ cirq/linalg/decompositions.py,sha256=vvCLLbOa4dKdWxEDlSzxdd31kZWr0d2nJ7k2YC2sYkE,38573
258
258
  cirq/linalg/decompositions_test.py,sha256=b61HGNDPhykEazp48lHk8Kgw08cKCMW4ZHtVDN8yDFA,25472
259
- cirq/linalg/diagonalize.py,sha256=2ZUWd5QDngwi8lJejTUbqe16p0aqbpDUxnfurvdxFmw,10087
260
- cirq/linalg/diagonalize_test.py,sha256=3wvNB0lxi2L1-gTPsJ3poSfMAtzFvdedB-EL-pjKI18,9205
261
- cirq/linalg/operator_spaces.py,sha256=zoqUpa_cCvhycqe2y7FikhLSB2tOV7wtuqRiYRXtcJo,4145
259
+ cirq/linalg/diagonalize.py,sha256=3PpGmlI7CCkQS3JKr0AkgdHOZedXLniZkxmUtpCNQPk,10074
260
+ cirq/linalg/diagonalize_test.py,sha256=c6-ksL2PDZ5hqr2ib2iS0uEnJuCHSv16cuiJK4PLjok,9161
261
+ cirq/linalg/operator_spaces.py,sha256=jUU-OYL8Lnn58kbhLskDyhkBeXZXPXVmR-hcIkq60JQ,4132
262
262
  cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
263
- cirq/linalg/predicates.py,sha256=FP4DF5qOCQuhTpJ_dcmSepNAu6bgXMY8HEWa0qtvn2o,12149
263
+ cirq/linalg/predicates.py,sha256=pWpfRjSZ34CfezHHniQyCrDfexcAmp9ikEr3kqUlUq4,12115
264
264
  cirq/linalg/predicates_test.py,sha256=lNtaVVbPhDFD1yXWZb2Ncz5ZsgSdkVxv-prBBXsvk0k,21540
265
265
  cirq/linalg/tolerance.py,sha256=EOP8s53270gw3wCPsnuuuhLENBhdUffxEDygwVLOvzY,1905
266
266
  cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
267
- cirq/linalg/transformations.py,sha256=iDv2wGqhBzJdFEfm8ZGFubF-wq4fPodAZbrZ_IWmlCo,32588
267
+ cirq/linalg/transformations.py,sha256=YiQdLe2BNHupPxV9Gxt3VRSWKTRmqt4yObV0Wwij2Dw,32526
268
268
  cirq/linalg/transformations_test.py,sha256=KcBgeNwiNms30qT5nAHhtASHbD0wIQDMaPEoXZVlxag,25672
269
269
  cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
270
270
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
271
271
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
272
272
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=2q7sPeQIb9UbseTPyRSaHeo4dZKF_EcNUDH5u6eIb98,1394
273
273
  cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
274
- cirq/ops/arithmetic_operation.py,sha256=j1RkP2gDX3n7xzEKNAoTQSmzfXBIAdov07AUlhdtVQw,10157
274
+ cirq/ops/arithmetic_operation.py,sha256=838sWl6eARWQQV9eNXyGMMvW0m0nX51bHbLz_FKvlTQ,10086
275
275
  cirq/ops/arithmetic_operation_test.py,sha256=m2dzaaqbbL5GZYRKNhoRVo_eGb1NPaEZjfHImCwqxO0,4982
276
- cirq/ops/boolean_hamiltonian.py,sha256=2Z5iqrxHxMmFjRgY72uqedK2C6sfFtIFSGs8TGwyhKg,14946
276
+ cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
277
277
  cirq/ops/boolean_hamiltonian_test.py,sha256=g99wUCiC_fap2UCkO7StpwKzR3GomESwbLXLL785VOY,8577
278
- cirq/ops/classically_controlled_operation.py,sha256=lRP-agJZBgGO5CL9OML3oZKaOZJAuAMqnHe4XRAC6Gk,10369
278
+ cirq/ops/classically_controlled_operation.py,sha256=P3VG5GT991vQTHIkcvOZR3L-Ene0neUJL4I-CJqKrgA,10260
279
279
  cirq/ops/classically_controlled_operation_test.py,sha256=GexXZ4aWrWL-okRRaDUlAnMXarydNCP-7fv2xZTxlqo,50245
280
- cirq/ops/clifford_gate.py,sha256=N2obL0540tkuIHOvfyEPuXavYm29kymieXqxKcKJ24M,40293
281
- cirq/ops/clifford_gate_test.py,sha256=iLzN-zca-wIbjbNng8gwlHGh7KZlg5zcoH_BV-KAuQ4,40810
282
- cirq/ops/common_channels.py,sha256=aTxfQ7F4ewv2h_XfUgfdGk2DbU7Lian-Jp_2muMNXlg,37130
280
+ cirq/ops/clifford_gate.py,sha256=vdN41tYaijabnDtFFOz-4Lx1uOt7ycnY5d1iO-IdZX4,40156
281
+ cirq/ops/clifford_gate_test.py,sha256=u1PlNWC24sCrxDq5IzKw4EUMJ2-0VCjjksJMF01Nhcw,40779
282
+ cirq/ops/common_channels.py,sha256=BD8-qJDGITOSP0bJVcWGgjbI5dj2dwFkSzzWb-qgfcc,37026
283
283
  cirq/ops/common_channels_test.py,sha256=Qzw7nDrWgO1GDB7qkN2YUZi3NDswvvBJ9TEnSNakJX4,30755
284
284
  cirq/ops/common_gate_families.py,sha256=4Si257eQ_snyEbxpr6rzOkMdT-CjgQq304XgDTrkfNo,8647
285
285
  cirq/ops/common_gate_families_test.py,sha256=uePsNHQJG7zr28P5KYBBiRQHtl5nYl3tYPVjl5jH4mM,5312
286
- cirq/ops/common_gates.py,sha256=ITW2Vvpw8VzypGn99yawjf1u8tW1arg51kRzvaNHWUE,58256
286
+ cirq/ops/common_gates.py,sha256=swHOtGrUEfwwQEJhSortO_5-PiaZr0f9dTkMYk0YMno,57892
287
287
  cirq/ops/common_gates_test.py,sha256=0q09MBVhYuLpfi1xejTrmzgyP4QaeCS-oW_aHOLKje8,46909
288
- cirq/ops/control_values.py,sha256=J674mKNnncydB2n_F2ZhqIs1EZQBFPDprdHilRKfUsk,13397
288
+ cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
289
289
  cirq/ops/control_values_test.py,sha256=JYaFLJSIqZSaQ94y0kyWRRVzcQ9mgc6-s1ws2q4EiAg,12943
290
- cirq/ops/controlled_gate.py,sha256=w6llkldlz_ap8rvtXCF7NIPFkMKbJJQgJXe2tFY8LBg,15208
291
- cirq/ops/controlled_gate_test.py,sha256=KINUJ2GXXFe7lfhLFEl01ec3LpcslSsZfA0hGRFqbHw,25564
292
- cirq/ops/controlled_operation.py,sha256=Xzp8Yove9Ix0u4jkXHWxfQGXoqEzfNb6LtWvi92dGoY,14126
293
- cirq/ops/controlled_operation_test.py,sha256=jzdM719Gjl4JKLnwbpj2PxbScJQmAT_EkESp3Y5kQww,16577
294
- cirq/ops/dense_pauli_string.py,sha256=-cnQs2z9qf45KRqWC_ppqsCfJFdtpjbaw5kQio8-XMc,24435
295
- cirq/ops/dense_pauli_string_test.py,sha256=NsI_-UlpCue3jxjHrgrjstSJsWoUdMDhCFn6Vzp2K_k,21541
296
- cirq/ops/diagonal_gate.py,sha256=dUoaiQe86crB1STyzlL5k9W6R_3JRlOrOTvxUm-Dymc,8999
297
- cirq/ops/diagonal_gate_test.py,sha256=3ZJVH3BWiP_v7mkrbbaNcqq4T_h6mpbm_xtFva9LcbU,6260
298
- cirq/ops/eigen_gate.py,sha256=ZQWJqUR-aX_5plVnQpjPrpdSIu3I8PE-gE1Rn2BL07s,17519
299
- cirq/ops/eigen_gate_test.py,sha256=da1K4Mm2ArFGroSNR-7D65oyrixWbt7w2VCqksYFspk,16175
300
- cirq/ops/fourier_transform.py,sha256=My5E49ox7sXTEXYP6QXSWIgsloOtX3rnAu1f1eFSHx0,7497
290
+ cirq/ops/controlled_gate.py,sha256=SconRAuvWq4DM_hZtmEhvyIUz3Nv5hOw1qgXDQXNOvY,15036
291
+ cirq/ops/controlled_gate_test.py,sha256=bBYBMiylGkD3885JmX0ytoSrAxpqVHSRJUfL5p2TewU,25532
292
+ cirq/ops/controlled_operation.py,sha256=l0pjUfru39HBuAbBkRCqJmrJDxah0JOFxXXILcUt0v8,13978
293
+ cirq/ops/controlled_operation_test.py,sha256=RTGRBGbobrUUB6Z_lFp6M2m7XN-b5A294rySWXVqXzc,16558
294
+ cirq/ops/dense_pauli_string.py,sha256=1TijNu1D2HIbbnwLbT_f546R2L4OCQtm1bKjqhno1Kg,24234
295
+ cirq/ops/dense_pauli_string_test.py,sha256=JLfTLO13Qnr9c5jZOPBTJWD4409vm7uV6vi8R7m1kOg,21517
296
+ cirq/ops/diagonal_gate.py,sha256=HNMxcgKgfZ2ZcXGaPhcBp6yOwu_stpSN3_GtNeWnR5s,8909
297
+ cirq/ops/diagonal_gate_test.py,sha256=b3j6mE5zkkKs3Qsv0YKXVS8b4qPnEC_CDR4aZY8nfLc,6235
298
+ cirq/ops/eigen_gate.py,sha256=DMDlLJLSSxYD22CTvvx8hQNQyGSzF4bBysDKMjg1DbE,17407
299
+ cirq/ops/eigen_gate_test.py,sha256=6Rj4UTBO8y91-2U_MaWteC8iSypCRYaGCPVsawSLgbY,16143
300
+ cirq/ops/fourier_transform.py,sha256=CE8iw_Nn64ZaQ_wMJNHChAIHF1ufbeo7r3lNq6VY2BA,7472
301
301
  cirq/ops/fourier_transform_test.py,sha256=F4n0zcV0cH7enbLyx6bd35cu0fJ_WDm9Z1FILO0cNE0,6262
302
- cirq/ops/fsim_gate.py,sha256=pZiUI7GrLKSUtQs-U2sA0efPFfyILLS8BWddSfhZQCc,20073
302
+ cirq/ops/fsim_gate.py,sha256=xsk5xfEaUTcGeGV852KTuoE7mxlCHEXg2HZlyiszkd0,20035
303
303
  cirq/ops/fsim_gate_test.py,sha256=EBeiEhS5C99Zn60V1PbxZQdI8262KgCwFkHQBruK9Sk,25915
304
304
  cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
305
305
  cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
306
- cirq/ops/gate_operation.py,sha256=e_xSAeAA9pnSXvPOBoc0MLJbJl3bzQSHcWSCHq2Bvss,13685
306
+ cirq/ops/gate_operation.py,sha256=MF8JIYEM6bQu6ft9Eb19hSOillzu8MmaIoXSlmwbm5U,13447
307
307
  cirq/ops/gate_operation_test.py,sha256=s7c50LCIMEaMWxFqmLcTpLzz1vJYFdDBQi_2uGky_hg,17554
308
- cirq/ops/gateset.py,sha256=GqBz0R7sMUJaW9Pe7UCdhuM4lLE8RzrRkb8F97ePWnA,21660
309
- cirq/ops/gateset_test.py,sha256=pPz3JD0d0aM0AMuzNrC8F5Fa38K5V2hXXVwrWJ4sV3w,16593
310
- cirq/ops/global_phase_op.py,sha256=hgXUGUEDQTJwdvRrkSZbVQsrjbrfdT6OxTER1jl440Q,4889
308
+ cirq/ops/gateset.py,sha256=9HFW5Sg_jPpao8SEd7XgLdc_6xgUwZfvb6f7pfVPIF8,21492
309
+ cirq/ops/gateset_test.py,sha256=_dpKTEwXuOY-jpev9rBPEcMy4KZ7zd6GmJ5JkvZAeog,16580
310
+ cirq/ops/global_phase_op.py,sha256=Q5GrvuNgpSafUrcYUqEibt8hFoh3ZNeYJ9cp_nJ5PR4,4804
311
311
  cirq/ops/global_phase_op_test.py,sha256=BBdKpfBWO_o8WalSZPGTIiH6z_XDqz-2CgMcl_lQkC4,9869
312
- cirq/ops/greedy_qubit_manager.py,sha256=8csh_mmSgIQ5qzWw5xHpZ3mR7Io7vpTeG0n6qazA6jo,4061
312
+ cirq/ops/greedy_qubit_manager.py,sha256=UTd9cTRbl4GQmf6ai6zqVBn5TR3-Vg84jJu4AN-0cxc,4050
313
313
  cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
314
- cirq/ops/identity.py,sha256=VaIVbO-4rIAxgiud9TQZDtI0EwTG1qyxD_Rg-pBsq6g,5910
314
+ cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
315
315
  cirq/ops/identity_test.py,sha256=8_uQpXvHgHHLO_gfOI4pTVwnZnqrUfinaJz5ULPXMFI,7976
316
- cirq/ops/kraus_channel.py,sha256=mA8iCmdZIavIc7vcGqSeJ5mYm48nIOTTQu789nfMjGY,5113
316
+ cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
317
317
  cirq/ops/kraus_channel_test.py,sha256=8B0Ql1_93GldwknFCtu54k36a_WGQJIpSKJ65vXxS8I,4857
318
- cirq/ops/linear_combinations.py,sha256=XGxOrZG8oSNEwAHcCGiNT907bV87V3YpSvRR-XrWVrg,39841
318
+ cirq/ops/linear_combinations.py,sha256=vL5dUCeU4QUOcCrwSt4jYxU_7RW4GbV2d3Vsa3rGNWo,39613
319
319
  cirq/ops/linear_combinations_test.py,sha256=0KwC4PE1bV7Z6kbXj6KluXV0jxoWXBXKvw_ajF4QOuI,67253
320
- cirq/ops/matrix_gates.py,sha256=bVN8u5wPEvalZfM6Y6MICEqQs4gZUnENcktc3r56NHs,10347
320
+ cirq/ops/matrix_gates.py,sha256=w-yDz2ZmIDiSTLO6Qhp6NrJJFJOJIjrt3okK7rRcZ68,10309
321
321
  cirq/ops/matrix_gates_test.py,sha256=5ZVdkTODOXKv5fi3xDqJA0gc9cYBMTd-KuKHyK-dxHI,14261
322
- cirq/ops/measure_util.py,sha256=WOOir3lrj-Icebx-XvZFe0vd74XbQuoCxVb-05qVeDg,7418
322
+ cirq/ops/measure_util.py,sha256=wtq09zJ3If9eYwxCG6hvy8hCdQWu1DIzKKcsKsmAfVo,7338
323
323
  cirq/ops/measure_util_test.py,sha256=WrbR2jr_bFXxpQe8n3ANLAKYo1hcf-SlgsFOi-ULRXU,5343
324
- cirq/ops/measurement_gate.py,sha256=0088IVwTUItpY_1I2iskeARSDlyqRV_Kh7QTIACOj-I,11987
324
+ cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
325
325
  cirq/ops/measurement_gate_test.py,sha256=SPVD8DTc0Kmkazp7jmUIVHfELihkK_SFu3aXSw-uHbc,18335
326
- cirq/ops/mixed_unitary_channel.py,sha256=GdpKExjLIBrhqpyb21YM0AiNQgxA5TqUgkjam7SVDak,5287
326
+ cirq/ops/mixed_unitary_channel.py,sha256=guje2Jbj2uWG8NSlwazK1r-XjxlTHA6s7ti52tWS-Nk,5246
327
327
  cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
328
- cirq/ops/named_qubit.py,sha256=2vAtNvZNhsjyigRDp2PMp2LCdF2jYAGmC8Zo6_IUVuw,10032
328
+ cirq/ops/named_qubit.py,sha256=e2GdyDfeyKNgmXiiQh8yW59t4qDIvAEzXjb_NfyhgHs,9997
329
329
  cirq/ops/named_qubit_test.py,sha256=MHjKXSxHCVV3rUYtsQ0_FZVV6Sh--r3zdGc0rmmdaBs,5257
330
- cirq/ops/op_tree.py,sha256=Voltj5mC0yaN_peWkOsn5RTAfKTkHu4pT_9MGGDdiXc,5308
330
+ cirq/ops/op_tree.py,sha256=UCuBJZtIpDYhTtnNTcuPZaXcsXTIxvOE-8OGp4uEzsI,5283
331
331
  cirq/ops/op_tree_test.py,sha256=1WAIeVkmmEU3wRaEnM9DdGBU0_CVbYMwgunIO2LrBc4,5737
332
- cirq/ops/parallel_gate.py,sha256=S_Kp9S2gdAa_8RqGSDusjPG00DEikK5tbtL3WCTH6_o,6296
332
+ cirq/ops/parallel_gate.py,sha256=B6uwL0lPJLiv_TL62U4HGyv7FZn_CvljSUK7jKTuu-M,6257
333
333
  cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
334
- cirq/ops/parity_gates.py,sha256=cm3KTku0wBrawbyHCzOuQOpYVbeahaZfIrDkxNBeB4s,14355
334
+ cirq/ops/parity_gates.py,sha256=hcF2jtrX-ay46UyiXpH9DT-5ihWhGkhN6fH5454FmKA,14289
335
335
  cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
336
- cirq/ops/pauli_gates.py,sha256=Wfpa-_7tMGNnHcLxUdC9Zqsp2dzxW1piPgj34UAq1Is,6820
336
+ cirq/ops/pauli_gates.py,sha256=06NzsMKEjBPFUOK6uAKBF5M9vfLOS1owaF7RV_R2Cek,6769
337
337
  cirq/ops/pauli_gates_test.py,sha256=fJiB-rqVTu7t9Vxu3QdnvEMJYDgmz5I9xyoFdIhNIco,7949
338
- cirq/ops/pauli_interaction_gate.py,sha256=hGYmC1i8UCDDJ6e3ML6M8GeW-byq_dLoNv5UvB4ECao,5558
338
+ cirq/ops/pauli_interaction_gate.py,sha256=1drxD57PLCmp7dI9p5oDX2HPzsqwh0rrqHltUjtbWZU,5539
339
339
  cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
340
- cirq/ops/pauli_measurement_gate.py,sha256=R64b1zbnwecKTkZHXzOcro21OubDu-wibRk5ppwFfLk,7217
340
+ cirq/ops/pauli_measurement_gate.py,sha256=OzbQeMzr9cHQsai8K-usg3Il74o8gdXZLksLuYr8RcU,7113
341
341
  cirq/ops/pauli_measurement_gate_test.py,sha256=BVTUl5EwLrKwYZmEWmVHYu15tH0L9EkF8SYrm0eL0HI,6814
342
- cirq/ops/pauli_string.py,sha256=OUqhn_gdf3RkYM3G1amiPaHMU89kOUBCSA3AFaWjGnI,66771
343
- cirq/ops/pauli_string_phasor.py,sha256=19JPUoC3SIm3YUWwLw0gtJpISKShVFDGwtgiCnb8aK0,18280
342
+ cirq/ops/pauli_string.py,sha256=rD7lIXDwKrHY-LFDId2vvZp4ZPLrMnvB-y4tNs5uEoA,66509
343
+ cirq/ops/pauli_string_phasor.py,sha256=JLKZem7rdshQ0doNvFMJmP7cLhl9lCsHAI1QlOmbmrg,18207
344
344
  cirq/ops/pauli_string_phasor_test.py,sha256=-1mB1WLEFlrKnSfcgR1LabTaeLYf2bvcJQdWxEImGH4,27767
345
- cirq/ops/pauli_string_raw_types.py,sha256=200Epv_YmR33YVEL8wT198S04GAruyG7I0xVtVk8oqk,2269
345
+ cirq/ops/pauli_string_raw_types.py,sha256=lXW-Fv2TTv77g_7VMdQun33y4reD4p7dS7g9Nm1Id20,2256
346
346
  cirq/ops/pauli_string_raw_types_test.py,sha256=jjFEbQxGsazsR8p4y-EK7SaTryRWagR9Hi7YuixXi6A,2684
347
347
  cirq/ops/pauli_string_test.py,sha256=jbdGTpRP5MY1Q797JCEKuWcqgTeoNjL9b-YMbZ6LERY,72867
348
- cirq/ops/pauli_sum_exponential.py,sha256=o-OsJ6SfsYNnMdSTpAaL1uauTKh9SLL3oLLoh7y4IV0,4868
348
+ cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
349
349
  cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
350
- cirq/ops/permutation_gate.py,sha256=uLd0qZgT4eDKO22Me9HGSDD7Hnf1Ol3ddkwJ7ZghL3U,4224
350
+ cirq/ops/permutation_gate.py,sha256=CiAWDXloj3kszU-aEarBaCXcK73_6vJkcnnHWPKjVY8,4211
351
351
  cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
352
- cirq/ops/phased_iswap_gate.py,sha256=kXC0V_fIFq-MO6jlA5arse60kqfDb3nqDC_YYfcZ19g,8996
352
+ cirq/ops/phased_iswap_gate.py,sha256=AQIPHurGVx4ccinrT8UZc9bZT9yX53Q4PlBk4uaqrGw,8939
353
353
  cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
354
- cirq/ops/phased_x_gate.py,sha256=OHm4Bv3gF2GcGZfCU71Kj2PXqdjpVk5Ufo9yk_oylVk,9322
354
+ cirq/ops/phased_x_gate.py,sha256=ffIRnS_84saQYuwD4wsbEL2i11RXJ7XmxxRteWOwd68,9247
355
355
  cirq/ops/phased_x_gate_test.py,sha256=DTWG4gmeNaIX4GLLdSQN8OfZFEDqm192szY_amc_E6w,10857
356
- cirq/ops/phased_x_z_gate.py,sha256=72_lDbJXEbKYQ1Q6brCc2jEiNcH1B5t8hnN2v_RqjRY,11524
356
+ cirq/ops/phased_x_z_gate.py,sha256=88P8w-XdrV-y5n0q3_wci_BmMCZ5BOW4c8eDPjVyrQg,11446
357
357
  cirq/ops/phased_x_z_gate_test.py,sha256=pp6e5PeYgg2J0EdQ6L704E5qFdBomJsPcZdnCFB70_c,10727
358
- cirq/ops/projector.py,sha256=c7Q1pB7KEjiVQV-vD8Yu6jOcpUAG49khge9Bu3MJF7w,5672
358
+ cirq/ops/projector.py,sha256=TBhb0-0aJP329Yf7enPtwCMurpsV0s2wNbv4WpPJXR0,5647
359
359
  cirq/ops/projector_test.py,sha256=i18K2aaj5kOnnBcShB92-66TVYdhZCubPxCXoZ9fAQk,9100
360
360
  cirq/ops/qid_util.py,sha256=B2Ilqp4LCDN-Um3lx2GfWq3IelZYicMvFx7hgIQmmhc,2095
361
361
  cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
362
- cirq/ops/qubit_manager.py,sha256=bMKvI-z018xf0YKfy87XhAseYKKGXNsFAyPR-AMhAC0,3562
362
+ cirq/ops/qubit_manager.py,sha256=5CFtTkkWE5aW4yyFnr2M70_Fw6jNUI-ltTXMVcL9oUc,3549
363
363
  cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
364
- cirq/ops/qubit_order.py,sha256=CvYVgoZH_IhAI_mOkLCIXLArrLp4tG61yV90b-KncU8,5518
364
+ cirq/ops/qubit_order.py,sha256=fN5mPlt0uaSa8T0NyJGOgmBXZKHH2r9mzhUkrNnukZs,5511
365
365
  cirq/ops/qubit_order_or_list.py,sha256=vP5MwFI5pbn8WH6eFzwe_sE3EPixRRWGDj0jlbECNRM,1201
366
366
  cirq/ops/qubit_order_test.py,sha256=e8gBGSCHyKu9nJHPwEPVO060uDpJCpO0ok5n6toR0PU,4274
367
- cirq/ops/random_gate_channel.py,sha256=HqE7wWehH6cNPEcsqNIFj99lL7iNzK-YAyXXJrzQxkk,5141
367
+ cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
368
368
  cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
369
- cirq/ops/raw_types.py,sha256=fTbvBoTMKhHzQ4mi9x8HL3ZnW-j2u7XciScXiHI0RS8,43942
369
+ cirq/ops/raw_types.py,sha256=1gi75D_J6MNQRNy47vjyC9ZnwNwTttJqYHatOO4xS4g,43579
370
370
  cirq/ops/raw_types_test.py,sha256=YyyR1UDyW4Vail8Zsvz-nCLlqRsnjCnuzQEBn2oEZyM,34751
371
- cirq/ops/state_preparation_channel.py,sha256=ypePZSkI2WiXR4Z0K4PbqZe5pA8YzB0lScFZEHccixA,4794
371
+ cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
372
372
  cirq/ops/state_preparation_channel_test.py,sha256=Seis5RvdCCSgMlED9JYKZIfAElJdtoUHSPgoYTiMEnU,6023
373
- cirq/ops/swap_gates.py,sha256=dCamFTMhCwi7DDqKsviUpCV-WqsU_tE3Jh4r8R-Oq_k,11784
373
+ cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
374
374
  cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
375
- cirq/ops/tags.py,sha256=sMT7VFRKf3QDZAtF1K9WCT0XMBRNdlegM4VGxl3FK5A,2332
375
+ cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
376
376
  cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
377
- cirq/ops/three_qubit_gates.py,sha256=TiK4M9Aed3ILT1-017eJie4T2Ir08RD3_36cbV4sRmc,28440
377
+ cirq/ops/three_qubit_gates.py,sha256=IsuV22fi_KAn6Oo-IIfDLEKXsSA37EUsuRXn74bbFJ8,28211
378
378
  cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
379
- cirq/ops/two_qubit_diagonal_gate.py,sha256=cDAQwtynA0i746aBbg3F3uLTxyr0C90mXKQBURjlpM0,5403
379
+ cirq/ops/two_qubit_diagonal_gate.py,sha256=m2wnFpi0sHA9cxMa2cqwRYGQIlbyTGohMTLdVVQZ2-U,5377
380
380
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
381
- cirq/ops/uniform_superposition_gate.py,sha256=WCBHosmq67T23fB3GhNp45l8KdeVgVp4lB4I1kVKh90,4757
381
+ cirq/ops/uniform_superposition_gate.py,sha256=LiB_Aft5mQY5aVhe4S8DR4ugMREwXEFTVO1MCU1s0zU,4751
382
382
  cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
383
- cirq/ops/wait_gate.py,sha256=UICm3Yoooffh5B9LsQQiWqBtt0K2i7VfLWZACqQ_EGI,5598
383
+ cirq/ops/wait_gate.py,sha256=h3VjVS3UZKtieFpDwjoz09J6jv3dnAuMHk02qCAc22s,5569
384
384
  cirq/ops/wait_gate_test.py,sha256=cBYqPQc339lfwXgdUSl0OD0ZlfsqaPvyrmnArD7ERs8,3580
385
385
  cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
386
386
  cirq/protocols/act_on_protocol.py,sha256=yf8QZwBUG6E2vdkHHZho7-6n2_qtBQJZ9onw6XMAO8w,6912
387
- cirq/protocols/act_on_protocol_test.py,sha256=wJOZGPjXp89fkxodiPGS_ydlyCwkBq-qSB9459dZyoM,3222
388
- cirq/protocols/apply_channel_protocol.py,sha256=-wHBXoX5nCWfeHlVINur4myoGvs6c-XsSejs7utXXNU,15706
387
+ cirq/protocols/act_on_protocol_test.py,sha256=X7GNM9mGPCpWukW9_7kF88g12RdqsWhcniIw5LW1tC4,3215
388
+ cirq/protocols/apply_channel_protocol.py,sha256=lrR9s4i73gLzLf0DMntu8ySZADlB8ms-JrK29rCxo6w,15623
389
389
  cirq/protocols/apply_channel_protocol_test.py,sha256=THW95ZzW1y8UtBIuzVJ872wEOZqIcFdPbXocBUzAiWw,10618
390
- cirq/protocols/apply_mixture_protocol.py,sha256=hLYklTjpIr562MpSRn_1U24dDIdPI8MP1ivsth-W14Y,16505
391
- cirq/protocols/apply_mixture_protocol_test.py,sha256=OYFaw7ITbdYvXzNWD32-LzJNDrl-p4k50NT9w7dSyTY,11166
392
- cirq/protocols/apply_unitary_protocol.py,sha256=RKVO-1hrjkrCP9OCmtcVSvEM1Vs-EKCcBLgV-JMfp8k,29810
390
+ cirq/protocols/apply_mixture_protocol.py,sha256=gczZ_0vdgiyjXBDPVQxH2bsG8jk1NtKHQ3XRdrfcQUY,16448
391
+ cirq/protocols/apply_mixture_protocol_test.py,sha256=_ftefdRBYj73OC_m3179VX8U1-xDesAOHu94tx3d-gU,11142
392
+ cirq/protocols/apply_unitary_protocol.py,sha256=bvqGe_Yt_pnJiVRlj9Kq0_sf557BrA1iUgr8fEJeB9g,29714
393
393
  cirq/protocols/apply_unitary_protocol_test.py,sha256=po1z7a-r4kbfLg7_7XKgFMrsFIzQCFgceCwn-lyBEOA,26172
394
394
  cirq/protocols/approximate_equality_protocol.py,sha256=DZ4eNCSwl_MI1LIo6tosFFqw0Gl9snM51C2vR5X1mdA,6293
395
395
  cirq/protocols/approximate_equality_protocol_test.py,sha256=qVw2TzKRTZC7fDg6DK_fVEvJzJGmlzBi6JidlJrR_Fc,9212
396
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=xb2Eea2pj7Ey8fSXH9IgfiZZHxYraj9L2Lpr_S4Iins,16029
396
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=k51JomkuqoW530Gzj3zNXzP1Sc6aEVKMH4KdZJ3Ln8E,15901
397
397
  cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=sjXD0_EDNhKpDUBC1f-0vu8S4jyFz0Qtb2xRAEozXZg,10774
398
398
  cirq/protocols/commutes_protocol.py,sha256=Vy5r_dhUBKO83sdThi5WfHB0qJIJqiSRsohHx1KloOo,7431
399
399
  cirq/protocols/commutes_protocol_test.py,sha256=9YhBFYAwc-XpU7HrQp-GarKwmwmbgyadUYqlkiG10A8,5885
400
400
  cirq/protocols/control_key_protocol.py,sha256=uVn5r4IUKFBVgHbuAz5teeASOnOex4yzeufVsNqWFCc,2644
401
401
  cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
402
- cirq/protocols/decompose_protocol.py,sha256=eI09q0rJ5XQ3dicvVBqwat9NogX-BEa45xmmvoNPQUQ,18940
402
+ cirq/protocols/decompose_protocol.py,sha256=lWKT03Aij0TdcvQTkYAGFUfOLytupi3JABz4X9jxkSo,18806
403
403
  cirq/protocols/decompose_protocol_test.py,sha256=UAayIif0i6zwT3gJnzg5UhsUERz6zead5r1B78WrYSM,16175
404
404
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=y-GPOImHgdjVqXF-qE3SUmlekF6-zI0tgi0E2nTdW1M,4106
405
405
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
@@ -408,15 +408,15 @@ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=T6-vtMO-eBXIMRur1nl
408
408
  cirq/protocols/has_unitary_protocol.py,sha256=yc7IQWd2XxjV6hYMtwTd1R9Gp4F2W907Y-tBVYPFn7E,5408
409
409
  cirq/protocols/has_unitary_protocol_test.py,sha256=X78xt3SP-Tx5pflit5X-ZiC5zf9EmuUdwXXApuGNASM,5861
410
410
  cirq/protocols/hash_from_pickle_test.py,sha256=ghLwtXySQgya5flt4rSNiuK4nqRfiFlZh7d9o7nmeXc,4642
411
- cirq/protocols/inverse_protocol.py,sha256=0HZVO8WGOHy0CFaTtDEwq0tSVXWPFoKJ72tA1TIapQU,4119
411
+ cirq/protocols/inverse_protocol.py,sha256=CVsCzaePc_p1WgRENxyxsptGZbh_rk22OnNxNyvKndQ,4075
412
412
  cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
413
- cirq/protocols/json_serialization.py,sha256=irqTgt1rs5JUF1nBxI8jGioiBl_36VQaBSua6RuWHyA,24816
414
- cirq/protocols/json_serialization_test.py,sha256=VVwmNLWf4mxQcjGHL-JqrHwuFi_EH2FeNYgYooBNbXU,28180
415
- cirq/protocols/kraus_protocol.py,sha256=4yiQaPE5gdADJa-OKg6tde_0nYNoXGCFYCIGxj1RBPo,9336
416
- cirq/protocols/kraus_protocol_test.py,sha256=Z_E_2evjAzHw1WE974jj6CDCBF7ZmBcZ81PlpSgMK8U,5508
417
- cirq/protocols/measurement_key_protocol.py,sha256=IDlCVbXe6gk5wfcoUisAoJuhlJnFXhYPcr6Of4xdaH4,13427
413
+ cirq/protocols/json_serialization.py,sha256=--4o7404FM34Q8aXxtmM5tmVgdT24E55UBiqno2OB8Y,24628
414
+ cirq/protocols/json_serialization_test.py,sha256=xDRylmud660G3A-mSv8FLZvRiG59mBsY6qK-j3gwvP4,28109
415
+ cirq/protocols/kraus_protocol.py,sha256=ssojYrkve1dtnodTqqCzBje1fsTec5utxIQMsxtZ1Ow,9310
416
+ cirq/protocols/kraus_protocol_test.py,sha256=51eJ3r3Kx10rG-1hPjcfcODeUO3PFQmwU9ATMnhTWDw,5495
417
+ cirq/protocols/measurement_key_protocol.py,sha256=JU7XbZfR7o6Wcv5qRJisp3ZAWwW9Fx7OHtxNMrWtZoQ,13351
418
418
  cirq/protocols/measurement_key_protocol_test.py,sha256=s6X7rP0NA3RBUhz_Z6f1YiGGtpajbC4PYiq-LZ8_uQw,8813
419
- cirq/protocols/mixture_protocol.py,sha256=vRQkmPqcmWNQSk3KLt3gKCpLJ8cPxnqGsN6lYUCQ_rU,6484
419
+ cirq/protocols/mixture_protocol.py,sha256=K34KJ0HUaecaml3E6JfpYrJXJTu9i0vXcXzhP0n_v5s,6464
420
420
  cirq/protocols/mixture_protocol_test.py,sha256=OtIRulKt6mTwLxLWzfGh6FTwc4CA5CiYoKSAW6bX1Is,3854
421
421
  cirq/protocols/mul_protocol.py,sha256=iND491TUKnTedjSvZA3mAT8v_EqgWf3xxOh4otQ5WSY,2806
422
422
  cirq/protocols/mul_protocol_test.py,sha256=J2jvKPr4Doy9Fx7RNCXbjvTkyBu1fcsxfRH-I6OzE34,2172
@@ -426,9 +426,9 @@ cirq/protocols/phase_protocol.py,sha256=e_xsYDgs4K5poWcTBipziiz3Asuc7tGiVSBgD__M
426
426
  cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
427
427
  cirq/protocols/pow_protocol.py,sha256=ovwPBT-BEu1QrNm7S9Gm3n5TRUmyklOjJgwohVX5F2c,3300
428
428
  cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
429
- cirq/protocols/qasm.py,sha256=uZ3qeCK3HI7k0Aw8WzBmunIhVPj7qCpRvCLt1W6TMcg,7436
429
+ cirq/protocols/qasm.py,sha256=3hE-z8TzXH1-EV7lV9_Ti8sGR6Qpu_93bSwbP0i8II4,7356
430
430
  cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
431
- cirq/protocols/qid_shape_protocol.py,sha256=9tSspd1JomBnkUJcYKS0lPi-gV8TZkj5D8EHhn1tvj0,7726
431
+ cirq/protocols/qid_shape_protocol.py,sha256=YrJpUDviSCbgH7n0yYYxaV6hh5nKTqWjAXJ2HenLzmA,7682
432
432
  cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
433
433
  cirq/protocols/resolve_parameters.py,sha256=KAMkSoctbyl_S775T567_mL0Fb46upElSEzk5u_JA3E,7428
434
434
  cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
@@ -906,90 +906,90 @@ cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPC
906
906
  cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
907
907
  cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
908
908
  cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
909
- cirq/qis/clifford_tableau.py,sha256=jz5CS1lmwh1Adkq5lZ6qUmABGiebcyYUTTFqGf26H_A,26248
909
+ cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
910
910
  cirq/qis/clifford_tableau_test.py,sha256=-DxgKr37dmpQqw8bbA3veXCTZ_-f6G_aVFUpvKZcRwY,18476
911
911
  cirq/qis/entropy.py,sha256=HlaTUSmefysjqMjcAuKa4PtCpg0p0QyhaQxq8DGn0PA,4255
912
912
  cirq/qis/entropy_test.py,sha256=PlgipJeqnHzG7rmL3g5llIHa9vA2b_X0ukyL38b3_Y4,1709
913
- cirq/qis/measures.py,sha256=ymbCgIzKZ9o4nUOt6UYrbQe6lUUUgyKFe80fpcIXExg,12277
913
+ cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
914
914
  cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
915
915
  cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
916
916
  cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
917
- cirq/qis/quantum_state_representation.py,sha256=n9YiXnTnCp0SAP3RYosNl1XXA4kLvF1mcnZ-13ef_h8,3245
918
- cirq/qis/states.py,sha256=Qi7ItwAl4Q_9ZDVS0KXAxEyvgUj-yAsvZg3pG0TIlKc,41910
917
+ cirq/qis/quantum_state_representation.py,sha256=AqzdC6GFxLim7erINbsXF7hIkgm0P0MzxwWFXj5WeLo,3232
918
+ cirq/qis/states.py,sha256=FkUp-pOj_a1rd6U9t3xaq7PK8KPNKsq54AWmkpLulDY,41775
919
919
  cirq/qis/states_test.py,sha256=vTvZE0Y-WL7gD7g5gy0HendmrHfbh-qPZ6KsDJH7aAg,31849
920
920
  cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
921
- cirq/sim/classical_simulator.py,sha256=1Cm9tOZW4U1Jaj78slxX3pgiiHTE4kdBijwOWCq2O-s,9342
921
+ cirq/sim/classical_simulator.py,sha256=dBI1bgbMKPBYTTnBEU3pfI1UkXn4XZFeHFP21z7TLWM,9295
922
922
  cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b-myCmbI,12739
923
- cirq/sim/density_matrix_simulation_state.py,sha256=5-p09Xq70pl2SthSFgtijfl2dN75rgZ1tpxlBlBQkV4,14040
923
+ cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
924
924
  cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
925
- cirq/sim/density_matrix_simulator.py,sha256=cN-yd0I2PzCSy0ZyoG0seMxnxU92v9KGUBwtZXNfvEQ,17542
925
+ cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
926
926
  cirq/sim/density_matrix_simulator_test.py,sha256=gCUpVMudVpmzzS4lPVygXrQsqr7AIw7hhx9dilaZQCo,61385
927
- cirq/sim/density_matrix_utils.py,sha256=g4TOPDO5DM0DE5LO_h7mx9prZLfJNcvkbnVs5D9PM4g,10305
927
+ cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
928
928
  cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
929
- cirq/sim/mux.py,sha256=dUbfoLP41PuYVeJiy5xifmuuImCUs4SskymYjJ_RjC8,12497
929
+ cirq/sim/mux.py,sha256=w7sdSWFtmAEmHHn5nMH4H1qBCCp5oltlteH5vs3C_ik,12451
930
930
  cirq/sim/mux_test.py,sha256=VKwMk5r4iX3tNY-Af-pZwhUVF9qxq8yT03YxhV2DmME,13717
931
- cirq/sim/simulation_product_state.py,sha256=oUJ9xjiwrjRNmldjBGts5bxn2g1tojj_rM1cS_1uvl4,7054
932
- cirq/sim/simulation_product_state_test.py,sha256=yYCNQ17126Sia5Zz0ISHIC2rA4g6VQJcr8YVrDvlWm4,9112
933
- cirq/sim/simulation_state.py,sha256=z-4s4WWO9L2zRZHpBsDvqaBsIZyOgT4uEp3bookXVSw,12653
934
- cirq/sim/simulation_state_base.py,sha256=ik9bZoWQWxUER0pTDrGlyItVgxObdjMeubZPWjIwsCY,4199
931
+ cirq/sim/simulation_product_state.py,sha256=py-gVRPis1EfyavdCW5gLhiULocrqUOTe7ZI7OD-nws,7014
932
+ cirq/sim/simulation_product_state_test.py,sha256=ZZeCC9a_VIehiMzyo9QQPL4PD2G2h8XVZk80IZzD5Ok,9093
933
+ cirq/sim/simulation_state.py,sha256=EWHXsDjcx01K1haIRmMp9GwEw2WXjwLnBXHFCga_m5I,12551
934
+ cirq/sim/simulation_state_base.py,sha256=pK1CtIvP9dWCSmGHoutz-hFwmcrFg779MyDcfUJPkzs,4070
935
935
  cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5JJ4SY,7560
936
- cirq/sim/simulation_utils.py,sha256=9--cBDL3_VltZj_vLVTCpnx0ec40LHY44ql0cQ3HFTI,2684
936
+ cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
937
937
  cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
938
- cirq/sim/simulator.py,sha256=Cc_jkQp4IQQjB1jjqtC1I3Penr3SrYrL8dfjyCGg0K4,41899
939
- cirq/sim/simulator_base.py,sha256=KPTuU1SgQqynZ5IPDY50hlgh--jPn5Wl_5WJiYtJhVU,18153
940
- cirq/sim/simulator_base_test.py,sha256=U8HqxdUwKOpzVde74Zwdmazz_SJEiDV2bQVV-maoST4,14970
941
- cirq/sim/simulator_test.py,sha256=8AYIC9aiwlm176nKnzw1SoZjVouMczoAUV5c1e7xNpU,18629
942
- cirq/sim/sparse_simulator.py,sha256=omR3BS37J6RIDXXa6xcweRJ836tXOBPdoaEDVAS2oKs,12966
938
+ cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
939
+ cirq/sim/simulator_base.py,sha256=F3qx41bjiixBnz-ML37frDXMLtw_SB8sTFCs6DBp708,18056
940
+ cirq/sim/simulator_base_test.py,sha256=agR_nrIS7hqY_Z_GRw_kXfYLW76LjJ6N2nW4SpM_lf4,14951
941
+ cirq/sim/simulator_test.py,sha256=oFs-QGRQ5gfDDlJnVDPdHpV9BEz8qPWy69QEAVQ4L6Q,18604
942
+ cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
943
943
  cirq/sim/sparse_simulator_test.py,sha256=iN2DQB6M8m-QXyrdmXAnD-i8YKNaQtvh7TpdcTyRQHg,53843
944
- cirq/sim/state_vector.py,sha256=WyipINIrn17YrE9g09HG5yhTbIDJsZZhLkz6eBluePE,13453
945
- cirq/sim/state_vector_simulation_state.py,sha256=X0nNcr7YxN_NbvKDgYF2wtnRqtumts_nz3cYcA8lifw,17584
944
+ cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
945
+ cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
946
946
  cirq/sim/state_vector_simulation_state_test.py,sha256=8KqVNxyCOS1ji_ZHUFsXlSkeJuPNFOIcQomIfoETczU,9993
947
- cirq/sim/state_vector_simulator.py,sha256=6y9MGiBlhH_zykkEtu1UcnpFHjpVCAFV5m60u8g7svw,8218
947
+ cirq/sim/state_vector_simulator.py,sha256=vQlFlnnczQn5dmSBACzouZnCgxJhIM3O38KfGiv-Caw,8206
948
948
  cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFPw9cBMRs3WM,7900
949
949
  cirq/sim/state_vector_test.py,sha256=y1A7bcA8TUeu_DpmgBsUcCn43bEvNxwYe8YWJCrCrXc,16623
950
950
  cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
951
- cirq/sim/clifford/clifford_simulator.py,sha256=zstXmvObhCelDKACqKNb-A-WTNTAMRgbF1om8MFMpyM,9859
951
+ cirq/sim/clifford/clifford_simulator.py,sha256=zld4rZYuq8_m7C_m9n6WPhtxLrGKVMHT3vQI942a85Y,9828
952
952
  cirq/sim/clifford/clifford_simulator_test.py,sha256=szpXWjuwgAN6O4DJ13MeF-Df3C2yZxqqjr32ve5eUpU,21418
953
953
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=lU74CqlK7wPhKCCOMr2azmkR93rJH2ZUjraJkDhij74,2192
954
- cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=3HiZn8ekEC7EhF4AjNheSf-123QUHRgcakljlJw0Gho,3244
954
+ cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
955
955
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=YRIdTZUpLmB-6AtncDrtHl8OTI-5mplQJiKXF7ZJ1Ao,3062
956
956
  cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=KNWsT5MbwULzARrtLtAYzJpwv09Ld8uy0cu1DU4pMx0,3958
957
- cirq/sim/clifford/stabilizer_sampler.py,sha256=DQ2kpMwo9xZnAZbHgHbYS3-s4IyRpXTt__qVqq-lepU,2566
957
+ cirq/sim/clifford/stabilizer_sampler.py,sha256=JE30zh0SOlE1MswbFtZE_Rfc831qkB3pgCCyF8O8phA,2554
958
958
  cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
959
959
  cirq/sim/clifford/stabilizer_simulation_state.py,sha256=5R4zcCiXC15HBrYQKqNvo7-sOl2syX6wuePdd3nYwOY,6736
960
960
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
961
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=PlQVIvcg0myibqZZ0ziLWJXA0_y4ci7UcRAuoF4Dr7g,14167
961
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=EWSVRig2ZxpVamCXL8TTTcBIJaHCxeUmWohPhzrsztE,14155
962
962
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=UuvgpwexGB5LzMfaa3Gws2vHhC9pyHrqW_gDtx_pAYM,3201
963
963
  cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
964
- cirq/study/flatten_expressions.py,sha256=j-aqhvHbAW764M7VVKB_AI_nLeqSWFs6HNCIic_9XCg,15607
964
+ cirq/study/flatten_expressions.py,sha256=q9U-AukDri63yC4pF_dEKCX81RfquK4z31ktLkL0gz0,15528
965
965
  cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f90-2uNj1c,6202
966
- cirq/study/resolver.py,sha256=EUi1Z86O_bozgJZIXWmxgILeHawuiJ0IQRQ3jhhN4ss,11801
966
+ cirq/study/resolver.py,sha256=eJW9cIj4AncLCPOhv7X5MAAM1DnpcCybQPHzn6hYJL4,11746
967
967
  cirq/study/resolver_test.py,sha256=LY1h8RCPY4d_8O5hprRcIf3HFhzODQrMbUrmwmt1fbM,10727
968
- cirq/study/result.py,sha256=U4bsSZ0D78p4DJOkcpiJk-Ow0U4pi90Z-sPXSv6x0bI,19314
968
+ cirq/study/result.py,sha256=ci9Pg9IW4OMR4aZ4SaQ7TPVTgoSU-1WarjKEXBv2F2g,19214
969
969
  cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
970
- cirq/study/sweepable.py,sha256=HYG-8mDxUdeGLaQmBWGdcqg11xBMmQ5xlAtHv94PO_E,4388
970
+ cirq/study/sweepable.py,sha256=9wNR4L8RkylFE2o6ienFNTnAugDZAIdZRxHWKeDBpDI,4354
971
971
  cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
972
- cirq/study/sweeps.py,sha256=FB5qqkf6M_AAc0jw-PdvOMuq_gt5h5iF3m4ZtZDMILU,21759
972
+ cirq/study/sweeps.py,sha256=wy8nTxbBE3EibbmvGIFtfOe8xDq0PefFPYLYd4cD45Y,21647
973
973
  cirq/study/sweeps_test.py,sha256=o__dMwDQZl4R0KpK6MwqKHowWBEqopOhAfLk6BYB1V4,16336
974
974
  cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
975
- cirq/testing/circuit_compare.py,sha256=cuq3WeLNotM4Gj1dJ_v4qjI2-cUZQk8frGBlilyHkk0,19211
975
+ cirq/testing/circuit_compare.py,sha256=Fu1I4NtRFUUxI1_48wYoDWx9pkiy8s1uv4YBk9nEZOY,19173
976
976
  cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
977
977
  cirq/testing/consistent_act_on.py,sha256=ooD1Dgt3BQ5CrylPFCf9lQ3yQDLk2ZCTdOTK6eS7Mt0,7773
978
978
  cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
979
979
  cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
980
980
  cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
981
981
  cirq/testing/consistent_controlled_gate_op.py,sha256=r3xPx17jnotk5kUlYOWSBDdux2SlJsQCeNCZ5Xcdl40,2712
982
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=E8YLn_gsNSyKf5R_S2-Guky0oui6Th8QQnRxa4pJgfs,3331
982
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=-Uzm7T3HFKSE8jPfTPi9ElJaXCHqaOpbfjFvD1un5rE,3221
983
983
  cirq/testing/consistent_decomposition.py,sha256=AawvIbU38fbRfopmB25beOqnygW319G4VK0l9jp7rfw,3740
984
984
  cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
985
985
  cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
986
986
  cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
987
987
  cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
988
988
  cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
989
- cirq/testing/consistent_protocols.py,sha256=VbkSZsfM1x9k8ezJJpbBy1vnjzviPuXiXirkd_rHTIc,7790
990
- cirq/testing/consistent_protocols_test.py,sha256=kkWL45c7lZQrFH9npUFNjBfVCAUnuBDFXZtXTUfhXsI,10035
991
- cirq/testing/consistent_qasm.py,sha256=SyAUAxQFQk7Yb2QEunGoqaId8NIHeN0tWgN9f-Jdsl0,5077
992
- cirq/testing/consistent_qasm_test.py,sha256=FIKTxVzOLywyprH-FCZHCvF9RTyA5l6fUtk-FbLDns8,2927
989
+ cirq/testing/consistent_protocols.py,sha256=64dkyGcZ5nPia8zdT6YtOe81cnzSMKLbD7XNzvD6kpQ,7744
990
+ cirq/testing/consistent_protocols_test.py,sha256=sHgsHpFozxWJ0uNbFiXMqt2n1b4-dE0pPTNn-VOHH64,9979
991
+ cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
992
+ cirq/testing/consistent_qasm_test.py,sha256=Z1bfMsgoXwe27RDhruKqBV4eGqTHUOwkP17TshMPMNo,2902
993
993
  cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
994
994
  cirq/testing/consistent_specified_has_unitary.py,sha256=R8xFCPoIUZn-4KoUGPHASGfwQ5iqqeLO5qQgT1HB1Xs,1168
995
995
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
@@ -997,23 +997,23 @@ cirq/testing/consistent_unitary.py,sha256=-5Jrz7OYZGuvoo3KSDi5RwoVcU9WUZPmW07pve
997
997
  cirq/testing/consistent_unitary_test.py,sha256=yK8fFh2bcmZunUF2lrsTWY5pt9sk6pFKInvMg0MrKZ0,3312
998
998
  cirq/testing/deprecation.py,sha256=FMgdC8sXKXYZl6abKM_6FymzSulhtAewmWnjVWlGF3g,2189
999
999
  cirq/testing/deprecation_test.py,sha256=LC---8mwEnEu4mi_95aJmv-z5lEB1wSFVqX_KVueOT0,2219
1000
- cirq/testing/devices.py,sha256=HfMV2cb9iXRYH3IEiIL07wqAx2dTbFbTxNYA4Vtx0K4,3297
1000
+ cirq/testing/devices.py,sha256=K1LKZi1_8WUvz7b_7_4_R75kRC08ATBXRxMzhQ3Kz9g,3289
1001
1001
  cirq/testing/devices_test.py,sha256=MeakoMeIRgcKkTTKqp2khfCaybRaCsZuaCHhTLgNy6U,2922
1002
- cirq/testing/equals_tester.py,sha256=fHxuQBOL9rcDdsi3HwiSSZjMwnAUIGDU-sAghbsbq3E,6623
1002
+ cirq/testing/equals_tester.py,sha256=XmCj8zPoS5DKGKDMVTTEC_uIikiYCth0l0o6QPd4oBU,6597
1003
1003
  cirq/testing/equals_tester_test.py,sha256=337JBdQcxsj_-qx8rrub0vycC8knx6JpVcFvFbWt2es,10595
1004
- cirq/testing/equivalent_basis_map.py,sha256=Tm5kTa5z-ZZyD2xtmNr5otUb9LZlWLA4QRO5dOfxi98,2669
1004
+ cirq/testing/equivalent_basis_map.py,sha256=n6NNq70tIzpeqRHUOF08wgJUKOZDxK_YqrZGhFugwdY,2650
1005
1005
  cirq/testing/equivalent_basis_map_test.py,sha256=qAgxkKLuHFsRooAWdSdTMI61fsVYKSDhVl1IsdHeGXE,1540
1006
- cirq/testing/equivalent_repr_eval.py,sha256=hnmaNhucjLKkJOSnuT9M-fPP6KwcOHaGEQ2mlyJQBHc,3414
1006
+ cirq/testing/equivalent_repr_eval.py,sha256=l8LW6hIhFEU6-A3fHJyvHu7wZ1jBIQXBd0RbtTl4vRQ,3392
1007
1007
  cirq/testing/equivalent_repr_eval_test.py,sha256=6k2EhVYx2vxdJT2JEH0Kv390p3G0dJ0TEp1tdpFS_v4,3024
1008
1008
  cirq/testing/gate_features.py,sha256=7hFdlkFCDDiQ6gJaEQ6ICAQgMOu-bgGvFUz-7rVCRx0,1403
1009
1009
  cirq/testing/gate_features_test.py,sha256=4cMncHo6SvyMvSFY1m9eQOwwKMUuADlWaavgbOMC8ZM,2390
1010
- cirq/testing/json.py,sha256=GnLWMczhzr70crlUNicJp2Y8NDFwMuWcPYbVgnQptgI,6713
1010
+ cirq/testing/json.py,sha256=Lzpfv_vn8NqYUhmB373Ay9NY9qkfd_piJMsLI4uSRSM,6683
1011
1011
  cirq/testing/json_test.py,sha256=wKpzoEHPariqLdZaIxgb87Tx1gAIbIXoXWUyR8TykGw,1152
1012
1012
  cirq/testing/lin_alg_utils.py,sha256=YyUY0ECaG_P4BlsLYGgTsqA1z08h5WIXPD6vQSGdh3E,6374
1013
1013
  cirq/testing/lin_alg_utils_test.py,sha256=HiCNYby5ZXVcXJLb8CNatExtuAacrphgUERsqKswF6U,4245
1014
- cirq/testing/logs.py,sha256=3tY9iK56ZDUra_DLEWVZyMDLwR02Gbc3RV6uZQDIJFc,4091
1014
+ cirq/testing/logs.py,sha256=1FGmyw6-7qXI5HcHv4H-1ef9tNf9e21OqWSA3cPq1kI,4072
1015
1015
  cirq/testing/logs_test.py,sha256=spuIb0EOJxW-UNEuBds20ouIE1ROdqL9TbyTlqn1p6o,5811
1016
- cirq/testing/no_identifier_qubit.py,sha256=NcX6FSjgTR32KEWT56K9JtHKKYxguizt0c5fnaY5o2g,1232
1016
+ cirq/testing/no_identifier_qubit.py,sha256=jeevOm60Jm8jkdxTJaR9vFwYEBFamCQKL_F1UuQizg8,1225
1017
1017
  cirq/testing/no_identifier_qubit_test.py,sha256=K4fCbM_o9Hw1d7KggAttWKr2T_Ty9T7JXnjaQMpfgSg,1001
1018
1018
  cirq/testing/op_tree.py,sha256=Qpb8TX2TUY1SNPxAwd4NkO29Zdf4EIydy-N1TdQnK4U,990
1019
1019
  cirq/testing/op_tree_test.py,sha256=CzE_y9B8m8nV0nb34f51-hESgZLoEXlZ3JDjPWvkMjw,1118
@@ -1021,8 +1021,8 @@ cirq/testing/order_tester.py,sha256=m59iRdipLkpCKycTuflXQtAKWzS88t9110CajIqjKys,
1021
1021
  cirq/testing/order_tester_test.py,sha256=1KevbjlXrW1e1vrU2Lj4---jlUn9n80uHtJgRM1G_lU,5195
1022
1022
  cirq/testing/pytest_utils.py,sha256=dNVr8k246110-BIdM6VHvTp4_NhnGebTLlbErXslkzo,1956
1023
1023
  cirq/testing/pytest_utils_test.py,sha256=NThV-uSoa9ob3YY_oUBD6j8dxlR52dOUAuiegvmaiYM,1366
1024
- cirq/testing/random_circuit.py,sha256=YyN4kia6jPhxl64FoX8wTlDyOoLh9p9hzLNXuuhWGcA,6178
1025
- cirq/testing/random_circuit_test.py,sha256=IncENdqlLlrnzfrC8h0dmgN0l1zTjudvAlgDJJHRUTk,7111
1024
+ cirq/testing/random_circuit.py,sha256=slo1oK32x8tL344DVfAnXNL-7MDOD7fhYqBcS_ufl8k,6134
1025
+ cirq/testing/random_circuit_test.py,sha256=8H48CmWjXqhHvQs2bP7IzDonnIVUcY0m12RLpG9xejs,7079
1026
1026
  cirq/testing/repr_pretty_tester.py,sha256=vM-EC9K4BdQUL8dA4XdJaY7xQxCQ1Z5FZJR_jmuceZY,2934
1027
1027
  cirq/testing/repr_pretty_tester_test.py,sha256=mqEH4H6kL6sFd0r6M99LsMBLc6nS_m8dGFZQl1zei5w,2286
1028
1028
  cirq/testing/routing_devices.py,sha256=7D1fxGFPdabjMH4MRix-S0nwS8fxRC-dxNT6Xb6Csq8,2565
@@ -1057,75 +1057,75 @@ cirq/transformers/drop_empty_moments.py,sha256=j7zAoEsPs9JQ_zYpQX2yEvfiViDiYejna
1057
1057
  cirq/transformers/drop_empty_moments_test.py,sha256=h6Pji0z0o9KOB7fnSHseWpIAhzvxWurF_flg9XWm_YI,1959
1058
1058
  cirq/transformers/drop_negligible_operations.py,sha256=s_3t-TvtPc4uvgse83_LB4SeUi6_P4VDe5e6-eYLgOw,2110
1059
1059
  cirq/transformers/drop_negligible_operations_test.py,sha256=32mS4QQ8tiH3wBAAgbUU8LgwWDmvreRVEDZML_kgxyo,3859
1060
- cirq/transformers/dynamical_decoupling.py,sha256=vV6XFhGthTgkqtIbY3pEROarWS4AAfaaIdyjOaTLeDY,14728
1061
- cirq/transformers/dynamical_decoupling_test.py,sha256=ba1X8r9dA2iaBxNsOyiN5fj12op1-Lpxe-KpsLA2MC0,44714
1062
- cirq/transformers/eject_phased_paulis.py,sha256=71Wvu2UYuO2j1-tAmy8H0UnjP3KdhKMco-cK3WsB9Fg,14784
1060
+ cirq/transformers/dynamical_decoupling.py,sha256=zSe49ohNn0mD0yMk3RnjxDSGVjpk_wndjYt2Rt2bd7c,14677
1061
+ cirq/transformers/dynamical_decoupling_test.py,sha256=8PSxm5ydc4eugBjqedsQBiRSKOL-61c5fI5S-xxZJm4,44682
1062
+ cirq/transformers/eject_phased_paulis.py,sha256=ZeVEh614OihWZtHyaBBtgpWj_dUxQGXDzf4NmBlzbeM,14725
1063
1063
  cirq/transformers/eject_phased_paulis_test.py,sha256=AOMmOq3fWFGm2_qDyocjtF9fK7GAhC0kF550mkjtPx4,15791
1064
- cirq/transformers/eject_z.py,sha256=VHmxE0TVKnbN_w9AanP6OY9Gf_rC8K6icS3CITnrmXM,5846
1064
+ cirq/transformers/eject_z.py,sha256=3u0Q0WGGAxmZuPnyiU4q04gJMnY--0nvhF4eotnSl9k,5803
1065
1065
  cirq/transformers/eject_z_test.py,sha256=dAAIPPl_lXGURFuncoSD4S_a1c-ZYgMptAzqHjV_a-o,13262
1066
1066
  cirq/transformers/expand_composite.py,sha256=qJ9sqRCdDac1mrJNa1ILg8DWy3vahV147D-76i8NjXQ,2415
1067
1067
  cirq/transformers/expand_composite_test.py,sha256=bc18zBuo_7yAzkfIv8scfl_6s-NaGXOX8Rrw34oiJE0,8676
1068
- cirq/transformers/insertion_sort.py,sha256=M_XMSAT4J_oZEYC5CGMtDBKyz931TvEO00MH9AkLTP4,2638
1068
+ cirq/transformers/insertion_sort.py,sha256=LtuLQmoA1uWyraPqQ7_QZdkf_vAk75V5HIHvnk4GIZo,2613
1069
1069
  cirq/transformers/insertion_sort_test.py,sha256=E4unAfvPrTE73zI7OnZ8vWq5BUXYpPYjUw2zuq1a_vw,1231
1070
- cirq/transformers/measurement_transformers.py,sha256=DIZjcCVGAMFaZdpzxTlPxUDeIEAMcalJ_Sk41FLkQ3E,19547
1070
+ cirq/transformers/measurement_transformers.py,sha256=crAYKGK90drr_3GEh5t8-Z87eSE8v6uH9Xcn0OfjpOs,19496
1071
1071
  cirq/transformers/measurement_transformers_test.py,sha256=mJKYFqqMwZnD8KXVM1tmF2kcIZXkkZKlfOU9XbGxYpQ,29019
1072
1072
  cirq/transformers/merge_k_qubit_gates.py,sha256=qWsC1I_xYtFcHFO3L9LP0Y4actmN9vYYJJeLK_MPwWA,4402
1073
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=BaUf5ZJ2aKHRK2ZxImYxdpieO-U7LD5QlBJSMcuH0ME,14016
1073
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=EPWv1APGp4WVPsyq2voXTbAlTX1z7UGZ1B-dZokFQKk,13991
1074
1074
  cirq/transformers/merge_single_qubit_gates.py,sha256=eDB5SvYKR3zQy5KEspiVYAxrG0XFh83SLfd1hWqL02I,5828
1075
- cirq/transformers/merge_single_qubit_gates_test.py,sha256=BsfzAFJSiPUilnpofVgcXrazqLtLUlhqT8-tbdWQnkk,9983
1075
+ cirq/transformers/merge_single_qubit_gates_test.py,sha256=cJzOXxf4eDf0K-1CODIHKtyY0i8ik_zyagySJDgSH_Q,9958
1076
1076
  cirq/transformers/noise_adding.py,sha256=ZBS-015Kc-BnoO-lMXfEGpCXbPu4whVgTXIB-E16ApQ,4476
1077
1077
  cirq/transformers/noise_adding_test.py,sha256=nHOoKUPBBOkWF6A_JhIO6-G0AuFkLKBCxH7e2BOem9M,2171
1078
1078
  cirq/transformers/optimize_for_target_gateset.py,sha256=wDZ0qkxv3ql-z6Dhg6fiP5aVL9t46v_1X4Zwa0STdkU,7241
1079
1079
  cirq/transformers/optimize_for_target_gateset_test.py,sha256=h4tfyHzKNncbB40WCznUSIpnesr2qHdUlOG8rGOk91Q,19597
1080
- cirq/transformers/qubit_management_transformers.py,sha256=T9tyjeu1FPeXuwGMQAZi1_ubHyaDzFnOz0Ji_Ol7Zzk,9464
1080
+ cirq/transformers/qubit_management_transformers.py,sha256=jHgtn-Z8LRx5iiiQxd-mZVg4HkXq9spO_Tm_AvRyaHk,9433
1081
1081
  cirq/transformers/qubit_management_transformers_test.py,sha256=QjrEx3jC1AG4YGD2VdHW59SRW1icQ-pJc3zAMkJqAvE,14051
1082
1082
  cirq/transformers/randomized_measurements.py,sha256=J4c9ZwYRDJ2_X_QzXWds4Qe0t9ZL4Xt2XQed27Z3QuA,5709
1083
1083
  cirq/transformers/randomized_measurements_test.py,sha256=ZfD8QW9Iy7NfidA1Iez9DUuT9HuzyEzFpHF1JNffE-I,2817
1084
- cirq/transformers/stratify.py,sha256=jfZEQuKv1YT8RdtcbGNsUNp4cs0WzZoiet-e5zwfLTc,10483
1084
+ cirq/transformers/stratify.py,sha256=-Kl9y508gRi84Jwh-ZvLAerdpqPBmhAdknxXfVhcUK0,10452
1085
1085
  cirq/transformers/stratify_test.py,sha256=X4h2KMc82N3G6d_qLIP0HTsrDWerWgEXTH_WBPN8nd0,15257
1086
1086
  cirq/transformers/symbolize.py,sha256=1YE-SMa6iR_YTGiKll0iZXp5uuBTOpSVF_UQts6DwVA,3977
1087
1087
  cirq/transformers/symbolize_test.py,sha256=bMQhtvt301uKyQH3tAM_wwVjBmPSZAqGpQH3p-DK5NE,2207
1088
- cirq/transformers/synchronize_terminal_measurements.py,sha256=uh3u53xLjQLyZvh6KY-oOk_i6j8VveMeOi_zGdi748I,3856
1088
+ cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdrqo5xJcqEWgwPHUfY0VaHk6lxI,3825
1089
1089
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
1090
1090
  cirq/transformers/tag_transformers.py,sha256=WQSjTBRfwuhzYfqe-bbyUA-nEYHAFcNg8jiEn-Uru2U,3526
1091
1091
  cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zKDCZ_Gwtnykkt4,3439
1092
- cirq/transformers/transformer_api.py,sha256=zH4suvb0iLPIJ_znCIpJGag4GSiycdPOk2nbbS14C1w,16961
1092
+ cirq/transformers/transformer_api.py,sha256=A9ZxTre3dGVhv9x0wxRG0xqCDRNG5nB3nzBce68hZZ8,16851
1093
1093
  cirq/transformers/transformer_api_test.py,sha256=OkBG_yUH-uLt_qAoNRgox86dnsoYWFRWilS0Fs_SCc0,13322
1094
- cirq/transformers/transformer_primitives.py,sha256=q88fl6KGdJvx5mZqnorZv4oR92JK1k6Jm2JZBbjx4Ms,36642
1095
- cirq/transformers/transformer_primitives_test.py,sha256=oKGhuIv9Gr3cs5JX9V9JotbeN21GiYk65JDgrHNldoI,41798
1094
+ cirq/transformers/transformer_primitives.py,sha256=sNEWuWpCwtKVphdzQdgOKg9aLUGkNO7389Pc9OY4lOg,36522
1095
+ cirq/transformers/transformer_primitives_test.py,sha256=qcd4Tywr4BhEpMcT12vZtTJjIq0R3PJm2Knit1hNk8k,41779
1096
1096
  cirq/transformers/analytical_decompositions/__init__.py,sha256=hMsoQSQtSvEn5mNohSvGPjsmf58VN4jzmIFnchVhZi8,3760
1097
- cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=ZGniJDdKrIU_PD5yLw4S-ukQ2Tko9inggc5Vp2nu3iU,6749
1097
+ cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sH7nesFWgYOWEl0UCUAmx6zsFQG0ibeQZpq7Imx38MY,6743
1098
1098
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=Svuj7abPvWyEK1W4_6M17hah-xp4Y0E_VICvGyvHeig,7138
1099
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=VVVgP1jsHW0CMVsChvowgchWM4qs7B_R7fYPRdjA814,8714
1099
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=mZ5ojjxpSkQRhlRmTg0waBXAkCj7hWeEEYQRkCxjzEs,8701
1100
1100
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=E_6BPxf8mTt5C7kCVvFLvgtfsFoDSwjAAH_-KVbxhYo,5086
1101
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=Xw6kQlnx_Qrduwy_BzFLkd37WQsGK6Nnl-Om364R9Ec,9135
1102
- cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=cp6eIRdLBEmkq27HQQYah2a_5gEUyz-_u0AQHc7d0VA,5604
1103
- cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=KyE9AkS6hBQUFUxlY5Y8QbQMbHK5TpCK8QC5MozlUUw,4560
1101
+ cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=jFWTFjCQ76cDbtyWaYk3RGPFv2oZLnwSVyanUXClu7A,9115
1102
+ cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=6ZDfSTL7aWSXXfM5DToeX8VxMalWirrCGKKg7QKBGFc,5591
1103
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=7GKdVnN5jvpjABudB0zE1kUn0BPZmuvRZcM2yLMUoWs,4540
1104
1104
  cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=yWHkXXErOxLmnp5t65WUsY9e9iN6L950MZRw5OY3QW0,2172
1105
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=JSSee-3wz1_nDdnP3vtK5IWdHnVYasutlN3LRdlSqCM,11804
1105
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=JF2q79HEK5ZScMlqvnq17j7jAq0RFKpLPkKPnWiwN0c,11798
1106
1106
  cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=7oGMrh-ZBVaHmjZjfLI4N_P8aJhxKasu59R8-Uy2G-E,7721
1107
- cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=0DFXdrpyL1U71cN0gtsvRF4_lGtSrzxjd6aGZsEJKZo,8472
1107
+ cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=6kaQfcXY7je42o-pVprSwgPXCDJXraDXQ9mHyR_BaBk,8428
1108
1108
  cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=oh96QXddCm1v8CrYA5mEnnx_ENXwZi89W6paVZU273I,12344
1109
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=HqKWwF5wCLzxinI5DP8npDfOLkP9FXhYcqwKzH8f0J8,2470
1109
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=CRZylmI8nA_aq6vXj0WmMce8PIe8OFCjq4_bqYfkenk,2464
1110
1110
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=0nHp7b_Uz-00eod1U6c8Lcx78zNes3hABWnPR_NuMo4,2554
1111
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=PTLKtBXc5qLJwSP9SU645GNlYxpSDlu-u6zYOxezMYg,9778
1111
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=kajmUyhahfPpI_tToO0zPwhmnKOsNBITEGXRZ2g90lY,9733
1112
1112
  cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=skyV4CwDVSHX619cuhE6uqZ_QLTlpejp2Rtnk4CdGzo,7939
1113
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=4eYGF_Ew-Ejg74MJBbezEviqaO0gY8on665zfp9kmUI,6173
1113
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=2bIpZOHBHxH2mdbJfDpo6nQgpitOI0ZmoH_5l_nA1nU,6167
1114
1114
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=c-vFBZnybd-Ez4rcs13THGGthzEZ0qw9Iw9sAKbE6yc,4494
1115
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=t2w_8TfAaH_238iYLbsDyuB27l9urNjxLYWQtv4bhNE,9331
1115
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=XwDkm7l8DnRoKcQVgm2X64mmUS16iVDsMFV-35KYHfo,9305
1116
1116
  cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=5sSL80lYWquh7fcE6nbYVekEpxLNrHhj0T6G93IOZ7w,10033
1117
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=Sh-gLk3Mtbc2BEAuYOO4W-SGIKcp8A8OdEbKtPNgpj8,9702
1117
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=8tYGV41gQBRzJSNUB3bsTMI8vil0TNE4TgqWlEw8BhE,9656
1118
1118
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=bX8ap8VskN-gKxn3F4A8_vhgWO0AErOpP1QVVEtBjmY,7073
1119
- cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=pxi3CtblXqm6B-do-sdCXvokrD9K1RPfZBOjLuYV62E,3777
1119
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=dP9umZJBgNJ8FbDFFZVgMSyO-NjWJqXmoWyQuTo--0g,3751
1120
1120
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=Cj_GZvJykt5NfNuB8vEY30DE2tU3nJtnUztAArgnfE4,4204
1121
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=WP-CojkNy_c7gIlc4q595o2OtMu9pdpmERtXthU2cRU,25374
1121
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=s08m1PJODNUNzNNkn_zu2qasRSWmXJAq8Tb9cHKk-yU,25348
1122
1122
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WfPQA_wTpRknovNenxC1LPAt9cVHqwdRhUhPZ8sLNr0,20655
1123
1123
  cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
1124
1124
  cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=EoM_TKZt8mJwYFQAfv3rviitXWvGT8I5N36droPWPCE,5576
1125
1125
  cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=dPV2vqsyC-eUi_jmwEk6dhOKHnQLJ_A01_Emxw2j8QQ,1427
1126
1126
  cirq/transformers/gauge_compiling/cz_gauge.py,sha256=dtcC49-qIvH_hRaQpQLBvGu-3323r4cwWpFImBnDebE,2586
1127
1127
  cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=MQURH_tIIPxHu7CRWWEdDksHYr9GzGZH7RqnjZdc994,889
1128
- cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=Vj2bA1szNJMARaWFhTX6n1HaQgLzaveKulfzlDiHb-g,18890
1128
+ cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bXqAEVBXHplnxRMwNA0GrbpHsVLoY-zV0zpeP3VNjJY,18834
1129
1129
  cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=JFG7aCe-PxPGZDPCAx82ILu6PX_laFvCDlaabwvL0Kc,5272
1130
1130
  cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=NUbcz-tGS58QPohpsmMx0RbB4d79GMSoyVxdL3CPiZc,5060
1131
1131
  cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=xJ_h0IXdRh2HEltYxGgYHohVlV7-BaBxCg3YYpGHYGg,1897
@@ -1133,67 +1133,67 @@ cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=CfW3hgO6AgUB7D6tC8J2XZQw
1133
1133
  cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=t2mQM_79b9WXZqIAo6msrKZuhG4L1HrWxDbt-k9uQVA,902
1134
1134
  cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=yhrF4pa1u0-iwYay47_2bZ4xfU323TOdlyazl0U9v4c,1122
1135
1135
  cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJO8BoP4uA0SqSLXS6bqn3T69SwcBHCQHBwWAkI8YTk,1328
1136
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=959fVyA6k-gOT_861AMuIQukM4X47cW-rbld6TIdsS4,2571
1136
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=XG9MGdgAwzaGIVDjocwENtdV6uWAG8idynlwNGhv0ec,2558
1137
1137
  cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=WXZjPf3SAxZHwWbORnsNPeBu1jHeqBqRkrTPCZiNnAY,1033
1138
1138
  cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=kOFHb5GydzeMNwSvDLFuEjc71jHC1HBWxaWinPlrArs,3163
1139
1139
  cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=2KJ14je7QNISHQE8GAK0Oy0HisDFiGEYHxCGc0LhRRg,918
1140
1140
  cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
1141
1141
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=lhjfQ0vYxnfk7eJ5GwQyA8afmykd9kAbr4leMWfFDsA,10823
1142
1142
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=WJ2P6QfwY2l6RYUfMeWbn096MHDiTYXQAV6-0ThR0AQ,1571
1143
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=of4XOCAIf5v19muWfOvrBTifJHP3VHz_qbIqjJ2WZJs,20102
1143
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=od4YwSC0dVIMPPdNY3kv9dW5uKbaQ3QpKjD_8aP-am0,20089
1144
1144
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=bvgDe-3KhwTLSokL7X93IZgneGNLrgzSgNulMhsoARs,3922
1145
1145
  cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
1146
- cirq/transformers/routing/initial_mapper.py,sha256=as_5djJZVJK0MpIiovmSHcLoTu61EljYZvHs_woXuYE,3056
1146
+ cirq/transformers/routing/initial_mapper.py,sha256=N3_n8zhPP0TFQkPr46j-1zZw1R9RcMCUZF0-NfZWOfo,3050
1147
1147
  cirq/transformers/routing/initial_mapper_test.py,sha256=N3RrubB1suUbD8SuYoZtMASAQPyb5a4NJqJmhJZpV04,1344
1148
- cirq/transformers/routing/line_initial_mapper.py,sha256=yuLoHa1SSMkIv4hzTz_txu3H-38n-6N8gKCDu_0pna4,9462
1148
+ cirq/transformers/routing/line_initial_mapper.py,sha256=Z38g6BUBMGyRRH0l9nh3m8XtcgYqxarbRGWMhAOiB8I,9431
1149
1149
  cirq/transformers/routing/line_initial_mapper_test.py,sha256=Qu51LOZjv0KQHcwtEax-4dF78g9g1pl0COpF3xFHE6w,7568
1150
- cirq/transformers/routing/mapping_manager.py,sha256=-N2-L2dAVbxyhQ_u4eq5BUcudv_9YQVW0KJOn9BYC6g,8633
1150
+ cirq/transformers/routing/mapping_manager.py,sha256=w-dSQOs_IpUMU8HPyFQlJ2scER4DnX03llp44504Rq4,8621
1151
1151
  cirq/transformers/routing/mapping_manager_test.py,sha256=dSqouwT77Pa9cj3osKCv478pOrJzB-QP40sozNz-j3k,5957
1152
- cirq/transformers/routing/route_circuit_cqc.py,sha256=rK7X5RKHhniBd4Stose8lj6x_zTAE8UqMJf2z0Mne90,22018
1152
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=2nx56mQUQFRv6xHd97sfb6qePiQ6yI9_y7d_tOAk6pg,21960
1153
1153
  cirq/transformers/routing/route_circuit_cqc_test.py,sha256=Neg9A29Re-I4A4Tu0VNLKkl1_225M7wFHRx-TpLLzco,10140
1154
- cirq/transformers/routing/visualize_routed_circuit.py,sha256=UKsnHh7hIITUYiTb7Xu08MimMRCKiz2avNR8gEtwV18,2933
1154
+ cirq/transformers/routing/visualize_routed_circuit.py,sha256=VgHN3zQ2cfEd69i5i85Tt4_HHpdv1yRyJbQ9I67-00Y,2907
1155
1155
  cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=Cv00tV0C23M-3JxOY-hvFeLPASc6hR-XkYxxzJ3nhwQ,4193
1156
1156
  cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
1157
- cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=xhLl9NBfe5sEeO226KTLlffnKnFjcK9G3ttNh_FlAFU,14286
1158
- cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=2MHmY43YIDhdquoAyd3_xChypjuBz2Y8nQmgG2eBxvY,9612
1159
- cirq/transformers/target_gatesets/cz_gateset.py,sha256=pBjUovj8bZD_NdfIETFFk_byXF6mfQlfvqZAqrKIG_o,5057
1157
+ cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=EwotTSGzomfLBNze9DlddRG56q0SjUSK9_SiF9gs6yw,14246
1158
+ cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=hhswvGSsR5NhRzER96VHjq-P5fuv1VIrDnjAT-c0LBE,9606
1159
+ cirq/transformers/target_gatesets/cz_gateset.py,sha256=J-GlZ1yuVCz3jcSs7h9FGSj26fDqk9mQMLU3f5f4j3k,5033
1160
1160
  cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=2ljDJe3hJzaiHt0EIxjaT4R9ZydarMF9stoQlDELSJg,11451
1161
- cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=Z3fujieKnaMu4MBKzU5QYayN95mtwiBw-fRcy982XF8,6310
1161
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=ToMXP1uCSb1PulzOWEyujXD-HEHdHlviLoDETiTV2K8,6273
1162
1162
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=3_UJonqed7Tlyf1mqbsmvcGOrvnpcFScSgCDo0BG75M,14612
1163
1163
  cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1164
1164
  cirq/value/abc_alt.py,sha256=2XZ8EE7uJSSd0dn5tL-LRuE24id4UyU6VKKKH-J8nCI,6033
1165
1165
  cirq/value/abc_alt_test.py,sha256=-Xloov1AxRcXgFSXbcSoSX6Lpq9ryo3IXQjwW0kVKxg,9049
1166
1166
  cirq/value/angle.py,sha256=mVIIAetHZy5L6eivftD5LpTMUQzmBYIuRlIxhLuhdT8,3388
1167
1167
  cirq/value/angle_test.py,sha256=jKLd1hkY-Tb22krD-WkJjfqFy9EJIIZCAL57__FgW_c,3608
1168
- cirq/value/classical_data.py,sha256=X_l5qH4V75INoTejJm966rF5Em_UpEWGxPR-wvrxeq4,11558
1168
+ cirq/value/classical_data.py,sha256=mPkDGZb4I0a1qSgY-T01NLzkJSgSpKpU_o_EQQEn3mc,11517
1169
1169
  cirq/value/classical_data_test.py,sha256=q1QMT17E-X9kcaPw1oQqx3Hwnq3hyht24HaK3z7Udpo,5332
1170
- cirq/value/condition.py,sha256=D7DZOkTmsRmYyOtCkG7beTpm-6Y676EOP-o5Y3u03Lw,11963
1170
+ cirq/value/condition.py,sha256=sl2ol2vyVIQba3YQVXqVI_IgglFMGcDlw7vrCjo9wFk,11920
1171
1171
  cirq/value/condition_test.py,sha256=oEdim5nOYYY8UPU91H2xhb9MH8EC2WbMXTQ_DruHVO0,12949
1172
- cirq/value/digits.py,sha256=Fkj0UnxqguFVWj3XHK-57CeGI-byPsV4tgXWpSZfRRk,6060
1172
+ cirq/value/digits.py,sha256=mXI6u5l9zV695YbchINpwJVNijx_2h_N87soCWMZ0Dk,6022
1173
1173
  cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,3848
1174
- cirq/value/duration.py,sha256=EM76KDv2mjbM5GtqdU7lYoTdISVcrjhlfFiLZQvP0Dc,10397
1174
+ cirq/value/duration.py,sha256=IeksE1RXxY7Uik0tU-gPldV6PJD0UQnL_iFDiQqTBi0,10383
1175
1175
  cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
1176
- cirq/value/linear_dict.py,sha256=dm6Z1e8jkNpmoB5T4G4TbDtEVt2_OJdQ19lA57fnEH0,12728
1177
- cirq/value/linear_dict_test.py,sha256=gi4Ou7M0fWmnurcCbcEMxmQLL3kI41ADmV6rRAxb2hk,19908
1178
- cirq/value/measurement_key.py,sha256=L0lo6xYNJM6G31W7qXEkk9aRKuhT1PMqmzADhtjWh5w,5215
1176
+ cirq/value/linear_dict.py,sha256=X3nSifOq49ryItORI56sRwcYND5uojAI3ni5zRuP98U,12664
1177
+ cirq/value/linear_dict_test.py,sha256=8lPAKGxdhm6fAknRw5pacjI5EPXggqzEYpghEOp5As4,19936
1178
+ cirq/value/measurement_key.py,sha256=tgKhfa6UUPMP3azlF_yuARqg31T-lAAMhoTK6OtUEeQ,5175
1179
1179
  cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
1180
1180
  cirq/value/periodic_value.py,sha256=QAIEt2Ls9ZTumQg913anBjehBidrrk6ULkQNSk4Qu-s,3936
1181
1181
  cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLlOYUk,4572
1182
1182
  cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
1183
1183
  cirq/value/probability_test.py,sha256=vFpPiofJY-ddsfpDrtgP-AiXFCDtKVXhjkv_4Vl1-Qg,984
1184
- cirq/value/product_state.py,sha256=C72NlKOkHXhlAeh6Zz2uO1JzZD1p-E67RhU2Hws_8aw,9026
1184
+ cirq/value/product_state.py,sha256=yrYlvVoINj4N_fj_9nxugm1qsTxOzIh5j_pJGsyJ8lc,8997
1185
1185
  cirq/value/product_state_test.py,sha256=PqIONpf7Eo2tbk-_BF_Eb_P47ui8nUO0dfz9CN-24Qk,5982
1186
1186
  cirq/value/random_state.py,sha256=Kv3dcVif6ltJSI0RT9kSI1XeofW16jdtmo5T3pD4m9w,2099
1187
1187
  cirq/value/random_state_test.py,sha256=AfzX82WsyyuLYnoakNOTj2PPL1fYRH5ZaH84uO-6Cvg,1394
1188
1188
  cirq/value/timestamp.py,sha256=KhQhHY9cSryyUo9QCA5li8OCvUKWuy64rphhUVQK6eE,3715
1189
1189
  cirq/value/timestamp_test.py,sha256=2MRVNglCMjqxP0sRVxQO2a72Q6UrgyRmTc6RxLploiU,4182
1190
1190
  cirq/value/type_alias.py,sha256=U4K-TioBUUqD5w_jobLaAuh3rP1GJyZF3gC_KHrNet8,1164
1191
- cirq/value/value_equality_attr.py,sha256=U_FPsWrMCuOvU5oCk94zE78EAltwy2gZVNonOqUNwic,10582
1191
+ cirq/value/value_equality_attr.py,sha256=8UfXZ-1y8ocBkysY9_ma3vN06aOz1iBN6pEQptxT6Xk,10550
1192
1192
  cirq/value/value_equality_attr_test.py,sha256=ZWsjAlJd9M_-HONqTXcdjpIaFCilLcelyodZl1fIu2Y,6557
1193
1193
  cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1194
1194
  cirq/vis/density_matrix.py,sha256=LgRYHXpqXeo1NpxgSbKmBLQtzSi4v-bbkz9L9ab2pKc,4855
1195
1195
  cirq/vis/density_matrix_test.py,sha256=yoOQd0XqCECfmM6ycsBEF2hEyM5NTeNNAoVYEhRj8pk,7082
1196
- cirq/vis/heatmap.py,sha256=zQi8LqyZZUFXKKAzFgyFWPoo5MK51D126ODIqRFhtjg,17765
1196
+ cirq/vis/heatmap.py,sha256=2s6_g6wAfYckPR_hI1fIHN3HumUxsOMB8kzm0o4x1fM,17661
1197
1197
  cirq/vis/heatmap_test.py,sha256=5Z6EymBugK_tygqKb_qHy7rBI1LfIG67tzPtGUWSUB4,20587
1198
1198
  cirq/vis/histogram.py,sha256=ghfmI7ySH59oqpGTpyVWWhttWdInXbIKTj63y6WDAw4,5144
1199
1199
  cirq/vis/histogram_test.py,sha256=G2JRYXfVwrw7TVaaejILqOowxRn_2oF456dYNH9pzeA,1956
@@ -1202,26 +1202,26 @@ cirq/vis/state_histogram_test.py,sha256=zHQeSPGVViN5s1QHGsClm0zlIXdt_oyIIDQaAItD
1202
1202
  cirq/vis/vis_utils.py,sha256=MQDCuV-ZfHrtpSRF_-iIRuNvPR9Xv5umRpixPyZ5CvA,1274
1203
1203
  cirq/vis/vis_utils_test.py,sha256=geSavo2Ip585fjanPK3T8AUuvhUwNclLBdl_W_OOycc,984
1204
1204
  cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1205
- cirq/work/collector.py,sha256=UqvhkMJm4fl4M_Xhc0xI2xc7FlVmMRDwKrQ6N6v-Icc,7870
1205
+ cirq/work/collector.py,sha256=-1r5giLOPTFFA2M1yHf9l8yLUiePB_6gRzNaOKhQ_rc,7750
1206
1206
  cirq/work/collector_test.py,sha256=2dAOkKTn0tazxb_gyhKPJghXpj47Bm2SuCCpf_EW7kI,5004
1207
- cirq/work/observable_grouping.py,sha256=1EKMIgC_IaYKR6dRH031sNdo8N1rF14wLijBczv8JO4,3528
1207
+ cirq/work/observable_grouping.py,sha256=fYK48ml5U2B9AXXBFvql3YkIU2xSzBF-Bq5tWMVTYbM,3473
1208
1208
  cirq/work/observable_grouping_test.py,sha256=L9EmGZzOi4R81YzKhgQ0mZUXHRLCT8P-vujvZZQvXoM,5911
1209
- cirq/work/observable_measurement.py,sha256=Y6cl2IJSRoMxdhgbJyMeRoqEJh5aLwDvS61ZD9NkizQ,28364
1210
- cirq/work/observable_measurement_data.py,sha256=kQxXJaZqU2seYrQ6Zt58XgWC7CZKa7Ws20nYcK41v5w,21195
1209
+ cirq/work/observable_measurement.py,sha256=5SC_Dtkb7eZEKS6hA7BY41TX41-racYWyW8C_my_uYA,28211
1210
+ cirq/work/observable_measurement_data.py,sha256=IdxqP9anGxLWDugJMNZUO7stKkcLQKJnCdYuSaBVP1g,21135
1211
1211
  cirq/work/observable_measurement_data_test.py,sha256=EDmmrcQeN-QtWdIxYqjpYyn_443zF_2peVV6DwU49zA,19731
1212
- cirq/work/observable_measurement_test.py,sha256=AdrNBrU_vt9VCHhDbmWZKzogNGv3bete3lxrryL7MAM,21083
1212
+ cirq/work/observable_measurement_test.py,sha256=-NIQyQ9izFw09BfieMM59FBxLvtgwennuJSx9iwNTjw,21071
1213
1213
  cirq/work/observable_readout_calibration.py,sha256=XM8pY3lAJqwQSuCqVDhx4P2XeDzk-QC2nXMVlhlDz5s,1921
1214
1214
  cirq/work/observable_readout_calibration_test.py,sha256=5XpRIP3VQ1EGtbvnOetElWHIDpKv6d086eyHtAxDeh0,1849
1215
- cirq/work/observable_settings.py,sha256=-FTSGTT_Dn-uC619zJMO_F_PJc8Qi3FRmT4TzaKU61Q,6744
1215
+ cirq/work/observable_settings.py,sha256=KWnoOnhu04tn_tTe9XUlcKVu7bfWy5BlVGgYc-UZBz8,6650
1216
1216
  cirq/work/observable_settings_test.py,sha256=TE2rIdeI7UjW9Oe2jAT2SAQ2A90GVZquOUa1ORcvObM,4373
1217
- cirq/work/pauli_sum_collector.py,sha256=5Ld5nOS6qe5a9ZZzx7rOinFC78FovWpbObMcPg61lFY,4250
1217
+ cirq/work/pauli_sum_collector.py,sha256=ZQgXylJUk31XUatimtTDSPVdLw1myX4ggcnENKnQ7ao,4218
1218
1218
  cirq/work/pauli_sum_collector_test.py,sha256=3fb_KS5bZ7AZTCl3y-SyN-jysqnb35o1cHPyQq_Ol_s,2443
1219
- cirq/work/sampler.py,sha256=b7O3B8bc77KQb8ReLx7qeF8owP1Qwb5_I-RwC6-M_C8,19118
1219
+ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
1220
1220
  cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1221
- cirq/work/zeros_sampler.py,sha256=vHCfqkXmUcPkaDuKHlY-UQ71dUHVroEtm_XW51mZpHs,2390
1221
+ cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
1222
1222
  cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1223
- cirq_core-1.6.0.dev20250520054601.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250520054601.dist-info/METADATA,sha256=CqrbilK6AhjtGbXPuHtN9iHg4NZWR5J2jVnmpiBAzKI,4857
1225
- cirq_core-1.6.0.dev20250520054601.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1226
- cirq_core-1.6.0.dev20250520054601.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250520054601.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250520183459.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250520183459.dist-info/METADATA,sha256=1js6vrnUZP2e_XKPIC1Ku70j5Mq-pwGrY2p0F_HqqKk,4857
1225
+ cirq_core-1.6.0.dev20250520183459.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
1226
+ cirq_core-1.6.0.dev20250520183459.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250520183459.dist-info/RECORD,,