cirq-core 1.1.0.dev20221220224914__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (228) hide show
  1. cirq/__init__.py +8 -0
  2. cirq/_compat.py +29 -4
  3. cirq/_compat_test.py +24 -26
  4. cirq/_version.py +32 -1
  5. cirq/_version_test.py +1 -1
  6. cirq/circuits/_block_diagram_drawer_test.py +4 -3
  7. cirq/circuits/circuit.py +109 -63
  8. cirq/circuits/circuit_operation.py +2 -3
  9. cirq/circuits/circuit_operation_test.py +4 -4
  10. cirq/circuits/circuit_test.py +11 -0
  11. cirq/circuits/frozen_circuit.py +13 -1
  12. cirq/circuits/frozen_circuit_test.py +5 -1
  13. cirq/circuits/moment.py +39 -14
  14. cirq/circuits/moment_test.py +7 -0
  15. cirq/circuits/text_diagram_drawer.py +1 -1
  16. cirq/circuits/text_diagram_drawer_test.py +3 -7
  17. cirq/contrib/acquaintance/bipartite.py +1 -1
  18. cirq/contrib/acquaintance/devices.py +2 -2
  19. cirq/contrib/acquaintance/executor.py +5 -2
  20. cirq/contrib/acquaintance/gates.py +3 -2
  21. cirq/contrib/acquaintance/permutation.py +13 -2
  22. cirq/contrib/acquaintance/testing.py +3 -5
  23. cirq/contrib/paulistring/recombine.py +3 -6
  24. cirq/contrib/qasm_import/_parser.py +17 -21
  25. cirq/contrib/qasm_import/_parser_test.py +30 -45
  26. cirq/contrib/qcircuit/qcircuit_test.py +3 -7
  27. cirq/contrib/quantum_volume/quantum_volume.py +3 -3
  28. cirq/contrib/quimb/mps_simulator.py +1 -1
  29. cirq/contrib/quimb/state_vector.py +2 -0
  30. cirq/contrib/quirk/quirk_gate.py +1 -0
  31. cirq/contrib/svg/svg.py +4 -7
  32. cirq/contrib/svg/svg_test.py +29 -1
  33. cirq/devices/grid_qubit.py +26 -28
  34. cirq/devices/grid_qubit_test.py +21 -5
  35. cirq/devices/line_qubit.py +10 -12
  36. cirq/devices/line_qubit_test.py +9 -2
  37. cirq/devices/named_topologies.py +1 -1
  38. cirq/devices/noise_model.py +4 -1
  39. cirq/devices/superconducting_qubits_noise_properties.py +1 -3
  40. cirq/experiments/n_qubit_tomography.py +1 -1
  41. cirq/experiments/qubit_characterizations.py +2 -2
  42. cirq/experiments/single_qubit_readout_calibration.py +1 -1
  43. cirq/experiments/t2_decay_experiment.py +1 -1
  44. cirq/experiments/xeb_simulation_test.py +2 -2
  45. cirq/interop/quirk/cells/testing.py +1 -1
  46. cirq/json_resolver_cache.py +1 -0
  47. cirq/linalg/__init__.py +2 -0
  48. cirq/linalg/decompositions_test.py +4 -4
  49. cirq/linalg/diagonalize_test.py +5 -6
  50. cirq/linalg/transformations.py +72 -9
  51. cirq/linalg/transformations_test.py +23 -7
  52. cirq/ops/__init__.py +4 -0
  53. cirq/ops/arithmetic_operation.py +4 -6
  54. cirq/ops/classically_controlled_operation.py +10 -3
  55. cirq/ops/clifford_gate.py +1 -7
  56. cirq/ops/common_channels.py +21 -15
  57. cirq/ops/common_gate_families.py +2 -3
  58. cirq/ops/common_gates.py +48 -11
  59. cirq/ops/common_gates_test.py +4 -0
  60. cirq/ops/controlled_gate.py +44 -18
  61. cirq/ops/controlled_operation.py +13 -5
  62. cirq/ops/dense_pauli_string.py +14 -19
  63. cirq/ops/diagonal_gate.py +3 -4
  64. cirq/ops/eigen_gate.py +8 -10
  65. cirq/ops/eigen_gate_test.py +6 -0
  66. cirq/ops/gate_operation.py +11 -6
  67. cirq/ops/gate_operation_test.py +11 -2
  68. cirq/ops/gateset.py +2 -1
  69. cirq/ops/gateset_test.py +38 -5
  70. cirq/ops/global_phase_op.py +28 -2
  71. cirq/ops/global_phase_op_test.py +21 -0
  72. cirq/ops/identity.py +1 -1
  73. cirq/ops/kraus_channel_test.py +2 -2
  74. cirq/ops/linear_combinations.py +7 -6
  75. cirq/ops/linear_combinations_test.py +26 -10
  76. cirq/ops/matrix_gates.py +8 -4
  77. cirq/ops/matrix_gates_test.py +25 -3
  78. cirq/ops/measure_util.py +13 -5
  79. cirq/ops/measure_util_test.py +8 -2
  80. cirq/ops/measurement_gate.py +1 -1
  81. cirq/ops/measurement_gate_test.py +9 -4
  82. cirq/ops/mixed_unitary_channel_test.py +4 -4
  83. cirq/ops/named_qubit.py +2 -4
  84. cirq/ops/parity_gates.py +5 -1
  85. cirq/ops/parity_gates_test.py +6 -0
  86. cirq/ops/pauli_gates.py +9 -9
  87. cirq/ops/pauli_string.py +4 -2
  88. cirq/ops/pauli_string_raw_types.py +4 -11
  89. cirq/ops/pauli_string_test.py +13 -13
  90. cirq/ops/pauli_sum_exponential.py +6 -1
  91. cirq/ops/qubit_manager.py +97 -0
  92. cirq/ops/qubit_manager_test.py +66 -0
  93. cirq/ops/raw_types.py +75 -33
  94. cirq/ops/raw_types_test.py +34 -0
  95. cirq/ops/three_qubit_gates.py +16 -10
  96. cirq/ops/three_qubit_gates_test.py +4 -2
  97. cirq/ops/two_qubit_diagonal_gate.py +3 -3
  98. cirq/ops/wait_gate.py +1 -1
  99. cirq/protocols/__init__.py +1 -0
  100. cirq/protocols/act_on_protocol.py +3 -3
  101. cirq/protocols/act_on_protocol_test.py +5 -5
  102. cirq/protocols/apply_channel_protocol.py +9 -8
  103. cirq/protocols/apply_mixture_protocol.py +8 -8
  104. cirq/protocols/apply_mixture_protocol_test.py +1 -1
  105. cirq/protocols/apply_unitary_protocol.py +66 -19
  106. cirq/protocols/apply_unitary_protocol_test.py +50 -0
  107. cirq/protocols/circuit_diagram_info_protocol.py +7 -9
  108. cirq/protocols/decompose_protocol.py +167 -125
  109. cirq/protocols/decompose_protocol_test.py +132 -2
  110. cirq/protocols/has_stabilizer_effect_protocol.py +2 -1
  111. cirq/protocols/inverse_protocol.py +2 -2
  112. cirq/protocols/json_serialization_test.py +3 -3
  113. cirq/protocols/json_test_data/Linspace.json +20 -7
  114. cirq/protocols/json_test_data/Linspace.repr +4 -1
  115. cirq/protocols/json_test_data/Points.json +19 -8
  116. cirq/protocols/json_test_data/Points.repr +4 -1
  117. cirq/protocols/json_test_data/Result.repr_inward +1 -1
  118. cirq/protocols/json_test_data/ResultDict.repr +1 -1
  119. cirq/protocols/json_test_data/ResultDict.repr_inward +1 -1
  120. cirq/protocols/json_test_data/TrialResult.repr_inward +1 -1
  121. cirq/protocols/json_test_data/XPowGate.json +13 -5
  122. cirq/protocols/json_test_data/XPowGate.repr +1 -1
  123. cirq/protocols/json_test_data/ZPowGate.json +13 -5
  124. cirq/protocols/json_test_data/ZPowGate.repr +1 -1
  125. cirq/protocols/json_test_data/ZipLongest.json +19 -0
  126. cirq/protocols/json_test_data/ZipLongest.repr +1 -0
  127. cirq/protocols/json_test_data/spec.py +1 -0
  128. cirq/protocols/kraus_protocol.py +3 -4
  129. cirq/protocols/measurement_key_protocol.py +3 -1
  130. cirq/protocols/mixture_protocol.py +3 -2
  131. cirq/protocols/phase_protocol.py +3 -3
  132. cirq/protocols/pow_protocol.py +1 -2
  133. cirq/protocols/qasm.py +4 -4
  134. cirq/protocols/qid_shape_protocol.py +8 -8
  135. cirq/protocols/resolve_parameters.py +8 -3
  136. cirq/protocols/resolve_parameters_test.py +3 -3
  137. cirq/protocols/unitary_protocol.py +19 -11
  138. cirq/protocols/unitary_protocol_test.py +37 -0
  139. cirq/qis/channels.py +1 -1
  140. cirq/qis/clifford_tableau.py +4 -5
  141. cirq/qis/quantum_state_representation.py +7 -9
  142. cirq/qis/states.py +21 -13
  143. cirq/qis/states_test.py +7 -0
  144. cirq/sim/clifford/clifford_simulator.py +3 -3
  145. cirq/sim/density_matrix_simulation_state.py +2 -1
  146. cirq/sim/density_matrix_simulator.py +1 -1
  147. cirq/sim/density_matrix_simulator_test.py +9 -5
  148. cirq/sim/density_matrix_utils.py +7 -32
  149. cirq/sim/mux.py +2 -2
  150. cirq/sim/simulation_state.py +58 -18
  151. cirq/sim/simulation_state_base.py +5 -2
  152. cirq/sim/simulation_state_test.py +121 -9
  153. cirq/sim/simulation_utils.py +59 -0
  154. cirq/sim/simulation_utils_test.py +32 -0
  155. cirq/sim/simulator.py +2 -1
  156. cirq/sim/simulator_base_test.py +3 -3
  157. cirq/sim/sparse_simulator.py +1 -1
  158. cirq/sim/sparse_simulator_test.py +5 -5
  159. cirq/sim/state_vector.py +7 -36
  160. cirq/sim/state_vector_simulation_state.py +18 -1
  161. cirq/sim/state_vector_simulator.py +3 -2
  162. cirq/sim/state_vector_simulator_test.py +24 -2
  163. cirq/sim/state_vector_test.py +46 -15
  164. cirq/study/__init__.py +1 -0
  165. cirq/study/flatten_expressions.py +2 -2
  166. cirq/study/resolver.py +2 -0
  167. cirq/study/resolver_test.py +1 -1
  168. cirq/study/result.py +1 -1
  169. cirq/study/sweeps.py +103 -9
  170. cirq/study/sweeps_test.py +64 -0
  171. cirq/testing/__init__.py +4 -0
  172. cirq/testing/circuit_compare.py +15 -18
  173. cirq/testing/consistent_act_on.py +4 -4
  174. cirq/testing/consistent_controlled_gate_op_test.py +1 -1
  175. cirq/testing/consistent_decomposition.py +11 -2
  176. cirq/testing/consistent_decomposition_test.py +8 -1
  177. cirq/testing/consistent_protocols.py +2 -0
  178. cirq/testing/consistent_protocols_test.py +8 -4
  179. cirq/testing/consistent_qasm.py +8 -15
  180. cirq/testing/consistent_specified_has_unitary.py +1 -1
  181. cirq/testing/consistent_unitary.py +85 -0
  182. cirq/testing/consistent_unitary_test.py +96 -0
  183. cirq/testing/equivalent_repr_eval.py +10 -10
  184. cirq/testing/json.py +3 -3
  185. cirq/testing/logs.py +1 -1
  186. cirq/testing/order_tester.py +4 -5
  187. cirq/testing/random_circuit.py +3 -5
  188. cirq/testing/sample_gates.py +79 -0
  189. cirq/testing/sample_gates_test.py +59 -0
  190. cirq/transformers/__init__.py +2 -0
  191. cirq/transformers/analytical_decompositions/__init__.py +8 -0
  192. cirq/transformers/analytical_decompositions/pauli_string_decomposition.py +130 -0
  193. cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py +58 -0
  194. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +230 -0
  195. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py +112 -0
  196. cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py +1 -3
  197. cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +1 -1
  198. cirq/transformers/expand_composite.py +1 -1
  199. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +4 -4
  200. cirq/transformers/measurement_transformers.py +4 -4
  201. cirq/transformers/merge_single_qubit_gates.py +17 -4
  202. cirq/transformers/routing/route_circuit_cqc.py +2 -2
  203. cirq/transformers/stratify.py +125 -62
  204. cirq/transformers/stratify_test.py +20 -16
  205. cirq/transformers/transformer_api.py +1 -1
  206. cirq/transformers/transformer_primitives.py +3 -2
  207. cirq/transformers/transformer_primitives_test.py +11 -0
  208. cirq/value/abc_alt.py +3 -2
  209. cirq/value/abc_alt_test.py +1 -0
  210. cirq/value/classical_data.py +10 -10
  211. cirq/value/digits.py +2 -2
  212. cirq/value/linear_dict.py +18 -19
  213. cirq/value/product_state.py +7 -6
  214. cirq/value/value_equality_attr.py +2 -2
  215. cirq/vis/heatmap.py +1 -1
  216. cirq/vis/heatmap_test.py +2 -2
  217. cirq/work/collector.py +2 -2
  218. cirq/work/observable_measurement_data.py +5 -5
  219. cirq/work/observable_readout_calibration.py +3 -1
  220. cirq/work/observable_settings.py +1 -1
  221. cirq/work/pauli_sum_collector.py +9 -8
  222. cirq/work/sampler.py +2 -0
  223. cirq/work/zeros_sampler.py +2 -2
  224. {cirq_core-1.1.0.dev20221220224914.dist-info → cirq_core-1.2.0.dist-info}/METADATA +7 -15
  225. {cirq_core-1.1.0.dev20221220224914.dist-info → cirq_core-1.2.0.dist-info}/RECORD +228 -214
  226. {cirq_core-1.1.0.dev20221220224914.dist-info → cirq_core-1.2.0.dist-info}/WHEEL +1 -1
  227. {cirq_core-1.1.0.dev20221220224914.dist-info → cirq_core-1.2.0.dist-info}/LICENSE +0 -0
  228. {cirq_core-1.1.0.dev20221220224914.dist-info → cirq_core-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,49 +1,49 @@
1
- cirq/__init__.py,sha256=iiIv-lH37uvJSfR0_0rBiC5qDHX47l-S8a4pDrwXZoA,15391
2
- cirq/_compat.py,sha256=NvCIgpjspa0zIWkQc_TTltgqAZnESDKp77HYi0qhKzo,27860
3
- cirq/_compat_test.py,sha256=wwaJL4V-MJCeesDEeek3s6mmXfye0SCvJLIvs_L6jOE,33818
1
+ cirq/__init__.py,sha256=LMECXdmns--tpCJ6gNtPE7aS-XcOeSG4U83ANhOZPPw,15553
2
+ cirq/_compat.py,sha256=9o8FaxU8z0Wu0sM5aNfPndmIkS-zrn6KvY_ZUXyL0RY,28805
3
+ cirq/_compat_test.py,sha256=tFt1lskrZi_Pmn8ZDeMxxfCNTivqVGzKiIYrskK0dE4,33898
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
5
  cirq/_import.py,sha256=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=f831q0fhC0m6uHC6Ep-RREe1uUkIBqWDbyKC8BER7hs,40
8
- cirq/_version_test.py,sha256=0HKxH71mhhwYYLahzoZ6PYdMS8hbNyiceXTUIJe_o8w,133
7
+ cirq/_version.py,sha256=UsMG-_anrLFlY5zW1Iz7JpJCosEn47maDK7LK9UsTgs,1187
8
+ cirq/_version_test.py,sha256=ZM9GLAiU02rzyJQ_HOT2o_tZixJ0lMXs4tCkOareqTA,133
9
9
  cirq/conftest.py,sha256=mHCDs5--u17oLFDAfIlkTS4TRGSc35eLnZ2CXuIuB7I,1175
10
- cirq/json_resolver_cache.py,sha256=RIHbAhGsww7jqhU59vi7nYI7yFP_GJidO8VbfrQM_os,13028
10
+ cirq/json_resolver_cache.py,sha256=JJiO1dhHsEqYClUv68eg-hiOzbb_C1QiQ-BCcvoe4Ck,13067
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/type_workarounds.py,sha256=-qyat6dmVoz8z76I-JLrnK1vAXmY9G1Qa3LYjQ4rJlI,959
13
13
  cirq/circuits/__init__.py,sha256=UPBO-WG6VodQWDkYgJdBzKK8k9CsxHFGIENM95vh7ac,1117
14
14
  cirq/circuits/_block_diagram_drawer.py,sha256=06ceNV01cMx4irIGYnztfLt_HDNhK3AwfsiNh686hjU,9510
15
- cirq/circuits/_block_diagram_drawer_test.py,sha256=gEum1gzkc-rypyc6e6u2q7CyU8yisQmw1DV50sRVUYk,11400
15
+ cirq/circuits/_block_diagram_drawer_test.py,sha256=g21rH5iZgqf8L5ruDh0NR13B-7-0O7IGQsNp03EhRHo,11391
16
16
  cirq/circuits/_box_drawing_character_data.py,sha256=QLoCXwcLL7091RdxEKO259goxt4RtbZK7G-ivCoB4LA,12116
17
17
  cirq/circuits/_box_drawing_character_data_test.py,sha256=XO94z0piwZRHaNZHTf-5tKHQ4MKcDruMeRIKdT8GbYA,1624
18
18
  cirq/circuits/_bucket_priority_queue.py,sha256=hxFuii2fKD8G6EKT_aVLEsA7FmSfqFXPwIbA0KsoSC4,6745
19
19
  cirq/circuits/_bucket_priority_queue_test.py,sha256=t6u_hG7K2e2WKWrgCsKxNRtp4ghKwiCrp0_WSY0W25k,5288
20
- cirq/circuits/circuit.py,sha256=NNeIjxNw1FGXf4CAhErpiAxaRtcuYVnEKE6XH1lMY14,109496
21
- cirq/circuits/circuit_operation.py,sha256=2UyZF98KtwmBqQL6AMN0Ocly2HcwfUpt6PZF_8KVm64,34405
22
- cirq/circuits/circuit_operation_test.py,sha256=sqtdeysXOjUn1UBiVrH3pbfyr_S5vd6lHO4zK4KKXGM,44606
23
- cirq/circuits/circuit_test.py,sha256=qHIQoOgFDcL-v8Drwyh2HbCvE97qXB3tb16-aeCdc3s,156131
24
- cirq/circuits/frozen_circuit.py,sha256=sH1QkXxoA1VghQu0rsJpYNtzuKm2aaP171EXPxr-_Fw,6150
25
- cirq/circuits/frozen_circuit_test.py,sha256=mzyc_fahegcZ5cxvTiatRVmUNMaUZzlePAzp1X8Q9_o,2094
20
+ cirq/circuits/circuit.py,sha256=Gsh2EFAE6pR8l7jTIXoTphTHMa_UozG0Pm7Z_IukhOc,111176
21
+ cirq/circuits/circuit_operation.py,sha256=Ap5ZcQutkeeaxeU7amOZ_2YeFR4NPQNgGKFX7JU_0jI,34354
22
+ cirq/circuits/circuit_operation_test.py,sha256=xUvnU5kIfcu4LBiJ1c00xmW63U6URLAjhaLp2KtxoLY,44704
23
+ cirq/circuits/circuit_test.py,sha256=XpTqP_m6KHfSjD_2902U1rMMlEx3aPmheQL3IiazvRo,156543
24
+ cirq/circuits/frozen_circuit.py,sha256=KBreiIhxh6yCvOyvozUZZN11afmugeN3u2lyqgieUus,6505
25
+ cirq/circuits/frozen_circuit_test.py,sha256=f9u-Rv_Wvt5jkR9C6yRu_2GtXYvMn1-pzyOTsrP3neA,2266
26
26
  cirq/circuits/insert_strategy.py,sha256=L0OLXuo24TtBfdJGOAG2PsVDMrbvQl4iN5lUk6IPuyo,2851
27
27
  cirq/circuits/insert_strategy_test.py,sha256=dgz13_ssa_GWqzzx5W4G4sJJw4SUHC3-g3K0_Z4TRiA,686
28
- cirq/circuits/moment.py,sha256=HdlLTrRdySrtZ7nawlREcdzVkXz3MSEtRUUfPoyg4To,24583
29
- cirq/circuits/moment_test.py,sha256=rTIMaSX9fzoz4lD_IVoN5QC9H-dtv8Bmuf8Kh8lJRaY,26732
28
+ cirq/circuits/moment.py,sha256=PVe8sau4HOVQMRLyPnDYs0JCam_3F8G0onwsOvIgTD4,25752
29
+ cirq/circuits/moment_test.py,sha256=SAZR-BxNiFaYaPLKLN59LCBqxvBMrVJWa-js1kfhOZA,26905
30
30
  cirq/circuits/optimization_pass.py,sha256=uw3ne0-ebZo6GNjwfQMuQ3b5u9RCgyaXRfhpbljlxao,6468
31
31
  cirq/circuits/optimization_pass_test.py,sha256=eQB0NBJ9EvqjgSFGQMgaHIh5niQhksdnvqSXhsj3nOg,5947
32
32
  cirq/circuits/qasm_output.py,sha256=DvERpI5X7F57raJRcuUBe06YWCObB1KLHkBbu1DF8fg,11728
33
33
  cirq/circuits/qasm_output_test.py,sha256=XMcU94E1_w-324135aKvDI2EqkmOKMUqcDVGMrlYgB4,12238
34
- cirq/circuits/text_diagram_drawer.py,sha256=1DFNrznLTUxnqPs0Aoos_2nufcoQ9I7QTGaKF9yff-8,17222
35
- cirq/circuits/text_diagram_drawer_test.py,sha256=jOWPltH5Eg7_MZfQf1sz6aabCpJUpNNdbRI1Scl0MgA,10807
34
+ cirq/circuits/text_diagram_drawer.py,sha256=ctZUG5fk2pf4XswHTJG4kteQYzzH0TefL9JWUagLJvc,17232
35
+ cirq/circuits/text_diagram_drawer_test.py,sha256=2bSoBIeQajRi0aQxqYDpbMlT2eqpx_f-Cmg9XO6A9Jk,10750
36
36
  cirq/contrib/__init__.py,sha256=q8NwuMeqIzKaLsO9L6eKuZbGpldBsvaiIPWou37sZjo,1006
37
37
  cirq/contrib/json.py,sha256=zX1l2tVWECSub076q8BmTLEZGl5FUS3Hnf-L2hQblsg,753
38
38
  cirq/contrib/json_test.py,sha256=I9t_WpBfTBaIxKVo0HjK806V_FguTSBR95Y2gu-qYBo,1117
39
39
  cirq/contrib/acquaintance/__init__.py,sha256=ggeEgdL-XaBQeEiAcKgknHN4WEwWSu7jAe24GNgG3-o,2233
40
- cirq/contrib/acquaintance/bipartite.py,sha256=ihQ2uTg-e2Jt-hiZFSZD-iaLumFVT6MG18K0w73SpUI,6492
40
+ cirq/contrib/acquaintance/bipartite.py,sha256=_UcKNBiCg9j6XcLDINV41KPWKIzEzpmDRd6MlqQOufI,6496
41
41
  cirq/contrib/acquaintance/bipartite_test.py,sha256=hjdJfjDsd2pnUdpph5n9kTWEclSvocsAEmnTbBT21Ak,15648
42
- cirq/contrib/acquaintance/devices.py,sha256=EkMOAk1Jk3T1wZC9lsszap26PLbNJhUqBUJOe_Jn-jk,3037
42
+ cirq/contrib/acquaintance/devices.py,sha256=UrWmmpfOt2DXCiwlz_wdGT9rQ17ZK5PtbkXpgsMBZS0,3031
43
43
  cirq/contrib/acquaintance/devices_test.py,sha256=icl_9SOp8PuZu7msfW5H7zP7_-zfTwTjyPPkajDu-w4,1088
44
- cirq/contrib/acquaintance/executor.py,sha256=_JrO6GEJ9iWuen3dWkhDZjV9GPYCMBmPQyB6zTlvsK4,8553
44
+ cirq/contrib/acquaintance/executor.py,sha256=nshs5RdmsRhOhYdrr7htXURHdc_S5EL950jAref4k3I,8589
45
45
  cirq/contrib/acquaintance/executor_test.py,sha256=ir-LKuQTfHm5WCcjmLriJ8qCT89YnltLpFx89Q3bF_I,7837
46
- cirq/contrib/acquaintance/gates.py,sha256=DsoKQSzJZ0UuVSqGKrITj51paTYy0G_Tom-ygzo0TyA,13425
46
+ cirq/contrib/acquaintance/gates.py,sha256=c1IWi2n-ppRT5lzsdI-V1FwT3FPyhLK4ttk_uNk-dM4,13432
47
47
  cirq/contrib/acquaintance/gates_test.py,sha256=5FVX7zAtZSUqDPNsXk_Wm7LwDmHIApzgNhjAIX1IQBM,15010
48
48
  cirq/contrib/acquaintance/inspection_utils.py,sha256=962Nmgqxgllg8LiTpBLN9g25CXAAn1z8yydnSf3O9xk,2587
49
49
  cirq/contrib/acquaintance/inspection_utils_test.py,sha256=N5WyOkZaP7Vy0DRoiq6ZtQ1S99j5F7XyRPnyRLJqmtM,1250
@@ -51,13 +51,13 @@ cirq/contrib/acquaintance/mutation_utils.py,sha256=HM9mjXufOYRrCO1ydusiJuCh4RnzJ
51
51
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=r_0IdvjSqres1KWs4o4HEb8a5WATovIBOUIAjVeIzns,7848
52
52
  cirq/contrib/acquaintance/optimizers.py,sha256=xAdmecOLiO4-GDO8v5O3uYNAjjSKSDk8_vz7rm7Mjm4,2092
53
53
  cirq/contrib/acquaintance/optimizers_test.py,sha256=-MBJT0JkvxjEwknHA6Q6PoAzrC_JwRBjAfpMwQjWoj0,2455
54
- cirq/contrib/acquaintance/permutation.py,sha256=lN5gK0iJ0FlWHl0niRv4HstUAiSM39isC8DbMCg5Rtw,11771
54
+ cirq/contrib/acquaintance/permutation.py,sha256=xNd03J9l0nUB1gngdmV4rPrKq-_MjsowKau8AnopmzQ,11836
55
55
  cirq/contrib/acquaintance/permutation_test.py,sha256=ASeOCXr4oiIK31L31uWsDokZemp5fHoMtWrPVEZcfmk,11503
56
56
  cirq/contrib/acquaintance/shift.py,sha256=xeTtvP3rFFsghjESwBOTx2Fd4qVUjG-sWY9LhrDESj4,3039
57
57
  cirq/contrib/acquaintance/shift_swap_network.py,sha256=mK0p-XMxi3a56X05D8zzlUnbDRar5D5Ry916Vh6lWGg,5263
58
58
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
59
59
  cirq/contrib/acquaintance/shift_test.py,sha256=FnY-D0i4CZsE0v1GLf30u_JyIYDtzV06O-Hd0tDnuXc,4555
60
- cirq/contrib/acquaintance/testing.py,sha256=KJ_pr2FYSAESEAxFnL7rjAecBY4hZToVd34uWVYsNNM,1616
60
+ cirq/contrib/acquaintance/testing.py,sha256=auzzDDTTBiE6-0PGnJs-etYwozGqBoJ7JVlPuXcky-E,1582
61
61
  cirq/contrib/acquaintance/topological_sort.py,sha256=PjMABmMCG_hoD1pHHeQ_xEGA8zbt5_Cpz7Ld0uyBDnQ,2944
62
62
  cirq/contrib/acquaintance/topological_sort_test.py,sha256=rW4Oa3A92kQfw2GQSxSXPIJfhftuh7eaAPJX8nUwcSQ,1672
63
63
  cirq/contrib/acquaintance/strategies/__init__.py,sha256=3wAyx5RxjkioaQFfpD0EXQYdbJn0Mrv6AfA0w4BgYVk,890
@@ -99,15 +99,15 @@ cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOW
99
99
  cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=rlwbuh0DvFv1GlJIqEG1OI_geY77dzxo4bb7qqDkz8M,1125
100
100
  cirq/contrib/paulistring/pauli_string_optimize.py,sha256=81MDk6rKl0jmw7DXFkA02YmluiXLLznuuCTvca7mVoY,2815
101
101
  cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=f1BWjg8IGw5ChXFYNVhYKNIrFul8PgvpnOEadkRm-3Q,2897
102
- cirq/contrib/paulistring/recombine.py,sha256=G0XCJGi88G-KEJj0VjckG3OT7ZoiDwx5-6GrKCWrTv8,4380
102
+ cirq/contrib/paulistring/recombine.py,sha256=SU6DNj3Y9Wicf9pMP3IYzdWV7Fuz1DA_1v2AtUVnuF4,4355
103
103
  cirq/contrib/paulistring/recombine_test.py,sha256=hJ083nR67JsIs38TfmCjmBLnhqyG0rBfqtBhTptDlic,1895
104
104
  cirq/contrib/paulistring/separate.py,sha256=Oecv27vZ6VVLjFkA3KVYA90BGKVqm0MfCJQ8z7XE2-E,3941
105
105
  cirq/contrib/paulistring/separate_test.py,sha256=FzR78MSHDhNJxizbXreK6u3BeYhT7xn7W1QyHfEZ34E,1267
106
106
  cirq/contrib/qasm_import/__init__.py,sha256=mCO3gwxM4y95TkTs5P-donhvqbKZsRguOLM8gnXRWJw,706
107
107
  cirq/contrib/qasm_import/_lexer.py,sha256=busw1Td1pJR-MBNGW-km1i9t2XKEqZTZ3zJnG6vXkmA,2943
108
108
  cirq/contrib/qasm_import/_lexer_test.py,sha256=iiz-cmIt5hnhHBc4ub4btqHnbi4EPaO7BE7bsJKPet8,4142
109
- cirq/contrib/qasm_import/_parser.py,sha256=J5rjDsEzW9SSWDahkgg0n8ctm3gaCgshrY7LSCTWdjA,19385
110
- cirq/contrib/qasm_import/_parser_test.py,sha256=U9feCil4Nn-pvCFfYnF25Nv9k5dr5GXuj2pMCundQao,27600
109
+ cirq/contrib/qasm_import/_parser.py,sha256=qaFAAmHgSqTwcFgzLCYp-tM-UHcdEVlQ3fJSkwQjPdo,19234
110
+ cirq/contrib/qasm_import/_parser_test.py,sha256=WEP1xp7IPeXRmRlQn48OHZoQtkSyW5VVSDEFT-C_ae0,27391
111
111
  cirq/contrib/qasm_import/exception.py,sha256=Wm6cwUPIkNMPjkv-ELpQ-zSoXaiLOddOQ4iYybwuS6I,695
112
112
  cirq/contrib/qasm_import/qasm.py,sha256=CP444IWCw4zlDNA7HxsTJ2xIak4mZhQv62ZiLlUc2zo,914
113
113
  cirq/contrib/qasm_import/qasm_test.py,sha256=e5b7LVn_6FIFZ6kINqMzJFIjzgtTgutVhgXgX_DcTc0,1861
@@ -116,24 +116,24 @@ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_
116
116
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=9ZWKDOwYrrruIGlPOxmehWdNlNbYi48MXTerZjy1Mlg,4496
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
118
118
  cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=8HRBSNlyqPj1Ty2cpwzjFspupGVls6TTDn35udmq6I0,2412
119
- cirq/contrib/qcircuit/qcircuit_test.py,sha256=K-yV_lsG_Iauh9BN0np2-Ticud5cFbSMZWsNTYb064w,6078
119
+ cirq/contrib/qcircuit/qcircuit_test.py,sha256=TJI1mmIEhKkTQ-z1RBvLYU8oMu__x_eLP9aWAicJWjc,6021
120
120
  cirq/contrib/quantum_volume/__init__.py,sha256=UaZs0ghb0ebjLyHP08B6m6eaDthM31KHKW4jIe3qWpY,880
121
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=QdgEBnF1bLIWARtUlRXHX6EFCDO_VamMQCoH8LKhMnc,19567
121
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=8iFqqaS37nSTgYYy5pmQbao-VQuSGjl4TAqmDyCPG58,19597
122
122
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=HREyULIBznCplzjOO8PbQkaMgEp_Ba2u9Pq3triixMk,12398
123
123
  cirq/contrib/quimb/__init__.py,sha256=XZ2cz9VWpTnJ9Jv3LUEBrDcDPPO1lomMeASPk1mvNHw,600
124
124
  cirq/contrib/quimb/density_matrix.py,sha256=c-kKT4MhEKSaH5LWgydqPWu3H6s8cduJnzJhEYMrRNE,8644
125
125
  cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
126
126
  cirq/contrib/quimb/grid_circuits.py,sha256=E4Ysktap-ZxZXIyer4uu7emXLzBepUha2byN9Werx78,4628
127
127
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
128
- cirq/contrib/quimb/mps_simulator.py,sha256=yUot86OWxrwLoQ27yNCsZSsgPxT_yGGO8rNXwAIyLEc,24695
128
+ cirq/contrib/quimb/mps_simulator.py,sha256=wz7Et54hzoShXtxrXrJ2T2Im5c_hvz7N-SCaAQ3G7qk,24705
129
129
  cirq/contrib/quimb/mps_simulator_test.py,sha256=w97Czn1aX4pj6m5w2StFP2W9C5ZpRUxecFOL6jwBXnQ,17001
130
- cirq/contrib/quimb/state_vector.py,sha256=QjOjeDLeyVbi1lvNM_nldsnQPhAS-DsNTM-_5EwIiV0,6618
130
+ cirq/contrib/quimb/state_vector.py,sha256=DIgbKBkghmP1MUpd1M2ZPuPaRwSLn9gGstSc9AfY1iw,6692
131
131
  cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
132
132
  cirq/contrib/quirk/__init__.py,sha256=B8cZpO41P5mzkn-4rLJF9SRoVm-MLBmhuFMxObbICc4,704
133
133
  cirq/contrib/quirk/export_to_quirk.py,sha256=DLZU0AcDGJhulrYlOcy2_ac9ITiqZ9bBz8a6ZZwFv8Y,3837
134
134
  cirq/contrib/quirk/export_to_quirk_test.py,sha256=XDs5VT-i78-Jw4kp4ZjDqNAi1fVzUqrHxVnANj_4l5s,11986
135
135
  cirq/contrib/quirk/linearize_circuit.py,sha256=Q5KEQ6L4QLqPwaLi4G-w06tWLvK5OOi0s209B2dpNqk,1545
136
- cirq/contrib/quirk/quirk_gate.py,sha256=YVH8Fs6qCchYtN0NMi50o7dgioaWgLeG4FPdXH1g5cE,7229
136
+ cirq/contrib/quirk/quirk_gate.py,sha256=aQkCCrMIlShNhKKWWY9rSSknPUVP_XSEmjHqZt1yd2M,7275
137
137
  cirq/contrib/routing/__init__.py,sha256=-0WzqwyZ9mm4aN9Azrdmd8JZqv0wzjVGpj_RqMnoJFA,1044
138
138
  cirq/contrib/routing/device.py,sha256=L-yNYiS7MGj05d8BPqKul1KL0Df66hblWff46p9h4Ec,2889
139
139
  cirq/contrib/routing/device_test.py,sha256=AGAYzYNwao5n2sxfeISJRQ8CISSogKW0M03hZ_C9N6I,1927
@@ -148,28 +148,28 @@ cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98
148
148
  cirq/contrib/routing/utils.py,sha256=uoZ-BZE8Mx8HDP_QDKt9D8nPYTCcnN2fuwr1sTyFDIs,3772
149
149
  cirq/contrib/routing/utils_test.py,sha256=1oGEDAd70uQ2OrBwbaQd1DYoPcMSZsBQ2l5VLJBtXBM,2021
150
150
  cirq/contrib/svg/__init__.py,sha256=0F_W8s3NP2KsD5EXvxYHlSTycqcuuJWh2a5INZJ3WSo,116
151
- cirq/contrib/svg/svg.py,sha256=3aPY6p3TkPztmBRMJjM6EgTeY8HnJkas05d0FgXMXg4,9527
152
- cirq/contrib/svg/svg_test.py,sha256=dq6Hl2E04WKmv4ucKG12KOTZsY2lu26V_RdrqpgQjQA,1578
151
+ cirq/contrib/svg/svg.py,sha256=bVUeeOWvrRXygQ6dMghxGIWbAFB_-DnIu_Ol7HJ0b1Y,9351
152
+ cirq/contrib/svg/svg_test.py,sha256=mA9Z0rP3ASVNIYifjPuuSQmaSJ4LKMnKd58-WkB_XZ4,2348
153
153
  cirq/devices/__init__.py,sha256=g5DLukZrmrixOEmpSUgTHbdjYbUbgO5uD2Hjv0fFStQ,1862
154
154
  cirq/devices/device.py,sha256=9rUZwpbbmqk8AUVH4N4KfJ59j5im7hVgDJAHtN9iH_0,5361
155
155
  cirq/devices/device_test.py,sha256=v3gT6jrGLLfYnZbTizIaIMkI3s5_xVM3OV9JQchvAxY,1124
156
156
  cirq/devices/grid_device_metadata.py,sha256=h4Xo_PaiZqQSVUgb1ctVtYYYE2tNik2KQhCgooilZrE,8629
157
157
  cirq/devices/grid_device_metadata_test.py,sha256=IeOqYOZcUGhB4ivuQW2g0Q9dt-zFA0H6Dav6yv6Lul0,8592
158
- cirq/devices/grid_qubit.py,sha256=x4zc8N6xxDUq9Jv67NFuDO1Ur9iGOOQ6Y4W2imy7EZg,15826
159
- cirq/devices/grid_qubit_test.py,sha256=3s_ZqcxR5Rhxd1KsllnYJb_fM2SaP3rthJOddl7p3fw,12968
158
+ cirq/devices/grid_qubit.py,sha256=GgovxTSJMia58U2MLx45DN7Xi2srXbzKYqAdlm5l1S4,15804
159
+ cirq/devices/grid_qubit_test.py,sha256=ps7xbSK0-eHnbUj_Fz3h5637UE0EygZ_yhWTY_Wt0tg,13444
160
160
  cirq/devices/insertion_noise_model.py,sha256=e_29kwFYb7k7fEBjHjfhfgE73bofMOG4gWC0DoH1_-Q,2907
161
161
  cirq/devices/insertion_noise_model_test.py,sha256=QJxIjmdxqJU-cHf7aQghWhHnklZY9JtOlvsbPAjOLkI,3848
162
- cirq/devices/line_qubit.py,sha256=znLCJP5YD3srt7fppLcT6oT8Sau9aupNxfyLJLRZ6VM,8659
163
- cirq/devices/line_qubit_test.py,sha256=maOB3nqmN84ViR0dLZnsLXVg5-v9eZHaMtqSbWouBVY,8706
164
- cirq/devices/named_topologies.py,sha256=gn8xRqS68wPsqOO3grrJ5ELAw83wNi9HCq-W7kzlcVs,15828
162
+ cirq/devices/line_qubit.py,sha256=KmEMshPjbMUOdUyec7cmpazEXdeN7PxY0J64U-84GoM,8605
163
+ cirq/devices/line_qubit_test.py,sha256=YrwC-tIr6Ei_2vvWcYuJqGm3TDDgoBfdDHDnh4VltcU,8942
164
+ cirq/devices/named_topologies.py,sha256=zhqwGH0-noBfg-cUGlKFoWE9nMrCAF64CWJKixB_mgk,15838
165
165
  cirq/devices/named_topologies_test.py,sha256=Nj_tlGmqPH7IVUzpUHPnAPlfUWhSGbZsIHdsLLjxIZs,4736
166
- cirq/devices/noise_model.py,sha256=8apuBLWGfPZ1Xi1OVXrxL4fv2pSvRRdAXvR4r5EUCL4,11245
166
+ cirq/devices/noise_model.py,sha256=c00mxBd7ZYw8k-cCoKgF5ePI8WKcPyJS925NarivIRI,11339
167
167
  cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
168
168
  cirq/devices/noise_properties.py,sha256=lJbWefac_S4Nsj8lDObkQaWbIjIsVaT1A12HmmSgDnQ,5085
169
169
  cirq/devices/noise_properties_test.py,sha256=JTJW8_-rI4awd9jTbCgI5l8MpeDsNlXnO53s8QgJw2A,2341
170
170
  cirq/devices/noise_utils.py,sha256=U5J1GiNvZMCUNBKq_U9gJYyVlFPY6tJG8BCWEVUdKd0,6611
171
171
  cirq/devices/noise_utils_test.py,sha256=ZmnmhNoYOvYfQBt9wAfhviPVcwxKZNf0LbKSWvTCTXI,4608
172
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=FXctC1iBPeCaaeL7pgKcjNLV_697zGtdnyJwiALowN0,8250
172
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=Fg4S23uBPIBZWKdDyJ7AAZ_ajT1Vd6n1WxJ-k-0VUlM,8125
173
173
  cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=u9B1_4uwRdNzeyW9f-CSbYfsNpxiJ0RtmttvaaNzXkk,12207
174
174
  cirq/devices/thermal_noise_model.py,sha256=qdWrN7Kqw5dq1rwVUBLY1DDw1nCPADSaxoLtGHC-zW4,11608
175
175
  cirq/devices/thermal_noise_model_test.py,sha256=ox9b0BoHH6d73CjWWI1fIAGd_o3r-4qy8v2ggUwc-pw,12246
@@ -180,28 +180,28 @@ cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKp
180
180
  cirq/experiments/fidelity_estimation_test.py,sha256=NZ9e45CSdfiqKRi24GP-P846Np6gnoIavCgA2_Vk0kc,4918
181
181
  cirq/experiments/grid_parallel_two_qubit_xeb.py,sha256=ROJZiXLaeF5IYo06DxeIvDHpwNJTIiqEAfKxs6v0vHM,2216
182
182
  cirq/experiments/grid_parallel_two_qubit_xeb_test.py,sha256=iDvDVsJxFp5xVlmse3EDH0Ok0-8yQpdAtQ2KHA7DbCY,1053
183
- cirq/experiments/n_qubit_tomography.py,sha256=Dp-HP8QXAA2FiXMWOT7oHBMUnaX-Jne__WMgH4o3D20,8459
183
+ cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYFkeudQUlfE,8469
184
184
  cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
185
185
  cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
186
186
  cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
187
- cirq/experiments/qubit_characterizations.py,sha256=KErgr6IJiLKR56i2SyAkVvJ5EhT3JuhLlbLfjhXdN60,27552
187
+ cirq/experiments/qubit_characterizations.py,sha256=yWQcCxaECAhB1V4WU-5UanoLxTC3TifyqA2ZOlcd7T4,27572
188
188
  cirq/experiments/qubit_characterizations_test.py,sha256=h0fd3y-wI2C7sVmjnjBgt7HuaU_IaOJ9trAnoiKL22c,7695
189
189
  cirq/experiments/random_quantum_circuit_generation.py,sha256=L6xWCOB7MMp4eMzxyfijPmNcvbSMByPkSDOKJVhkHOQ,28113
190
190
  cirq/experiments/random_quantum_circuit_generation_test.py,sha256=_TpP6v5uILvPo0RIpXIqSuogcNTgtx7-3NjePkGbotU,15185
191
191
  cirq/experiments/readout_confusion_matrix.py,sha256=Nd6KuGl-A4cY0JM4CLUSPwpbsK-wFMcqtGi8s2j668o,17278
192
192
  cirq/experiments/readout_confusion_matrix_test.py,sha256=R4UoGklVJ2owqeDTRVP4M9gYynzVYgw-Y76VLcoIJtY,6766
193
- cirq/experiments/single_qubit_readout_calibration.py,sha256=39bqN3ZF8nG8zzb4zKw0N1GeJpteaheQFcuY4SScmvI,9715
193
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=F3sFivMhTAkeFPYLnXrHyx8JAIKbH4Lo5RFCsFWNsXM,9725
194
194
  cirq/experiments/single_qubit_readout_calibration_test.py,sha256=U7roQDUkPvkEkpCX5gx9i4AM3r9p4Fy3JkufGLrfijE,7625
195
195
  cirq/experiments/t1_decay_experiment.py,sha256=dQ9DF84im2vIkxCjrbfn5oCQkTajlXIEJU3_iClu9s4,6812
196
196
  cirq/experiments/t1_decay_experiment_test.py,sha256=B2oDyVL0bD5saI_5kh0h70b8mnXvvReavkalrbxdf38,9485
197
- cirq/experiments/t2_decay_experiment.py,sha256=BgP1KkHl2NByLGN_-G8dWENq9SpF3S5H7k6WwXRVEio,19148
197
+ cirq/experiments/t2_decay_experiment.py,sha256=lTgZ9yJ7Fk9_ozUCHysQn1qKrMQwTpsgEv-QnvsEif0,19158
198
198
  cirq/experiments/t2_decay_experiment_test.py,sha256=DFR0BGn0Id4qNPfqIExj70TEAqf7Vrc8eK91Wj0YKTc,15031
199
199
  cirq/experiments/xeb_fitting.py,sha256=eS8xfohP_5xyZmlLsYbazsl1WZqsYtZBijf-W9VjHBk,27220
200
200
  cirq/experiments/xeb_fitting_test.py,sha256=ho5ZDNHl5ijx4baMFASsDuHe6DOzD4ppZZclYzuQpkY,14351
201
201
  cirq/experiments/xeb_sampling.py,sha256=2lJ9lc6NmIy_twVUl592NRMJWGkxI6FAjh9N-HCAQWY,15274
202
202
  cirq/experiments/xeb_sampling_test.py,sha256=0XkQGvcURsug3IblE_wZrHVDoOQV3WuQilrqCJbDHjI,6784
203
203
  cirq/experiments/xeb_simulation.py,sha256=DpCWVxzWnZvjrdfgIbwR9rWenehqz7Su3LPIVHoK7gI,5055
204
- cirq/experiments/xeb_simulation_test.py,sha256=Y4F7PZAz7k3svBbD5KPeKrabPftExoqk9ZlTRlwipJU,5398
204
+ cirq/experiments/xeb_simulation_test.py,sha256=gx0GqGZ4TDwrNW5ULK5JEWfzL-Dvb8TpAxIgdpiB8Tg,5430
205
205
  cirq/interop/__init__.py,sha256=zYD7hdcL5qUZ2MDzmCRZ7CgfCZ048fMKtJXCW7GMK_Y,722
206
206
  cirq/interop/quirk/__init__.py,sha256=rGKgFDaKFSHdGTEw5iD4GCg_SKzbAfA1qcr4t2lPlZI,1092
207
207
  cirq/interop/quirk/url_to_circuit.py,sha256=di6orlxecKH7J6HjqaPGSq_qn9cSjdGRtmFHxwQp_bo,14353
@@ -236,104 +236,104 @@ cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=8776WWmVRtITfYySg
236
236
  cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=NZ5r7sLQx9p3yLCQ0RQmX-8R6e2vPtXmpL8_xbv1PnE,5037
237
237
  cirq/interop/quirk/cells/swap_cell.py,sha256=6pE6hFcMxLSr1F8_DhwNZulWwO2lKDVYnRxK6Bl-Ql0,2421
238
238
  cirq/interop/quirk/cells/swap_cell_test.py,sha256=nb-lmXqphy6wneVWNrVWyyqzUeCPLObeiQI3qsjHaWs,2321
239
- cirq/interop/quirk/cells/testing.py,sha256=SQ1BBu3j87EQsb7dnY4QpWuRTOAl-xv2H8MefjXQGgc,3308
239
+ cirq/interop/quirk/cells/testing.py,sha256=eHnAwIyQvVesYK3adyCo7-HPTbAADugs2EMuoNoSvP0,3318
240
240
  cirq/interop/quirk/cells/testing_test.py,sha256=Qb__MOXjUrna7Wy6mlRWFyyy78KfzqlKsTvNfdR8-fc,3929
241
241
  cirq/interop/quirk/cells/unsupported_cells.py,sha256=JFLuP_0MtKQ2sMpB1Jx071qrn9oGM6V6F5n9VzQhDAE,2841
242
242
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=5bl-maazy7Dr8u6kwK1AhGT4vtHqzIMRKxoMKYC-JWs,2178
243
243
  cirq/ion/__init__.py,sha256=GKBoQfjGrCOkVQR1MqK32s9YxA8PsrKecekz7LChUlk,734
244
- cirq/linalg/__init__.py,sha256=3RqpAR93vP0Hk4MqMsXDF5k8mOC1eKWd4fY-TDv3o7g,2467
244
+ cirq/linalg/__init__.py,sha256=iMN1jVWzuZrSdHuE-gN2N1QyP0q6wgj6F4zetxJLCJQ,2527
245
245
  cirq/linalg/combinators.py,sha256=5q_cNjnJrDgC7qMX8rYdnCmBKXT_iVbtxnCeJQ4ZPTM,5350
246
246
  cirq/linalg/combinators_test.py,sha256=nZ3snkVA2nAOZ6WJK1hNd1f_i2a5xNdnostfMD1upbc,4699
247
247
  cirq/linalg/decompositions.py,sha256=6nUgwGZ3yZesaGDQc6eooLfRRsPYGjlyHT6VVKfSmY4,39107
248
- cirq/linalg/decompositions_test.py,sha256=fDAjUI4kivo2-f7e5CXq7iHoHGz-jrd4dw-inbqG3_I,25786
248
+ cirq/linalg/decompositions_test.py,sha256=sWNiMgZDtAFRu3qNJxKNiRGI-wvy1Ot0hh3jorKK9Lw,25822
249
249
  cirq/linalg/diagonalize.py,sha256=N9otosGfSBPZasIbha7SE2BPQkUQdWe8Rd4MXQ1HTZ8,9978
250
- cirq/linalg/diagonalize_test.py,sha256=eXlzbwmfUlv1kaZo29GOmuueTu_chmDFC70bAK5oW90,9122
250
+ cirq/linalg/diagonalize_test.py,sha256=H-JcLvcCBdN-DrKo2o1Gs7B8Q9SU70oAZmdT4yTLAi4,9089
251
251
  cirq/linalg/operator_spaces.py,sha256=uZSc9154p63R2UqFw6pniuWcUo20epe5RK6bL3tpkbM,3813
252
252
  cirq/linalg/operator_spaces_test.py,sha256=k2aVBYuU6ehXx_6puApE-sFxEBrOki0t0KeNbBK94hs,10097
253
253
  cirq/linalg/predicates.py,sha256=y8cva_SXS5UXz7waAGMJRXuPY9nGSvBSidmnVo8Zp8k,11918
254
254
  cirq/linalg/predicates_test.py,sha256=UVDkNH2ujI80JwJwsDjbTgyALZUQJAVVCoFN1T_LLf0,21503
255
255
  cirq/linalg/tolerance.py,sha256=ZBZOc5h7UgrKzyOStlcTRwupkjVzQu9-AwjNCCz1ZKE,1879
256
256
  cirq/linalg/tolerance_test.py,sha256=wnmuXIGEn_mugGoNm3AigSgjV2DMFdj8xpgRTMBbO7A,2355
257
- cirq/linalg/transformations.py,sha256=EextZjC9A5xrhj-MhvR-WU86HC7Fmh6Vhb2_SKJqz9M,30268
258
- cirq/linalg/transformations_test.py,sha256=z1qysETWGRqwHLlzJNjvT7CCMrFWx6oWRRB1z2t42HE,24381
257
+ cirq/linalg/transformations.py,sha256=xlIpUYWH-yyjoogKjHjrlAKPWIe875Ih0b4qocP2Ju8,32082
258
+ cirq/linalg/transformations_test.py,sha256=5XEEDlwe-TgUnrU6vejJIZ2wpLCo7fkiuwocHxnpHW0,25097
259
259
  cirq/neutral_atoms/__init__.py,sha256=D0ewdZZvXM_PC7WiyyM8V3WqBAwrpDV_GU_sCIbtw2A,753
260
260
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
261
261
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=mIeGevxs9NoYpfTF_znHL67RrJKVQyQP-DPhn7t9SUA,1862
262
262
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
263
- cirq/ops/__init__.py,sha256=TBZtqlK5askdTQVubAqPG4eNh7rR-sCDIhhBktUa580,5207
264
- cirq/ops/arithmetic_operation.py,sha256=WQ4fxh28B_M-AS5tduN-a4qEU87gtrP82oZZtUfaoxY,10180
263
+ cirq/ops/__init__.py,sha256=df4siOhKuRj8EylUj-9vM4XjsIda3HimOGz4f8Nsbkg,5319
264
+ cirq/ops/arithmetic_operation.py,sha256=PBqIwOfADRlsij11Lo1ao_OZM-O8PDlObgZBxGKsYKs,10125
265
265
  cirq/ops/arithmetic_operation_test.py,sha256=axy8xy9IvDb-ATUV-LE1HNWRqCEz06VyZWVrLNOtXXI,4942
266
266
  cirq/ops/boolean_hamiltonian.py,sha256=hjmzBvWiZnb18JfdhId-dVxt2VmbyAbqMSFAPWV7s7I,14883
267
267
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
268
- cirq/ops/classically_controlled_operation.py,sha256=aC2utGNFoqr95TYymO7d_oBPFWEWAi5s0K11Uc3LIfU,8911
268
+ cirq/ops/classically_controlled_operation.py,sha256=WseFLU_CZxlRJHlyl6LckFHUweqzMZqoUvzEfdjx6W0,9166
269
269
  cirq/ops/classically_controlled_operation_test.py,sha256=MNU0Adff4kTosqsrQ3PUT3ARcZee_PkchT6u0xDl8Qg,48039
270
- cirq/ops/clifford_gate.py,sha256=dotL4T7DT9xIzTK8O6lva-RykoQeOLllzEFvQPlAS4E,38421
270
+ cirq/ops/clifford_gate.py,sha256=P-kJUk6EV8KN5lgbVmsyBB1FTzFjH5fSpybqxt1uw-w,38242
271
271
  cirq/ops/clifford_gate_test.py,sha256=km9yExzNYeYwrOBcW_FTNgNVn7UO6_8RSupG9CrqeSM,37471
272
- cirq/ops/common_channels.py,sha256=CG-NTm9Q0gSx_dlNTCpjubGZCSJo4U-tynEnTHRYM2M,38336
272
+ cirq/ops/common_channels.py,sha256=8Rg4DZMfiNgpCK5JDNjnnQFaBNzgt9hY9zJY1uvq0_o,38407
273
273
  cirq/ops/common_channels_test.py,sha256=UW_8VEUzGiVn1D18l1scxMatg99V-yL1VxgC9nL9qqk,29686
274
- cirq/ops/common_gate_families.py,sha256=JH9pFWd_mwnkZB2vOYFzbxTNqPqCpwRYfgoVc7x6g3I,8621
274
+ cirq/ops/common_gate_families.py,sha256=e5M8wlDYtdrpWBrhdns6iizIvSqzfxDyIsBdxt8hVMc,8611
275
275
  cirq/ops/common_gate_families_test.py,sha256=Oo3C7BPO3gt3ePuqwsI_lx_lY38et8Ps4AuVydX2Aww,5275
276
- cirq/ops/common_gates.py,sha256=8a-WRyG1MAgasTpwt91tAlyPsEJ2FZz7d9H5mMgivRM,56910
277
- cirq/ops/common_gates_test.py,sha256=ZKSTvURe1aA_NkFCj-Ns0kxjayTt5u-z9T1Ad0u2NKc,46121
276
+ cirq/ops/common_gates.py,sha256=YMcadPVRhrvkwYwm6-_TNYM9sz9TY7KSi0g7FvBTeCk,58075
277
+ cirq/ops/common_gates_test.py,sha256=7fCrWJMi5suQpm7IVWSet5AWEcFg8Z5nDnYLN3UsyYk,46213
278
278
  cirq/ops/control_values.py,sha256=O_ssaNxd50b4cS0hVhnRY0aEMr8J86TIh6iPohPKf_g,13397
279
279
  cirq/ops/control_values_test.py,sha256=iDtdQjL39u80MaR16XLp00LRZqWgJqC54cIeADWf0IY,12906
280
- cirq/ops/controlled_gate.py,sha256=ZIiJg3iQxXeNBipvcaZ-N921HLUBgwXGnz6aELe4i1s,13480
280
+ cirq/ops/controlled_gate.py,sha256=uVTZk6pA1ZpEwbVggLeXyAFq18_QJ38hWYhk9GbvQnc,14253
281
281
  cirq/ops/controlled_gate_test.py,sha256=5sUUV0xng-GpQOTSiyQqB_LBaTeXXqHehqQuvvw7Cf4,23113
282
- cirq/ops/controlled_operation.py,sha256=OXpknNa9Om4OUrgD_brE5q81Hm-OC6mea7-nauWspIc,13723
282
+ cirq/ops/controlled_operation.py,sha256=sbT1PGUQjV8a014e8TOeZY2N1q6QXF4n0RVJswBtOX0,14014
283
283
  cirq/ops/controlled_operation_test.py,sha256=pBosqOfBjnw79O9EZqZS_EeQG_IUhf4ceWpCHBc47Ps,16459
284
- cirq/ops/dense_pauli_string.py,sha256=4ieEJaqvR53rEEdLolZLKBTHC4Tox2t_ecH6-M7vJag,24623
284
+ cirq/ops/dense_pauli_string.py,sha256=_Hh8D04nM0j2D9q1dMxvII2DE5oVQTjUfJ_M6M1t5T8,24405
285
285
  cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
286
- cirq/ops/diagonal_gate.py,sha256=PnTq6AiE0M309EirS67J3OP3suxMd__R1PSLzhEJMXE,9035
286
+ cirq/ops/diagonal_gate.py,sha256=W_yXf4qZY_AeP32VN-0u4lS0-WsqjWTg2VSABaO06Wk,9024
287
287
  cirq/ops/diagonal_gate_test.py,sha256=cPHxjc7g2oTcXt5UFm470oo0eJupubSNzs4TccKHlSc,6223
288
- cirq/ops/eigen_gate.py,sha256=IQQ-eaCZd1y9sWU1wcqINwQalvR6ypCI0Nl5Q5Kz_iU,18164
289
- cirq/ops/eigen_gate_test.py,sha256=s2nHXU7LOf1AGPU5hBaGis5ekJYdI0fw4zyzjo31V78,13652
288
+ cirq/ops/eigen_gate.py,sha256=8AzZUZ6Km554GVdLLKJnaPiHoyChcFp4D5v5y4wHSXk,18133
289
+ cirq/ops/eigen_gate_test.py,sha256=nYYK6N9blIg6qR7G9VUzrqGk9_3s0v61gI9O4jhvZR4,13940
290
290
  cirq/ops/fourier_transform.py,sha256=qp2jMkm_yPP8eyLw0v53gq3I89nT1A1NyhGgT1A6MPI,7590
291
291
  cirq/ops/fourier_transform_test.py,sha256=PIK4bWnCIy2TuX0fgclHeU1CBDT6zRVoQpv1v1jt62c,6220
292
292
  cirq/ops/fsim_gate.py,sha256=dMFmAS8KgTOim1GFyytPgBViAGnxH8EwbcghLH8vPgw,18694
293
293
  cirq/ops/fsim_gate_test.py,sha256=owW1VpXntJqxlzhtppnyfaS9gQKFNA6UzCHksgPHaHU,25165
294
294
  cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
295
295
  cirq/ops/gate_features_test.py,sha256=NO5Y9LRzcSlURF_7-4FxR4gtoxJlQVXP-dvjBzZkkLQ,2343
296
- cirq/ops/gate_operation.py,sha256=W6NZsWAmpf1LgSU1DD8AKMpeHhfWTon8YS39-PFlVKg,13189
297
- cirq/ops/gate_operation_test.py,sha256=j_hjrwqcB5phXzgdYU1TKiYamE78HkXIQL7tew86boc,17197
298
- cirq/ops/gateset.py,sha256=qi4svtPBT8Q-rNzrlw3aWl_E65BL39VzCa9OmEbjUbQ,21539
299
- cirq/ops/gateset_test.py,sha256=rvIkk53woH9_lW51M5F9kgIPs_WBGulm3K6EMf3aTvQ,15304
300
- cirq/ops/global_phase_op.py,sha256=_lyWSmn7S_h6FGjQt4TQnn-5M3A1lnUkEM1GbIVtdT0,3529
301
- cirq/ops/global_phase_op_test.py,sha256=MVsezN3qBjCEn8CVHVlSgK6n9ba5IxMHgMN_YPfxNPE,8846
302
- cirq/ops/identity.py,sha256=_dqF3ngTLZyQoCZYufONIPuZVp5bt33ZcBGJibfJrlI,5502
296
+ cirq/ops/gate_operation.py,sha256=7Xjhi9dfse1by2TL3aOPiVL8cXyk8ZXfeO57AHe8ajk,13394
297
+ cirq/ops/gate_operation_test.py,sha256=sGGdqGPV5ojpNZuatz8rOHxTYnG2kM9qy7iRu3Kaa6Y,17517
298
+ cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
299
+ cirq/ops/gateset_test.py,sha256=BY5UJ1k3NC0jz0d4yocyO1qcQU6e4UbN9mapWE7z7AM,16361
300
+ cirq/ops/global_phase_op.py,sha256=y4AT1_dQfGl44WHbCkXfp1d1Hh5BN1geQ35HpvI5dLE,4868
301
+ cirq/ops/global_phase_op_test.py,sha256=FjtUsohIYabTtiGytvPQw9Rzkqd6dlT7qrj4oltDbTI,9814
302
+ cirq/ops/identity.py,sha256=4H67nV4i85wi3HWY-k5ImC9hX9U6BjIZp61JalHpsTI,5503
303
303
  cirq/ops/identity_test.py,sha256=dGx9nzeFCoVo3SmlEbqCGJT1XyzJh-qoPl9n2gEd9WQ,7422
304
304
  cirq/ops/kraus_channel.py,sha256=tCPAEzr_GAL5vTwI43rBoiOnT04l-ebZanuuEuYWDo8,5085
305
- cirq/ops/kraus_channel_test.py,sha256=rIApoyo6NvF-FQN0JVbf6MvlI5zbXCcnfbBx7MtjXwU,4708
306
- cirq/ops/linear_combinations.py,sha256=7FHTj87AfPal__nEEDd8CIJk5SLzgJ9AxIdQ9jj2ySs,39659
307
- cirq/ops/linear_combinations_test.py,sha256=gWbO9cL25Y_3P-0DiTCbesduh5nZYZYQGlDKdOR10wA,65719
308
- cirq/ops/matrix_gates.py,sha256=xg7TKg411qUIKO-nXpG5agunznCM-MB51N5ErzDcY5o,9151
309
- cirq/ops/matrix_gates_test.py,sha256=8_B1zJwhGBBQDvVQVQphDQj2oA1Ww5YUM8djlkQ7wbw,13410
310
- cirq/ops/measure_util.py,sha256=uXAESGNqfDIXthsVT8A_69Pv8JSnJgwRuIj0tEl-4Q0,7244
311
- cirq/ops/measure_util_test.py,sha256=bu7dYMMapJAjqeRzhSV-2yOQPkK_9yiWo0pa8ynF720,5029
312
- cirq/ops/measurement_gate.py,sha256=Ue6g8yqwYMOGdRM0-r1PkJVeRe_1F-nfS4M6-0ql5oY,11813
313
- cirq/ops/measurement_gate_test.py,sha256=xKC4Cw1iouFppJUeveUu6vrbDXlyx4Kc568T779mGdM,18228
305
+ cirq/ops/kraus_channel_test.py,sha256=qH2Y9cngXzKCabd-Mq5xBYcM_wyL8c6KkrXw8kZr7Dc,4726
306
+ cirq/ops/linear_combinations.py,sha256=VrPwMSeOI9UGcWZCS0MptXOlECp1w0ZGo3OpahQnQaY,39651
307
+ cirq/ops/linear_combinations_test.py,sha256=qpzRo53mJtcidYE11loKMP2b9guKMGtzrKWQ_u0jr4Y,66387
308
+ cirq/ops/matrix_gates.py,sha256=8ARvpHWYFgwmlT99-Gxoa24i_mxKLvdj_RhoQvglKQw,9290
309
+ cirq/ops/matrix_gates_test.py,sha256=m5rMwq_sqVvsmkc5opVr3Ikd1ERuULmSRNAvGZUg7ds,14224
310
+ cirq/ops/measure_util.py,sha256=wkT0XC6rIddOkqNGwkvI-m7Ncr8j5QPN_evwecc6nrw,7390
311
+ cirq/ops/measure_util_test.py,sha256=Yzlced4nb4DHO-0cM_a-QZGO_3R8oqExkpIALN_pG4A,5307
312
+ cirq/ops/measurement_gate.py,sha256=4nZPQ-ckEu8Atv1HGlDUPvXjP4WOlub-O-yPHK28GBw,11823
313
+ cirq/ops/measurement_gate_test.py,sha256=XfTDqbYUUc7zsMURh7D3jo8DwKWVVT9uJRBvtTm8Frk,18308
314
314
  cirq/ops/mixed_unitary_channel.py,sha256=k3O4ovH3bFs1WnAZc647IgCK8thC5JnTGxsCzjBacEY,5259
315
- cirq/ops/mixed_unitary_channel_test.py,sha256=oxv5K-CaST2NqFDpNbxUpUyfdHdgl6ezj0euq8f2BKw,5022
316
- cirq/ops/named_qubit.py,sha256=MNYonpN1hM7pVris54mIz8rfMSkCPv3jzmxe6sCLTX0,6376
315
+ cirq/ops/mixed_unitary_channel_test.py,sha256=x8LIAea2KcutNupnRJ_cLy1kmxhbUh3K3BkZtg3OkKQ,5058
316
+ cirq/ops/named_qubit.py,sha256=PUL1OVrvRhmj590hVKVZXOfn88GcJ1LYDLY9tbBu_vU,6302
317
317
  cirq/ops/named_qubit_test.py,sha256=YIfE3NGJxJMTIGLvl8wp1ZwyNTE5NQ_eZs4WgeVY0Sg,4590
318
318
  cirq/ops/op_tree.py,sha256=iXsIFcQCciU7C9SiPxhd_zrp4TBGCsmnqxKDjUl1aEo,6159
319
319
  cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
320
320
  cirq/ops/parallel_gate.py,sha256=RSj1SuiwbDCMWxvTmi3xz7oE2QXBFgA59emijh4JPkE,6335
321
321
  cirq/ops/parallel_gate_test.py,sha256=M6o3AyXFQrwyiOTtGxlYH09TbHdjtTxCuMjmn-ALnn0,6298
322
- cirq/ops/parity_gates.py,sha256=qAEtFp-5jIew0_IsdM4LIjQwKG-JwD1PeDNDNMYMo68,12590
323
- cirq/ops/parity_gates_test.py,sha256=VxLJok7DATVyei1Yibd3TVnvMqeHyovs6uta9rgn3zU,9525
324
- cirq/ops/pauli_gates.py,sha256=A6B19tZBYQ2MMIM9YQS3FkIQpcis0VYWqRb2c4vOBdA,7031
322
+ cirq/ops/parity_gates.py,sha256=4xUSGjKW4apQijzz7S0L7NBj7gOmbW0Ly0nVMksyaRE,12711
323
+ cirq/ops/parity_gates_test.py,sha256=00y565_AI7264LFZcY0TQwfEmX_dAztAJmnuD5w9JtE,9770
324
+ cirq/ops/pauli_gates.py,sha256=F4dQCKhSfBtLYRPGyPuR7Z-fquKpPc9IStXsxCUxIYY,6932
325
325
  cirq/ops/pauli_gates_test.py,sha256=bHt7A2w0auWxN9gyKAVeimT1KeOHz5C_CjFHSK1V-Co,7752
326
326
  cirq/ops/pauli_interaction_gate.py,sha256=GQtK5lRw2Uh7hs2GsoRxe-VMlMTO8PxDeZNVT6_qOWI,5499
327
327
  cirq/ops/pauli_interaction_gate_test.py,sha256=U9ORW5Ayx5PESPFiGESzWY-02qHklYcM1mYW56RWe_A,4544
328
328
  cirq/ops/pauli_measurement_gate.py,sha256=tq_OlHlTLQa6yah--afE2UMNdF4a_vfXi8XT8ww2ELc,7215
329
329
  cirq/ops/pauli_measurement_gate_test.py,sha256=uh3J0Ps3V3578V8qkRiEgIl6jBiv8DsXlk_vzLvOEhQ,6720
330
- cirq/ops/pauli_string.py,sha256=sXnBeg4r0tF7g5Mpwy4up0HbuVBMOIpRaAgqwQjap3s,66576
330
+ cirq/ops/pauli_string.py,sha256=ZMm9InD7LiooBWzaOuZ2dCs73asoTqwEsi22Y7f-uGU,66584
331
331
  cirq/ops/pauli_string_phasor.py,sha256=F1Gftw8TDb9qdJjQti6xxbOpXbFUFCVwn3r8073wRbY,17604
332
332
  cirq/ops/pauli_string_phasor_test.py,sha256=HGEPjPc7ySeshOnMJHNjtyckFuEXLvxgy-TtnU6fETM,27582
333
- cirq/ops/pauli_string_raw_types.py,sha256=6NdXE8biG_ia85pjWBmBtrfJ7d013KMFx0cKIQltevU,2474
333
+ cirq/ops/pauli_string_raw_types.py,sha256=6CgdPWYmOziP4uZbrIsRW0sDSMmV1GioGdAk0owFITU,2240
334
334
  cirq/ops/pauli_string_raw_types_test.py,sha256=rHih__fgTD0cqmwW0Iv5LATDbNkRq9rDiRO4VSPobEk,2642
335
- cirq/ops/pauli_string_test.py,sha256=cnUNFAWEig8Op_tyb2SKVfGxh3DjXBW6_dmHLDzdpJg,73753
336
- cirq/ops/pauli_sum_exponential.py,sha256=L3Wj-db3_BAsTP1iYx2T5As9Qm7384FadixT0-8A1d4,4745
335
+ cirq/ops/pauli_string_test.py,sha256=hAov4Z2IDbibSiaV-2-68df6rC8Ia9ZL8A1mn6r8oaA,73779
336
+ cirq/ops/pauli_sum_exponential.py,sha256=n3fhKWJVMudzGuOcdPHskVNx3fHE2MAblVdkzbDtcz4,4909
337
337
  cirq/ops/pauli_sum_exponential_test.py,sha256=wVnJ3FSpEimHT8ERVkmljALrgSuuDYo6GRg91uJ7ztk,5370
338
338
  cirq/ops/permutation_gate.py,sha256=i1BfUsXF2L4w4BlCAw9X2PnQQRE5gG37--fXF3cxihI,4449
339
339
  cirq/ops/permutation_gate_test.py,sha256=SwXRgsZNLn5jnGhfcKPJ0J0CIssNzElbFaqylV2TXD8,3281
@@ -347,78 +347,80 @@ cirq/ops/projector.py,sha256=isDlNLR8YS5CxsVCihtRAgfKZXFFQxk7kuFXY14t8ys,5690
347
347
  cirq/ops/projector_test.py,sha256=Wq7ddj-PV30yUXJxJoT3XIw2sIUC1AilnZ9m9N5Ejr8,9063
348
348
  cirq/ops/qid_util.py,sha256=2x9BCtJzTpfDAXvs5teROPsU1lA8gyr2JEaLWi1Q9y8,2148
349
349
  cirq/ops/qid_util_test.py,sha256=JdViBgFfH4bZJyPKTjUf9MuPxMQe08JV_Tl6tusekfk,1061
350
+ cirq/ops/qubit_manager.py,sha256=EbA8nC00lmi3YMkovSCJjCXYvS_AKIPW-GBzKbUaeyc,3381
351
+ cirq/ops/qubit_manager_test.py,sha256=adogGKdWVulCwpByXC_KMP6YNst94R0wuW-5VTEozSk,2351
350
352
  cirq/ops/qubit_order.py,sha256=nYkcMg-y5QtR7M3W1HXq1IWJyMKjrTZXVK1GEbY6gng,5616
351
353
  cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
352
354
  cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
353
355
  cirq/ops/random_gate_channel.py,sha256=gKDqZa6AwdCIuuh2UOvO5oxCdGRDOInA7fI3ZLQ-LTY,5121
354
356
  cirq/ops/random_gate_channel_test.py,sha256=s9L6dsNoziMweysr2QaBblSdLM_T-Pp3eq774HnioVU,8600
355
- cirq/ops/raw_types.py,sha256=fcUuILSELxaBAw8hksq5W7UMEAf7oBhOpyYJGZyEmA0,38491
356
- cirq/ops/raw_types_test.py,sha256=vrH_tPRYXvTguToArhQlyS9erhMaJdEaKtbiwPHMLwM,32400
357
+ cirq/ops/raw_types.py,sha256=rJCzqV8rIHHJPvPB0pncxTKTaf3jjQrGV1wWedbwEM0,39880
358
+ cirq/ops/raw_types_test.py,sha256=wpXx3drpm3s9CrFr0WEDMxEPGTjZjeqqHTEb21rSAZE,33508
357
359
  cirq/ops/state_preparation_channel.py,sha256=PjVtoLbjBAy_XqnFAY40Am-NifeuCFVVLW6RJxph5sQ,4778
358
360
  cirq/ops/state_preparation_channel_test.py,sha256=yKUvLw_ft6cvIgRJcFQ779wZS-V6V-pzQq-rZRWdCmU,5922
359
361
  cirq/ops/swap_gates.py,sha256=9eJMGyOiA8W9k2xJ_w5PaLOCHGvB6C4T2RLddIZ5qE8,11601
360
362
  cirq/ops/swap_gates_test.py,sha256=_CihLf6rY4PNphCkH-S5mLJQYZW9ILjnnwUyQ9b0Blg,7452
361
363
  cirq/ops/tags.py,sha256=B3nEsZQTurGPJodH7aDoreNSatqawTxwsmw8fSKaIlc,2294
362
364
  cirq/ops/tags_test.py,sha256=4V9twOuCXd7Glvj9p3RW-tZ4-bfLtC1tmonR4soKNA0,1158
363
- cirq/ops/three_qubit_gates.py,sha256=DWtvlNd-dmu_4pwNYIUPMwf01j0NFXsquyV6mMCloUg,28209
364
- cirq/ops/three_qubit_gates_test.py,sha256=cS14zj-IjsPMvMUr5VikpAn7xnm16cpczx44aY0cxcw,11690
365
- cirq/ops/two_qubit_diagonal_gate.py,sha256=-ueA-qd_FgS4jNiqRgweJxO71IJ-WbTZrrpjSw_OXS8,5381
365
+ cirq/ops/three_qubit_gates.py,sha256=EwLVn3d8F9ODm8UD_Bw5PpUpIAc_RC-ripDsPT8ZnbM,28372
366
+ cirq/ops/three_qubit_gates_test.py,sha256=iQfQ4p4TwtyHYCqaWOEeZsqszF_Mp49VwlIKRydClMk,11778
367
+ cirq/ops/two_qubit_diagonal_gate.py,sha256=UYz2lUN8YzQjaqBZ_rmg6TvLFSRAvSlQGhnPOL5FmNQ,5376
366
368
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=qiuREluCDKMok3ormBOdDYCFlOS9u1zFLqTsORO5JtM,4000
367
- cirq/ops/wait_gate.py,sha256=UK8p6CK4hjUuWnvIZuIVKSQIsydoHyv9kUghHiUqvwk,5644
369
+ cirq/ops/wait_gate.py,sha256=ZJ9cqRysAyUYgfswVWO5C2OkDZ9MFEQjSemLw0w3drA,5654
368
370
  cirq/ops/wait_gate_test.py,sha256=2Uw8ZjFkYGhDosoxbJr_IW2wWdxY8kXR-CLyC69DYRg,3543
369
- cirq/protocols/__init__.py,sha256=vva4l4NsHx-T_5YLDoF8_R0p-UOng6h_WvggpKSwJ2c,3980
370
- cirq/protocols/act_on_protocol.py,sha256=w8gAc2uZd721gr0gSXI1VYOWhv__67om6S_gUz_QDOk,6910
371
- cirq/protocols/act_on_protocol_test.py,sha256=vyeKcSLZ84uGhrMw8JSJbBWLfrNAPksnhfNaVj9lf_s,3035
372
- cirq/protocols/apply_channel_protocol.py,sha256=kXTcpobRg9941DKIObNbaMdmtB4Uk0L0il80hopthzU,15750
371
+ cirq/protocols/__init__.py,sha256=kGCV1tzQ1m8fjrOPhapDpnStu-rFNe4q188OQY1huHg,4006
372
+ cirq/protocols/act_on_protocol.py,sha256=oNc5Vn64iT02gLV0qz6GU1J3rgHkhltLTHlyyTfQpPU,6902
373
+ cirq/protocols/act_on_protocol_test.py,sha256=HK9H-X-2kHG6HGbzSYTz_V41DXOE55ooRnEfA-vGXKA,3129
374
+ cirq/protocols/apply_channel_protocol.py,sha256=fQPKAEEtM8LHvObQzwrDjptVO3vS7270qlOsENKHMlw,15715
373
375
  cirq/protocols/apply_channel_protocol_test.py,sha256=ETAWrBTVkPuUPUgHsLZo1HUsJnZsO0hD2fQeXlXtvjE,10582
374
- cirq/protocols/apply_mixture_protocol.py,sha256=iWCk2mtb8QbMHq8gCqPipuoWaowQak_kRImuooNHlx4,16370
375
- cirq/protocols/apply_mixture_protocol_test.py,sha256=HjfVClN50DJs6XCv9lrReeD9IYIpDFcZFTiwnV7UfBU,10783
376
- cirq/protocols/apply_unitary_protocol.py,sha256=k--bcKUUJiH8MlkuueVBCnCrtCubkwpI6fdtmr6r1dg,27663
377
- cirq/protocols/apply_unitary_protocol_test.py,sha256=cwtXvOm5PT4YV4QGv05WvIsUjbNNjW_ISlu73Qyamrg,24679
376
+ cirq/protocols/apply_mixture_protocol.py,sha256=d2SW3v2AW0flY4zseYrh-p4PM29uuonKZ3nUTGQDmes,16323
377
+ cirq/protocols/apply_mixture_protocol_test.py,sha256=6sNZhauFDec2MvHmUsvmkVF-qjH1WLDnZO35RT0OtRY,10793
378
+ cirq/protocols/apply_unitary_protocol.py,sha256=euKDlasTpz4pDKIU_sbYd6Zo7EXL_o4KOqXUbnmsQg8,29777
379
+ cirq/protocols/apply_unitary_protocol_test.py,sha256=Rrw7Tm0tMnjNMf4KdJJb3XiNBFH4dqskZWjp55UZDUw,26111
378
380
  cirq/protocols/approximate_equality_protocol.py,sha256=P5mWl9BWGpobw3K7iAoupFPSqO9V2yG82rfQHWTClmM,6313
379
381
  cirq/protocols/approximate_equality_protocol_test.py,sha256=h8fZSNFtLH_VNo2NbnUijSmo8FEnuStVHIj3hA61Gwo,9183
380
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=LUHQdSXpj0_VcqIFVYATerhbo-4tvm3YXz8lDy6BTds,15907
382
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=_AqGA2OztVkzUVEw18pzIw_eI5Nix68eJ0TJwemNdNk,15857
381
383
  cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=nxcQZDEJhBJcrakWuQH6TWFSUjs5akoleTU8K9pGUZA,10178
382
384
  cirq/protocols/commutes_protocol.py,sha256=ZSwtnkqB7as1y28alLfZWnMvvP1vFhel0-EMLMWS468,7478
383
385
  cirq/protocols/commutes_protocol_test.py,sha256=h0Lky4jrs7Hxrh4MeHxmxNciuofKGGZ2eC-ceWP8wKU,5849
384
386
  cirq/protocols/control_key_protocol.py,sha256=S3b4XOvTIj6TxNbj0W33fjdvXiWSKOtflvfEGeruzWw,2630
385
387
  cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZOOWGOXp0RIFgqc,970
386
- cirq/protocols/decompose_protocol.py,sha256=c_DrBxOym1rDy8Uq8dBSs6XkZHjqtQZu6UiTgrRNxwU,17446
387
- cirq/protocols/decompose_protocol_test.py,sha256=Y4XyANUhdg52MxEQCZzJpkWuHwGkI6XHtwgPSq7-97U,11576
388
+ cirq/protocols/decompose_protocol.py,sha256=b4NCMzdI_RuHzkGhRBNL_vW1YiX8gmkMvCLEwqDMuK4,19164
389
+ cirq/protocols/decompose_protocol_test.py,sha256=zV-eAOYYqeXd73MuoqsRMe3FKj7Q1vxjJAizNKpZaHs,15969
388
390
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=0a93790FDjID46cX94PVAlA9i9Fu7uN8cj6qT94NH9w,4101
389
391
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=qpiPXPCncim2SEsnpJ-Xx5Bv_nRKBED9N-iRkJ6aWIc,5718
390
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=CM0gL12KYNJWAKZylDLpfncluulJGwzh3YmjJENZupI,2620
392
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=q7x5AlDtqgmbGWJPXKdPR3jYacwPoBHGsylHxqCvoMY,2685
391
393
  cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=oxVHaotKNUqRu3Z7teLidK7UwMGuuaDdjywS7sPYdOo,3072
392
394
  cirq/protocols/has_unitary_protocol.py,sha256=inj17qr8Pz2Zofj0Lsp2o7TWlfmdU1TybtRjs1TWVow,5372
393
395
  cirq/protocols/has_unitary_protocol_test.py,sha256=Z4FhcIr36EzfLf4rvQXfMFIOeuDG-mXM001ablSOPYk,5644
394
- cirq/protocols/inverse_protocol.py,sha256=eHEB6qPdgbLxAE_8Px131cB11y4XO4qiKPishEGbPUo,4123
396
+ cirq/protocols/inverse_protocol.py,sha256=CEqtGRRj86WQyyALonRXxQrNq-fENOs_Zqrlr_BVau8,4115
395
397
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
396
398
  cirq/protocols/json_serialization.py,sha256=4Wi3oeywS5_kTAhUqnBUhrtb-bJ9PmoFsqUqbEDXKvM,29266
397
- cirq/protocols/json_serialization_test.py,sha256=bWKLIggyz02WP9yu_xeNwUAgs1WWxt6FSJFgKcvyR4Y,28928
398
- cirq/protocols/kraus_protocol.py,sha256=kKT7o-ibWsO9e67xhYU8TApcnmvj_egJQsHMcgqUuDM,9189
399
+ cirq/protocols/json_serialization_test.py,sha256=Z8waXBg_nwguh6tSKHKzUchIxCuizQfieqnMmuGGgOs,28936
400
+ cirq/protocols/kraus_protocol.py,sha256=GKQ748yxo6B6i0jUzq8OyR6lcEFYbh4FV2UryjUgSuk,9158
399
401
  cirq/protocols/kraus_protocol_test.py,sha256=QpPwkk7XBiGKNdrOcjXqtvhESVbUzujnUPz47uUNyqc,5401
400
- cirq/protocols/measurement_key_protocol.py,sha256=2rB7yTtvD2Zq6f1EL4RsS0rXFblZbq0j8vYz23XIoao,13406
402
+ cirq/protocols/measurement_key_protocol.py,sha256=hl7xFi1Evebh8MQNLuUffhsUkggr4SdWUm4kIr9s2iI,13425
401
403
  cirq/protocols/measurement_key_protocol_test.py,sha256=2dXvVe0wfthbvj-zD5t7WsHYzQJxKtz83jGbEjPYRxQ,8514
402
- cirq/protocols/mixture_protocol.py,sha256=l143Ym87IcItyQGHUYWtP2LhywvUlfdLxkiEbdDtj0g,6323
404
+ cirq/protocols/mixture_protocol.py,sha256=mtWi-QffTZwj_5ViLVrPixNQFCFdQ6ACo1Fo0mvIPmw,6316
403
405
  cirq/protocols/mixture_protocol_test.py,sha256=L0R2jSxZbi3pEhD2tOv8XC3tvi3s4csjQMk-VS987RQ,3616
404
406
  cirq/protocols/mul_protocol.py,sha256=ZhkowiHCulggWanjoz6HpMGf0ODqDNIjM32knFKPuJ0,2770
405
407
  cirq/protocols/mul_protocol_test.py,sha256=Qv7y17r-HjLXC7e-6t_Y6ht8lD_iiXE6CRyRFb7noGE,2136
406
408
  cirq/protocols/pauli_expansion_protocol.py,sha256=UfcBv5NbAVCmhziV3zjpTVZdKUTIr0v2bZ12qsv5CDk,3749
407
409
  cirq/protocols/pauli_expansion_protocol_test.py,sha256=z6eo1mBCVa965OAbVYKlTAqN2VztjqgMVvcYVC2C46s,2728
408
- cirq/protocols/phase_protocol.py,sha256=WXqKOJLjN6bKr7Jq0P7B1m2TGCSAMTOwp0RPe1yIdig,3625
410
+ cirq/protocols/phase_protocol.py,sha256=dXZRJb7aT8ZvtliItZOvoiaev-QvjBT4SknwZ5p-RUI,3612
409
411
  cirq/protocols/phase_protocol_test.py,sha256=eU4g6VDqfWZCpklVlY1t5msc5kAZsP-UlPrROLll_ms,1939
410
- cirq/protocols/pow_protocol.py,sha256=hZXaXd8-w0T19atODeqBhVAhOx2EGBNCZHay2zf2o8A,3309
412
+ cirq/protocols/pow_protocol.py,sha256=0wgb4LLAkOWjmP_u-_6IweXovDViocbdSgtsMOcXdkM,3290
411
413
  cirq/protocols/pow_protocol_test.py,sha256=Woj6RLFiaqBTKXgngHuNj3vjmzVMn2tt0f4mmObgvGQ,1642
412
- cirq/protocols/qasm.py,sha256=AVf7U0JremqDWPknRadt2pB-cZFntifzvhXH7PU3TJU,6549
414
+ cirq/protocols/qasm.py,sha256=QG3wVi4xJBioMUT73i3EE0AWR4GnIZlfkAFL2PrJriI,6561
413
415
  cirq/protocols/qasm_test.py,sha256=FxMs2PKJEi5Y2XIDuXZKN1HJd0zgTqSuv8BQaudKwUw,1484
414
- cirq/protocols/qid_shape_protocol.py,sha256=GOJy3S52WgUaJk9inVD3WqvTT02oDA8g1SmM5Jqu9Hs,7738
416
+ cirq/protocols/qid_shape_protocol.py,sha256=j4z5CWET3suEepycUEwsUIy9WM1Brewc_gRmFruzucs,7706
415
417
  cirq/protocols/qid_shape_protocol_test.py,sha256=Qjo-wemjkP__1jQnVkkB91mUs8EpfXyKI9GzeZQVb1E,2303
416
- cirq/protocols/resolve_parameters.py,sha256=869HE8MmfvJgMujJPSlmFgN2ITG2_S_05dEawhy-QRY,7135
417
- cirq/protocols/resolve_parameters_test.py,sha256=BrZ6byyz1A2eS9zU-nrZBMXNxSejnhWCgOJD6p12xz8,4883
418
+ cirq/protocols/resolve_parameters.py,sha256=nKe0hmVeywMz7rIKqiy6xH3ZsON3Kx7uPNoxK3Emffc,7308
419
+ cirq/protocols/resolve_parameters_test.py,sha256=sZvwdcwCuHj3l-jwxtorUp4BOsicqO4vQg2NvMgU4y0,4883
418
420
  cirq/protocols/trace_distance_bound.py,sha256=r_aXr3QuqbjCrXxwqDSyRyRAbCvWaZIzt95iy5-Wx-U,4172
419
421
  cirq/protocols/trace_distance_bound_test.py,sha256=5DFxGafD8HS9hg1BtHVBorqA91kAEH4LCUIxZW3cmCo,1935
420
- cirq/protocols/unitary_protocol.py,sha256=JlXywuhm4n4iCUy29fCs5m9IwtGTKlg4cULleNtqxAQ,7792
421
- cirq/protocols/unitary_protocol_test.py,sha256=PvJK9UFCeB4uLgwxKyJDaPM_nTTpA2osqhDXDijOPX4,8707
422
+ cirq/protocols/unitary_protocol.py,sha256=DE6djQAu_aHUBEznjsW-W-zRx8susfqUmQtYa7CTGlk,8168
423
+ cirq/protocols/unitary_protocol_test.py,sha256=Vb_krc12b7k3-lIF2Ug1zDSQDFS7Mvd5FdF7ciU22N8,10180
422
424
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
423
425
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
424
426
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -593,8 +595,8 @@ cirq/protocols/json_test_data/LineTopology.json,sha256=zy-oVNfzkyc7DwLHfWXUNjxzT
593
595
  cirq/protocols/json_test_data/LineTopology.repr,sha256=6XRmh7knnEW1zeWssm26_ySTY7xyNUKkne_ol7otidg,30
594
596
  cirq/protocols/json_test_data/LinearDict.json,sha256=EqCoSR3SqwmTfkuqII-AP7iL0EObemfWvlFAfCAsX1I,520
595
597
  cirq/protocols/json_test_data/LinearDict.repr,sha256=nzooCij_zEBNKhKW6q33JahEvuHfLIKvzHOuG3CtmOI,126
596
- cirq/protocols/json_test_data/Linspace.json,sha256=XtvkCdUvOSE9TfAlQB_ZEwtzh-Dzk4U71eWufqIDtZY,85
597
- cirq/protocols/json_test_data/Linspace.repr,sha256=bwbI37oBpIvJTjfImNusTZ53WRaCHcJuu7ss5s15fP4,45
598
+ cirq/protocols/json_test_data/Linspace.json,sha256=ygvT3kNsZuq_PKyPRhRthfOHXCfsaYthGXlhdTsE9m8,329
599
+ cirq/protocols/json_test_data/Linspace.repr,sha256=PJbvEv4bwJckZhaTTtgiuzI-9ug-fYXKi4FhbvSj73E,136
598
600
  cirq/protocols/json_test_data/ListSweep.json,sha256=I1_NvIs06X4xaZdswIvXb0FD_DopX54TPhSZ_MizMRQ,311
599
601
  cirq/protocols/json_test_data/ListSweep.repr,sha256=8pbPgdn325CqWWWHKO40KV1guu97zBABL_AL1E9CS8A,81
600
602
  cirq/protocols/json_test_data/MatrixGate.json,sha256=0wyhxqGnR-j5roWX58TC2mRwkulO8796D9nRGYbaMhw,3806
@@ -667,8 +669,8 @@ cirq/protocols/json_test_data/PhasedXPowGate.json,sha256=ewn2xXnpIVF7NjvG5HjiaIY
667
669
  cirq/protocols/json_test_data/PhasedXPowGate.repr,sha256=zI_RuyoAIM-EslzgKf6aDeEE08L29zquNKeyRbfzEUM,77
668
670
  cirq/protocols/json_test_data/PhasedXZGate.json,sha256=rMzDLWKmNnTY8P5oLyqYYbUYhr-ZVAFrsGh6yVuBPKk,123
669
671
  cirq/protocols/json_test_data/PhasedXZGate.repr,sha256=VFYDGRF1Hry_RSHRARfaVJqwCot5N4UPxN6dLP9ubWQ,81
670
- cirq/protocols/json_test_data/Points.json,sha256=bkPTIda9-ZgG7cg4gyA-994ZZGb5PFZEP6eAnemhpMo,75
671
- cirq/protocols/json_test_data/Points.repr,sha256=wer06uz5U-DmcP2tNx82UpfOrHcGLLXhKUHqci_MIPA,26
672
+ cirq/protocols/json_test_data/Points.json,sha256=GNCyYvsJqDwWzAYMtZ7xOXb7V7W92-uKOZXTW0SAZds,269
673
+ cirq/protocols/json_test_data/Points.repr,sha256=lu59UtH-fJdBZ63pycWOyVAYg0sZfFHjqAvfmcbFj6o,107
672
674
  cirq/protocols/json_test_data/Product.json,sha256=MJDuyFnoWdanmKRisswWNcQ-Ma3LA2NczLQRTSzNz9k,277
673
675
  cirq/protocols/json_test_data/Product.repr,sha256=qrZLz0E3ibSAbdFOnlNhoYciOqU8EhpbX0scqEz73Dg,107
674
676
  cirq/protocols/json_test_data/ProductOfSums.json,sha256=L7tvSt3w6hjqcqt6VFonRybF6oAMCO5n1bBfOqa4xjU,101
@@ -693,11 +695,11 @@ cirq/protocols/json_test_data/RepetitionsStoppingCriteria.repr,sha256=mRdW3VnxB1
693
695
  cirq/protocols/json_test_data/ResetChannel.json,sha256=XopXjQRJPwy4EIEJ-fxxsCo6v_zUsOp8tfvjxLB8Mfg,51
694
696
  cirq/protocols/json_test_data/ResetChannel.repr,sha256=y_DTKiB-gSoZK8cfs56ryByM7nvMOosVFCv_ZvzAonA,19
695
697
  cirq/protocols/json_test_data/Result.json_inward,sha256=9Zk7D0QYXO6ON8BRizgzPh9IgcqFmNY8jzej_xiIyTk,7908
696
- cirq/protocols/json_test_data/Result.repr_inward,sha256=v3a1LahWeZKN8oKqcl-XvyvMw3_f2sh9n0xQkSkddzw,1832
698
+ cirq/protocols/json_test_data/Result.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
697
699
  cirq/protocols/json_test_data/ResultDict.json,sha256=7v7OztzxmNHNvjMvPC6A0l9mGyyXXZVFLruevDI4oQg,8053
698
700
  cirq/protocols/json_test_data/ResultDict.json_inward,sha256=Dt21hALykx1owFtqYzXFS_IRT-ZvIb7pNAkQv70Ctpo,7952
699
- cirq/protocols/json_test_data/ResultDict.repr,sha256=jY0Mp-9g1lTDYsD9LOWOV70eZhWNN235xupiSXB2Wng,1849
700
- cirq/protocols/json_test_data/ResultDict.repr_inward,sha256=v3a1LahWeZKN8oKqcl-XvyvMw3_f2sh9n0xQkSkddzw,1832
701
+ cirq/protocols/json_test_data/ResultDict.repr,sha256=Rg_YVj0A-lvjkUVQLjITfupNaZ8ZeImVnvo7AZjG1WU,1861
702
+ cirq/protocols/json_test_data/ResultDict.repr_inward,sha256=GreSFKnZrLGQZHUt6444JzmlO-PtRUQL1W078WoYsMs,1844
701
703
  cirq/protocols/json_test_data/RoutingSwapTag.json,sha256=aMYzQBB7FV2xYSkaqZCKGD-hMr1wCup0bdc9odMwYzs,36
702
704
  cirq/protocols/json_test_data/RoutingSwapTag.repr,sha256=jg-0sfn_2E2LqxrffPB6qpB7BB4Mz9bfVwQsfb465d4,22
703
705
  cirq/protocols/json_test_data/Rx.json,sha256=M2FSXDaSdnc4VLgS1a0fGB002JASCF1PGt0st6No338,53
@@ -749,7 +751,7 @@ cirq/protocols/json_test_data/ThreeQubitDiagonalGate.repr,sha256=pBPE3IfuWgPtebL
749
751
  cirq/protocols/json_test_data/TiltedSquareLattice.json,sha256=A7hGSskEasyAu-o3PBsRlFzFrRgpPOuuaFRNGns08F8,69
750
752
  cirq/protocols/json_test_data/TiltedSquareLattice.repr,sha256=zQir9B6BBbrIGKYiVAdnFstEBii5Q4AojSPYvXdrDJI,44
751
753
  cirq/protocols/json_test_data/TrialResult.json_inward,sha256=4Ab89MBflxH1yJMw31DkITTVLpRp9KDiv6VXksDca8s,7963
752
- cirq/protocols/json_test_data/TrialResult.repr_inward,sha256=TS0g7VEajDa5NoV8SLltvRm5cHanA8HBFj8vAmdKUS4,1834
754
+ cirq/protocols/json_test_data/TrialResult.repr_inward,sha256=7Dh72uey8KFCYabUIAlQYJhxpO8N4Iw41z44ji0Zgp8,1942
753
755
  cirq/protocols/json_test_data/TwoQubitDiagonalGate.json,sha256=IBdqZq_rM-rmW2k3G9cf9fW5BSgjgNbaNKk2EhjQCfU,109
754
756
  cirq/protocols/json_test_data/TwoQubitDiagonalGate.repr,sha256=jSNbYpfBtGObgCq2WDqZiMPwDkUiycT8NE14Pfim45k,68
755
757
  cirq/protocols/json_test_data/TwoQubitGateTabulation.json,sha256=fbiJdPGLwHGBcVYG-oZFCORG7QuNQmA6MfReqUtMcCQ,12038
@@ -768,8 +770,8 @@ cirq/protocols/json_test_data/X.json,sha256=J04Nvrf7z3XSsO8Bo6M9vlEuBVpnNNbAf-pT
768
770
  cirq/protocols/json_test_data/X.repr,sha256=-aRvGMrV63KbtLXNe1Yopej13KJGWbUtPk2p1cixHdQ,6
769
771
  cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.json,sha256=xX1bU6phU78ftaTQYXZdyTvMGfqz7DJOFvqVK2S635c,317
770
772
  cirq/protocols/json_test_data/XEBPhasedFSimCharacterizationOptions.repr,sha256=TxzEMzHVcjMpzBOxHxOVpLuFH9AsJlsN664ckGhHaQA,263
771
- cirq/protocols/json_test_data/XPowGate.json,sha256=hJ9qJR-7dAmBk0CUA-YlHMVeiU1kigktzOUKmUabrqk,73
772
- cirq/protocols/json_test_data/XPowGate.repr,sha256=FziPSDw74hkoJnnCQ3JS_K6_8G7c7WgUotI9GIb1tYA,15
773
+ cirq/protocols/json_test_data/XPowGate.json,sha256=B5Qwp1ymyJafCOJPZcop-llaHnPI1AYRRcVaSpqu21I,192
774
+ cirq/protocols/json_test_data/XPowGate.repr,sha256=Rd5IQsO60R40kQhtmzfiuHJ97mny9t-_ODup5JGykuw,61
773
775
  cirq/protocols/json_test_data/XX.json,sha256=aNryR4CwOwb2JROMElYJN_E2C3mOKmqYLFeJAFCEwzw,70
774
776
  cirq/protocols/json_test_data/XX.repr,sha256=NTwZnJd6uVeqWF7yd6PWEESp0Qlxx5M-T4iSHkQ84nw,7
775
777
  cirq/protocols/json_test_data/XXPowGate.json,sha256=AmnTH_2yIy8c-rt8WC4YZWmbV-WWJCJrxhgzMxH-NUU,170
@@ -784,14 +786,16 @@ cirq/protocols/json_test_data/YYPowGate.json,sha256=GW6e0KcTfVxBOjqY8MZ2RZPXnU_9
784
786
  cirq/protocols/json_test_data/YYPowGate.repr,sha256=cJg_5p7y2WLYAwbSRWHPBvKIHx6CZF3oYshjO83Q7Nc,27
785
787
  cirq/protocols/json_test_data/Z.json,sha256=ieNVrFbjyt3Vgj6nWCZvJ0iwsuAeNscz6zRfaHBpapA,68
786
788
  cirq/protocols/json_test_data/Z.repr,sha256=Esepg9w9ld9F5bSSzbY2VfVe5174Ul42nAefRZ3gmdM,6
787
- cirq/protocols/json_test_data/ZPowGate.json,sha256=BGyjupaT9urtGxHXsTLy1-mSvi8SxUMjDScZJp-00YI,73
788
- cirq/protocols/json_test_data/ZPowGate.repr,sha256=YHuA1feV1ui8NFRdBg6agk-iLMWsj5IOmwUymKQMbBM,15
789
+ cirq/protocols/json_test_data/ZPowGate.json,sha256=wX8aUqY_A0i9nbz9gzgp7r_qVk7BsAneMq9kom3V3fg,192
790
+ cirq/protocols/json_test_data/ZPowGate.repr,sha256=qRfL7Fg9Mv02nGtaAJNLzhtL4l6QyZ0v1C0N4A0kJtM,61
789
791
  cirq/protocols/json_test_data/ZZ.json,sha256=VaYRetX-YoVEt8d0N2TO4-IWFeiRj_xH8AGnPfgAjHM,70
790
792
  cirq/protocols/json_test_data/ZZ.repr,sha256=hANyYzdHlkmvVAFJU-erxF6CGJyDQrrHeMWXlJg0WvU,7
791
793
  cirq/protocols/json_test_data/ZZPowGate.json,sha256=XWPJnsaryyYIfPiQA6ln00Ie6p-G_ykN3MSX9ASfRp8,170
792
794
  cirq/protocols/json_test_data/ZZPowGate.repr,sha256=_5zZUxhZ2n9V5ulQ6sO69sFEi7X8_T4Z_HEQtpD7BQw,27
793
795
  cirq/protocols/json_test_data/Zip.json,sha256=3L4Lazj5oksJCit2cvXhwnNJSDNh2kCGtcCjoUwVQes,272
794
796
  cirq/protocols/json_test_data/Zip.repr,sha256=xlnQ1-q0aTS9t1mMO7vdCSj14QAuff1kTMCTX7TvzIk,103
797
+ cirq/protocols/json_test_data/ZipLongest.json,sha256=NEPlMm8IPrDHBrvyASwq9IZu5fROzqG5u9PiTbe8vXM,280
798
+ cirq/protocols/json_test_data/ZipLongest.repr,sha256=F-Ds7_1eqKgis0YvJqj3LwiXbkH8ZdP9k_ThmWsJL4k,110
795
799
  cirq/protocols/json_test_data/_MeasurementSpec.json,sha256=c03X4XXcc9xz8rqLHnlUeEI74JeDcT1AuafZUyqNOtg,1288
796
800
  cirq/protocols/json_test_data/_MeasurementSpec.repr,sha256=RO09cD6h-Th8dwtERQ6bPW8tVZFFUW8JngAzc-ASib4,285
797
801
  cirq/protocols/json_test_data/_NoNoiseModel.json,sha256=mgmgKTFYinC7Jy6tyVtLzDlNAs57OtgImnGLS3D__TI,44
@@ -825,7 +829,7 @@ cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJ
825
829
  cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
826
830
  cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
827
831
  cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
828
- cirq/protocols/json_test_data/spec.py,sha256=vzuYnSWrum-rkYMA-pVpq5VFDnZPlj9O5xo2knBY0B4,5378
832
+ cirq/protocols/json_test_data/spec.py,sha256=HhZ2jRnwkZfqtyARTnawrEjd7oA6UTSLgHuVUJQxAvo,5410
829
833
  cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
830
834
  cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
831
835
  cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
@@ -859,43 +863,45 @@ cirq/protocols/json_test_data/sympy.Unequality.repr,sha256=PsC01doMaEuySfnFUQhHd
859
863
  cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
860
864
  cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
861
865
  cirq/qis/__init__.py,sha256=f5U3udFQirbLPKcHsVO6ViD3uSwe81Bei1wQdSbq2HE,1583
862
- cirq/qis/channels.py,sha256=TkBHWSZS-ySV0erXPQMwxwt3dW0VpzZZ6Rr-AZOgc8k,12786
866
+ cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
863
867
  cirq/qis/channels_test.py,sha256=iqkSyfvx_c2ZpJKAVEsFyZRmKpzNrJsyFjHbaJUMqcQ,14454
864
- cirq/qis/clifford_tableau.py,sha256=V4wht5CaRGLALA0lUa9RGm8lM6I0QhF1mQtEX4bJoGw,25194
868
+ cirq/qis/clifford_tableau.py,sha256=YG_3EXcJibRgX_HvlSCcTrMVvdqPkPUVQdt1_qf79R4,25185
865
869
  cirq/qis/clifford_tableau_test.py,sha256=Z-5YSysJw2H3AfgZxhptvUMr5GUjUFgPcAUdcust9Qk,18441
866
870
  cirq/qis/measures.py,sha256=oJVM9GN3bYSgPYqE0KVaptpflTNZYIX_fzws1AS4j5k,12197
867
871
  cirq/qis/measures_test.py,sha256=3LTTGdvuFfZWmFyWFeUHpg1yGc9z0VE8j7Kd7J7y8i4,10092
868
- cirq/qis/quantum_state_representation.py,sha256=Pmz0DZDlCloDEFtGdqHeylPKdU7nzKIq7mzzK936NYA,3321
869
- cirq/qis/states.py,sha256=errDcz4Gw_CoEs5ZTKh3rwX7ZL_Vgk9NQhbnhsXZFm8,41669
870
- cirq/qis/states_test.py,sha256=-_6TO74hKSHcwdNYAA9SiIXbpC2rwkSO-4yNNOEOoQM,31513
872
+ cirq/qis/quantum_state_representation.py,sha256=5ybXGqjGSpSZqOn9q6OW6IBOmJs8KQekv5fFZZMCqZQ,3238
873
+ cirq/qis/states.py,sha256=KWV5uFwpXAQGZ2VwZdS-246Nxj7XHVS3AH7eCgiOPpQ,42029
874
+ cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
871
875
  cirq/sim/__init__.py,sha256=k2vuvTMqNvYr8yd5mvi5028e5z-vMDmJ1sML60HHe2Y,2276
872
- cirq/sim/density_matrix_simulation_state.py,sha256=56s9rWNf0ZJnxt4lnBNNRiuYAMBwly4JiC98x3mbcBc,13477
876
+ cirq/sim/density_matrix_simulation_state.py,sha256=AFJoQGXkAFYyLW0wZmOZnTb2ePSX2wiTVeY6qFoB5eo,13470
873
877
  cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
874
- cirq/sim/density_matrix_simulator.py,sha256=tgZkWhuFU4ksqsnruyFnLfsfPP043vxwSbanUD14DK0,17459
875
- cirq/sim/density_matrix_simulator_test.py,sha256=3GXD62XzJdWtK5ntmjE6hsWqhngEyBqY9KoWqRcHgiM,61206
876
- cirq/sim/density_matrix_utils.py,sha256=gy-Prs9iXN3bXlXHc04vtoeT34EdAoAxnmOzt95_GB0,11186
878
+ cirq/sim/density_matrix_simulator.py,sha256=-BIY8JjmzAJDmF6tWcv5lbH1yS7UQIlKicU1AJgttfA,17462
879
+ cirq/sim/density_matrix_simulator_test.py,sha256=xeXbdCw1QpDE-sL4nL1RZUrZguWhk7p-7Kto-SZeufM,61286
880
+ cirq/sim/density_matrix_utils.py,sha256=9Fbzh0c9hzwEff383YwRit2K_tvlpT4Vyq3rjLijRyA,10273
877
881
  cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
878
- cirq/sim/mux.py,sha256=ByvgNMIubO-PyPR833MgEcbq2GpT7SF_IA2w2G1hu2g,12481
882
+ cirq/sim/mux.py,sha256=ysXjeMddmNaaG3twkGBqJqLLQa_Pm-Y9c6yeGLpYbxo,12469
879
883
  cirq/sim/mux_test.py,sha256=uJUUnE9qg10rF0pGWo_bAWhp8JzsmOGW4hFRZeTKwdM,13680
880
884
  cirq/sim/simulation_product_state.py,sha256=3qEz1mEsIcWiG_i1WVNTs_CVzN-nO0XWdvSdIvL9s0A,6699
881
885
  cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
882
- cirq/sim/simulation_state.py,sha256=Fmt846mV2mzYU2JMDKFhFAQ0Hk-7thP5qLYR1z5vWfg,11223
883
- cirq/sim/simulation_state_base.py,sha256=_ubOYNHsrmwZ1JY0vSyiOEMYrPMyTl3jNEtBHWhBZgw,4175
884
- cirq/sim/simulation_state_test.py,sha256=_B49uNxFeQie2YgmG3k_PKpoqL-_OBor8K1VnaOVg1o,3045
885
- cirq/sim/simulator.py,sha256=ovRBkYfFZaiZew1NkFA7aoWofwwxw5PV8LDW8Pn6F9g,41849
886
+ cirq/sim/simulation_state.py,sha256=ARvnXjw6n-GqPV07ZQMC7rLEgm4GDNhdTUItXRZ-TeU,12626
887
+ cirq/sim/simulation_state_base.py,sha256=95FDt2omBxU-3KXwii6KCKMC9MtXRc1ZtnLZRE8vI0o,4196
888
+ cirq/sim/simulation_state_test.py,sha256=EeL2aqrsycDur4i-KDAr9AYV3G1Ij4a-2g4QMaRGhks,7524
889
+ cirq/sim/simulation_utils.py,sha256=74Jvi2m4HcRo0i1h7MNvul3Ho0Io8HW0KARA3Ntjh_4,2553
890
+ cirq/sim/simulation_utils_test.py,sha256=1YCuaKFf0JfOqdEbdYE49wlNWmhmtQKUQMIij6YyiDo,1333
891
+ cirq/sim/simulator.py,sha256=lTUcub_HJC5BYvkN8ysqzHHkUHxloncEQm4fMJZ1Dls,41875
886
892
  cirq/sim/simulator_base.py,sha256=5Ka5UlHK2bmwRhORUomU6OB9tMfaxTRvzN7EUyS2_bA,18178
887
- cirq/sim/simulator_base_test.py,sha256=oS9PIjJVEJuQVfA8SHhcYiuc-OkRWAV5frPVaBLVSFY,15006
893
+ cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
888
894
  cirq/sim/simulator_test.py,sha256=UxWgHcPfKMNqFAVPmH2bHAxofDbM5uFDBi2lgCetMWY,18249
889
- cirq/sim/sparse_simulator.py,sha256=cF8d_bgZKlhyXWONV4aLZVcrWXbOtNcDMMnDppuRNwY,12851
890
- cirq/sim/sparse_simulator_test.py,sha256=Oa9huPKW4g8Cqr8yBqLbHQugwwiKALLzE5wgtsF2Mwo,53617
891
- cirq/sim/state_vector.py,sha256=-MgVR951Cjq8LC9VcYPJh22Ci0XVCMF87UFBhNH8jnM,14426
892
- cirq/sim/state_vector_simulation_state.py,sha256=6IVFhLQTi1kwvdx66nEz2n1attRYdgMyd-7mLc7Up0I,17026
895
+ cirq/sim/sparse_simulator.py,sha256=OvVjqNk5Kb92DM8Nrdw1BGOB7GFlT6yiXwIPpAcLV7I,12854
896
+ cirq/sim/sparse_simulator_test.py,sha256=3EAeCHUQeKllAAtdw14X592zBsGQY_vwfIYK-gEr_zA,53587
897
+ cirq/sim/state_vector.py,sha256=N6N9EELlW66UaLTBaq62ms0XkfIK7CzN9SBM7t52dXo,13428
898
+ cirq/sim/state_vector_simulation_state.py,sha256=d8t6tdcSXxtD-f1wgPWvgv6NlVY4bv5Wcd06T_GeJhw,17624
893
899
  cirq/sim/state_vector_simulation_state_test.py,sha256=UtGMIurlV6N74nX7qoVnGoRhwF35-ghDEIP7Mj5AXmI,9841
894
- cirq/sim/state_vector_simulator.py,sha256=d_6s5cBgUVCSCgx6yxzKYlbRp-e9BBfFmlZetN8MIS8,7465
895
- cirq/sim/state_vector_simulator_test.py,sha256=bsXIeqoPXMFc62CoraCwkYNe5rmqFKbpH9p66beTj-Y,7080
896
- cirq/sim/state_vector_test.py,sha256=5VQx75clagRO5tsjZFUtSNUHxbjKvrad8DSnoXiClXo,14720
900
+ cirq/sim/state_vector_simulator.py,sha256=L2S0xyUGqRcVgYdzYef0gVREVZVIDcCXPclVbIJEpPE,7529
901
+ cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
902
+ cirq/sim/state_vector_test.py,sha256=OjhAL2tWqJWstHV8RvJYQVqg95zm0PcS9nQKrLOhMmQ,16934
897
903
  cirq/sim/clifford/__init__.py,sha256=lD7l6JuE5n0xwvOYNYH-giCH3qAEVH1SUwDrZM1jKKY,636
898
- cirq/sim/clifford/clifford_simulator.py,sha256=6M69sv6IbtJTOk5ZE8CGWiILf6Ee2sCEALiZaw9NmvQ,9735
904
+ cirq/sim/clifford/clifford_simulator.py,sha256=V4rExIDeijZ-sjMAyS_dDt5aE-RIrzTWpwF3EnSujto,9732
899
905
  cirq/sim/clifford/clifford_simulator_test.py,sha256=sALe6HZTRRLJVNdVm4E2FY1lkqio5U-SKCo3d4lTN20,20242
900
906
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=fNkK0gZgfWIvMknGiCr4BjGO0wVYGW1Rc0pnwluerho,2160
901
907
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
@@ -907,39 +913,41 @@ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=ElRCY1nOvXJQX5ccycV-Ak26
907
913
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=dsphoXTaIwRCjprGJQirSs0qeVKHlni_pt_GZJn5Vpc,4317
908
914
  cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=Qz0nTFfEIklQzkx16AvFxKkkczr2Rr17K9WW-fUvRkU,14034
909
915
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2xpzUT7RG6P6UQw_61c6kU,3149
910
- cirq/study/__init__.py,sha256=ueMkwjeGCCBzqdc8UxrA6DoSADx1KUg5jksjiXkZ550,1188
911
- cirq/study/flatten_expressions.py,sha256=ZK2HgvKBzakFdVCxlfYFpkYKZ4_WI-8YfRlYJTa5J88,15628
916
+ cirq/study/__init__.py,sha256=HTGcCkU8ex7t1etgDtE4l9oanjI_P3UtWKWzb_tw4mA,1204
917
+ cirq/study/flatten_expressions.py,sha256=LIePrTJJW3PfdQS2jJ-DxhjpuOdwdBZi0WbtXHf2qmw,15638
912
918
  cirq/study/flatten_expressions_test.py,sha256=6e7pTkaBrZW-EmG4teZxcwemqnxCtJW3kq2KOlPcwW8,6078
913
- cirq/study/resolver.py,sha256=OhYa9wqlM58Yoqq473RW7aROgiGpPeYUaYwxGC4TkPs,11661
914
- cirq/study/resolver_test.py,sha256=utPImQ3EfOOmaI6mFTcwQIkJg9nmD3ZLpjFJGFQemEk,10367
915
- cirq/study/result.py,sha256=4c65p4h5JjoRkazhZ6BUnb8JMqffUzkytKB638x6tpA,18771
919
+ cirq/study/resolver.py,sha256=sFMiYItWwNAM_gda0XrhPUq_qhGJAqjyAi5j03JHZ4s,11736
920
+ cirq/study/resolver_test.py,sha256=f-OY9qfO49UJuCtGuCU7CxoWotCxgicS8PT8IFu_D0g,10296
921
+ cirq/study/result.py,sha256=rvExmeYnHbFKKkRU9zdBtxrCm8Y4B3UycZf62QTeOP0,18772
916
922
  cirq/study/result_test.py,sha256=3hmwqehcv-LukZtrUY3q1PAQlawPKXDraiTeElKvDWI,15347
917
923
  cirq/study/sweepable.py,sha256=BMgq8lxVnyJGBeu4gFUt_0P_v4gFwKgazZFftRUEwnA,4185
918
924
  cirq/study/sweepable_test.py,sha256=xjUksIurfbh240fEC7Al_TuiHGz7xZGktQUh86XBG9U,4772
919
- cirq/study/sweeps.py,sha256=ByQyGi0sGzQlaUqbbMmwqo4gLgChoU0L6RMedANKCW8,16384
920
- cirq/study/sweeps_test.py,sha256=1BbR2JiCxugBI3YOb6KWewBhVY9E01_yUfXiCrHU3KM,9561
921
- cirq/testing/__init__.py,sha256=nJTO5qjZoStFDoTSK2elK3l0BnOvL0MHqqPAcLQ5kDA,3605
922
- cirq/testing/circuit_compare.py,sha256=dmUGmLdnjCYjarvyFegarBI2mbr01o8CBd2HCmVZtHI,19261
925
+ cirq/study/sweeps.py,sha256=IzonyU-LgEcMpvQrKZbl14v-BHi01oncp9CmHtLw0J4,19813
926
+ cirq/study/sweeps_test.py,sha256=IqZp0ywYA430nNE_slBfc4vdKjULttzPl8ytxHLlgWo,11966
927
+ cirq/testing/__init__.py,sha256=fYJsFpYtz_4JY3ClCh647oZY7ev27lebzwJ4hXDevXQ,3765
928
+ cirq/testing/circuit_compare.py,sha256=au6hSLsK5NB-8u4P6os5g3EnZskq07-zeSgJBNDgBPQ,19175
923
929
  cirq/testing/circuit_compare_test.py,sha256=6Xw1hrBUDavhji_ygpCKLBHUt_0melvy2VTjH2VcJwk,19743
924
- cirq/testing/consistent_act_on.py,sha256=DjeClJcoX4u7dCqxFNM7myok1EJ_i1RzlATmknACSUU,7756
930
+ cirq/testing/consistent_act_on.py,sha256=ofYxdotw7fDfEVaAoM3NJEG2-hTHmi5FlLZkLYfVBWE,7733
925
931
  cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
926
932
  cirq/testing/consistent_channels.py,sha256=hrPRjaabPko2l0xqqkJ8F3OM7pornkDNCP-St2noHXI,1737
927
933
  cirq/testing/consistent_channels_test.py,sha256=Xpm0KA5ArxGKh3h1GJ9sdDrLuyDCrnkVZgzPZOQYsTY,3485
928
934
  cirq/testing/consistent_controlled_gate_op.py,sha256=mU3h3OtpPzqntRcKn8SqaaYU_evw2MpoB_jQywECsnI,2206
929
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=SYTRvvvBgx3ebCwQC8Rx6bJJJewO3AKxwvPwOUexYzk,2931
930
- cirq/testing/consistent_decomposition.py,sha256=srPFMIHTXv-sxdQQC99b8kX4wLn4E7zYAA2gopv-SIg,3325
931
- cirq/testing/consistent_decomposition_test.py,sha256=-GpUKAjMdKUKso_5xNbgqg8d0YVuI-r0_PWGEkwqoq0,3531
935
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=K2oqmMQvMepQ_SM1sre-E7wNeQlCATKvuGG7rwJUhGQ,2941
936
+ cirq/testing/consistent_decomposition.py,sha256=UxXW0Mn6XyDcVtL5-JcPC2f7BAkndyU1HNokQj8PB_Y,3731
937
+ cirq/testing/consistent_decomposition_test.py,sha256=6GUPhZQI4FVHM9fYZbHr62-TrwiK0jOPMTOznDellFw,3820
932
938
  cirq/testing/consistent_pauli_expansion.py,sha256=NVloOg1I8LGGIEoZxvtUQIUHRvMgo9CNgw5-atuXGsE,1580
933
939
  cirq/testing/consistent_pauli_expansion_test.py,sha256=Gy95osE-L4uQs1E1oxAKHCgVguXl-hjI5UNQJW5cEdI,2402
934
940
  cirq/testing/consistent_phase_by.py,sha256=oSZcZnKMOIJnBS0HgYi-8aRaVJmHGgI--WAUGC5JxQ8,2085
935
941
  cirq/testing/consistent_phase_by_test.py,sha256=YbI0n0FpWpBkbgYp0-yGZSeesDZEst0cmYtXgJE2LQY,3273
936
- cirq/testing/consistent_protocols.py,sha256=9apl2Ed1j2FeWDh-tPNOdnGQhOLbwmSojINPD3YL1OA,7473
937
- cirq/testing/consistent_protocols_test.py,sha256=HIu3ui1m0BGQU-nKip1str1oyHmzNQmzWPvbcLCLNY8,10029
938
- cirq/testing/consistent_qasm.py,sha256=CIbpiH-xHk8-rHpgLJB2LvU39y--rwdna_GLbA9G438,5093
942
+ cirq/testing/consistent_protocols.py,sha256=dFixwCjCeXmu9EXv4QjIUBXnl1K1UYeMjBUQcZgBD_o,7629
943
+ cirq/testing/consistent_protocols_test.py,sha256=mvvwdMolcVBgsNuy2_zplQHFFd89-gvFnkoMu_zotuQ,10075
944
+ cirq/testing/consistent_qasm.py,sha256=Bro7TDUFf010Fny1ueIehVYqQUjVXxq7vQY-FbYTkZ8,4953
939
945
  cirq/testing/consistent_qasm_test.py,sha256=PGXPXexT6sjbbgKdouWWZ9pyXvwRA0HaMrtUzE-yyiQ,2890
940
946
  cirq/testing/consistent_resolve_parameters.py,sha256=hYbp6kbXrOLCc1DMDRC2zTAx1qlvCCJMuzZ7a5cGhmA,1973
941
- cirq/testing/consistent_specified_has_unitary.py,sha256=Onn0rONGIo0jHLq3avQuU0RtMr8dt4c9dmYm7cwlS9A,1140
947
+ cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
942
948
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=qMar7K1CoubcX_rl9i3iQdI-LpF-OxvY8V4h7k_f26A,2571
949
+ cirq/testing/consistent_unitary.py,sha256=JWUNy4HeWbs4JjPm6kLTKfqNq1wP2e3WYQxpDabkfZU,3247
950
+ cirq/testing/consistent_unitary_test.py,sha256=MS0cHzR7gwy4zM_AHiYqNErj7bhqmQX78eIuaYORO6Q,3260
943
951
  cirq/testing/deprecation.py,sha256=neyww8gBZZmgwPX8xPw8Mg4HgG0OXwSixhOAHnIU2ks,2152
944
952
  cirq/testing/deprecation_test.py,sha256=bWq_VY-rGnfvdeJVqdkMIDzMtxQRj9rdR6gu0kCHtzo,2166
945
953
  cirq/testing/devices.py,sha256=fA0rcpZxMU0fVObtLcsDJa4XS_QBzi6uH58W0PAYOoA,3259
@@ -948,23 +956,23 @@ cirq/testing/equals_tester.py,sha256=i2hjRMI0ZJSmZjEQHJBUrLm3xzOYafQL_yyB0VJNbbE
948
956
  cirq/testing/equals_tester_test.py,sha256=eykufbD_8B15SYKVJLOSEWNofgCbjgcPo7TJTUbymQk,10265
949
957
  cirq/testing/equivalent_basis_map.py,sha256=pUsJtO87hUGyAeGXR_pSKKkQ72vltsDj01EObxGh5g0,2632
950
958
  cirq/testing/equivalent_basis_map_test.py,sha256=Wiz0AzdU4JMBUqgwgEts4yu2Zwi9GyEuVyYRRzEfbXI,1488
951
- cirq/testing/equivalent_repr_eval.py,sha256=FRven-jO24DpBKywHqG4Yy38vFYEzNEZigc7L0_8Yjs,3411
959
+ cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
952
960
  cirq/testing/equivalent_repr_eval_test.py,sha256=dp2Yg66HtCCsyZzjIu57dp4jz3RQdc6Oe06ERNiqSeE,2972
953
961
  cirq/testing/gate_features.py,sha256=RKmctzrmDl-q59pYkkriufOobFDHYnSpTDCYatLIWhQ,1125
954
962
  cirq/testing/gate_features_test.py,sha256=oIOpgpy4Z8TbQrgcZCKitYwMf6W1aGDy_W3yMlYCC1M,2156
955
- cirq/testing/json.py,sha256=l1G2P7E1YR17i0lyY5mPBGR3RZDKxZCi8az8u77vre4,6632
963
+ cirq/testing/json.py,sha256=is5G95eKX4QirzElQxAbxXBf-zF-N9G6I3ptjL0Ne64,6646
956
964
  cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
957
965
  cirq/testing/lin_alg_utils.py,sha256=1cvYZXSNygnpB8bU1TnxHN-ez7DHYeEEv91D8LKjfq4,6227
958
966
  cirq/testing/lin_alg_utils_test.py,sha256=wtQGhHdIGe__4lL708arpN0n-nNjGIlATpsXHlkI_eM,4113
959
- cirq/testing/logs.py,sha256=y3Ub6SO0CYdfIpK87a1zB63Tff67JPB2u6KBSUmvePw,4052
967
+ cirq/testing/logs.py,sha256=0nTTrOQX-T5rspj7kZxtGsqPQg06ZddRAyABT03tYrI,4053
960
968
  cirq/testing/logs_test.py,sha256=iBFaO_cwddBlaCYhX13GL9nqRBWeGPekT9hAuZOo1CQ,5719
961
969
  cirq/testing/no_identifier_qubit.py,sha256=aRnTp9a7BQguSdZzcGV4_W-1URjTHTYsa-xxov2H4_o,1195
962
970
  cirq/testing/no_identifier_qubit_test.py,sha256=mNjvPIqh-G_t8TsWIa3-9J2i4rqpt9CndKDBb7dnz6Y,941
963
971
  cirq/testing/op_tree.py,sha256=fb3bOoTihGWp_NvPHekI7s9YZIaBoiufDVhh4ARCfhQ,954
964
972
  cirq/testing/op_tree_test.py,sha256=MwDpi5Lw1e3Y_-9Psx9MPvbbW2x4JlOpp7hl8mBvOQA,1073
965
- cirq/testing/order_tester.py,sha256=rkgu7lB5LvweXx_VVqq89Jh1UBWD-yS_tMk-lhNy4vU,6731
973
+ cirq/testing/order_tester.py,sha256=0_tfixWyX_HrjTXpNrVFZT9bA6J585Ad8tjS-DsX8yU,6690
966
974
  cirq/testing/order_tester_test.py,sha256=lOrkG39ryWg8lbeawhq-UmJWX9zv8oKY-bO4MtknQr8,5119
967
- cirq/testing/random_circuit.py,sha256=rBu5-kN4REyANwSFhHKLTKyo4zkRrkg7N2ogW-1uvLU,5936
975
+ cirq/testing/random_circuit.py,sha256=oMoz0_VWWVmUGmJ9mu1R7NByNKtSadxdLjFyDEE1qT0,5900
968
976
  cirq/testing/random_circuit_test.py,sha256=CZK7SVzpnL1lEywyXjhGtBs2vrO8rrftnCue8S51KoE,7042
969
977
  cirq/testing/repr_pretty_tester.py,sha256=dtk713qmE87Biaez3c8R83Wb7tlb4xWFfzt44iKkbto,2899
970
978
  cirq/testing/repr_pretty_tester_test.py,sha256=wvwqD72hnAJe7Vg90goZ1Voz5PNGtWELOxAyEn58ivo,2226
@@ -972,6 +980,8 @@ cirq/testing/routing_devices.py,sha256=uIm0j7GcChiHog9-c7kyIw9qdfBEmLLETRF37UwLv
972
980
  cirq/testing/routing_devices_test.py,sha256=iyNZp3J8fUt8bOktXZNhDgxR6L8UBRphgzYmDsmHvTw,5598
973
981
  cirq/testing/sample_circuits.py,sha256=8HTrY_RWoPHV18q7aLz6e5Fjd2Twkt9Wkc_IDBzTE1o,1585
974
982
  cirq/testing/sample_circuits_test.py,sha256=IMz72CMXJeRt7Eg1rRB68hFV1v3k7OQpYUyhqmfjNpo,876
983
+ cirq/testing/sample_gates.py,sha256=qSCZhb-A-Mwm_J81Su2sUFyEUdvqfq7Je66dsk8cFy0,3277
984
+ cirq/testing/sample_gates_test.py,sha256=mkfYPNo4WFH6y33Vr_f9zy2Ry1oq5yYLpB__sqSCkjQ,2377
975
985
  cirq/testing/_compat_test_data/__init__.py,sha256=yIe0dUE7-FT1bxYjc0hcoOZQkecBdYN5onC6KOpsx8U,3040
976
986
  cirq/testing/_compat_test_data/module_a/__init__.py,sha256=klpfbI8BVz2BA5TwhUDGqMSM0Sjw6ABIA_4hpyADHaE,386
977
987
  cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
@@ -991,7 +1001,7 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
991
1001
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
992
1002
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
993
1003
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
994
- cirq/transformers/__init__.py,sha256=2mFfkwJxlVQBpXvaSrOJL8jy2yImOjHWhnfIPtacROU,3679
1004
+ cirq/transformers/__init__.py,sha256=FEYuMxJSn1mW_616HKdb5Ruf_JDNFIjZKPtHTNlJdQ0,3743
995
1005
  cirq/transformers/align.py,sha256=B4DuX84DWd4tLfMH21JviMZSOFYu7KCOMSEMALYsQpw,2727
996
1006
  cirq/transformers/align_test.py,sha256=M4etT2cgESv1RdkKASguiGxEuqY7kmI1IswjSi-1jjY,7174
997
1007
  cirq/transformers/drop_empty_moments.py,sha256=Rtn_BrpwkLXyZBdLzwdnsnEGWTdYuf1xOPakzbpv7-w,1517
@@ -1002,49 +1012,53 @@ cirq/transformers/eject_phased_paulis.py,sha256=mTgRT5aw5_c9ccTkP4Np_4YTWnLzxsMK
1002
1012
  cirq/transformers/eject_phased_paulis_test.py,sha256=-mXsfbi3V0ojC_YqoQM5otzdW4kjGusCx6F-kCv8M98,15834
1003
1013
  cirq/transformers/eject_z.py,sha256=0kOyvh6FDfrCrrTCVfpHKNc_kNC_pBdEKoXv11kuqGA,5803
1004
1014
  cirq/transformers/eject_z_test.py,sha256=U0BMdW6nW1cI18I5tE__1YpCvtzDwYGECgqUph5Fc8I,13302
1005
- cirq/transformers/expand_composite.py,sha256=q05VTph_8kFHijJNFWoUpXjrBQ9R3Cdmw-Dz8XwWk9g,2391
1015
+ cirq/transformers/expand_composite.py,sha256=nASRoP4qfjsnX_t2a2hBw8BE7B_JD-0XLGIIXxbIdbc,2387
1006
1016
  cirq/transformers/expand_composite_test.py,sha256=9FlQigi57XjYhYzvrh0-H0YxIrOoaRB3g3-hNbsc_X4,8632
1007
- cirq/transformers/measurement_transformers.py,sha256=Ow_G0N3h6snzaOJ0Vd6f599UFkLfdURxVAyDCK7HdNU,18934
1017
+ cirq/transformers/measurement_transformers.py,sha256=m2v4FAEaIZtYXEh-rFzxa_sx-syqdWZmCbf6yar0GSM,19035
1008
1018
  cirq/transformers/measurement_transformers_test.py,sha256=tkuevHQWnFWmxmvfJZ2T42uCIw4oaYyZ4XvjRGFGdug,27504
1009
1019
  cirq/transformers/merge_k_qubit_gates.py,sha256=dUsswQOIHfbb6Lu37fecgrpT6_45zmDE7eqCUbW1KOI,4390
1010
1020
  cirq/transformers/merge_k_qubit_gates_test.py,sha256=OFiTXms9EBYp1VJJ0NhlyuZAH8R0hY3PNbm4d2BwCko,14337
1011
- cirq/transformers/merge_single_qubit_gates.py,sha256=xZK07IHYnNGzRvQWsiM9T2Ygiepf-izlZHFXE8cPc5o,5309
1021
+ cirq/transformers/merge_single_qubit_gates.py,sha256=NRREV4Z6Ptc3mZnOUgzQePdj4H0aix17WOUwZUB7iQ8,5826
1012
1022
  cirq/transformers/merge_single_qubit_gates_test.py,sha256=0U5oitYfOIka1hUOn1Cv8zVK1Uo34DVaOnGMgqfRg4Q,9966
1013
1023
  cirq/transformers/optimize_for_target_gateset.py,sha256=2f93hEA_9vXbutkoOtzBTk_bjKLfdLWqsuue4-w4Rp0,6005
1014
1024
  cirq/transformers/optimize_for_target_gateset_test.py,sha256=G73RDFhdhXqpXMTEPyl_t5huhcyY1u6XqOToVEFpVJA,13848
1015
- cirq/transformers/stratify.py,sha256=VRp0sTKIQbaHLHFSyXXcw2KOKY6KWmjQ-ZSZdP2NS_E,7917
1016
- cirq/transformers/stratify_test.py,sha256=BeZR9kD15lgbybQsmR0fFaMYvwgiC6TsG7Zg-ylO0pU,15039
1025
+ cirq/transformers/stratify.py,sha256=mdDdisvyDaU3G6X-0Z8lbYN07HBC8y2NzIL15SSzYxo,10474
1026
+ cirq/transformers/stratify_test.py,sha256=LmQFPB4grvRVvOgV8mA-pXNK3k9UC-banFJgWtDx_cA,15270
1017
1027
  cirq/transformers/synchronize_terminal_measurements.py,sha256=p061MYYglY6HhWYYkFzIny0CtaY9LUygPg4UbGewZhQ,3842
1018
1028
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1019
- cirq/transformers/transformer_api.py,sha256=eic9F4UpvbTfrl_N46Pjk33OuGuf4ClHMKuXfEklCik,16956
1029
+ cirq/transformers/transformer_api.py,sha256=beDdouAulWeg4SQRwAjgc5H1jrKD0maYY32XczsHokI,16964
1020
1030
  cirq/transformers/transformer_api_test.py,sha256=f-Vup0VCUvTqJKm5kWHf6xet7sFTerLMGYzJHy8Rc5s,13045
1021
- cirq/transformers/transformer_primitives.py,sha256=XcwzLZokGYLQ6Hnpipb2dCjKARQT-gTatDr-RMPZSW4,31537
1022
- cirq/transformers/transformer_primitives_test.py,sha256=JS7ezuAy3159TG3vcAycdSecsejBIf4N8mdJxPi8EVs,40900
1023
- cirq/transformers/analytical_decompositions/__init__.py,sha256=xAjcNWRC8pkFgIFFCsvyqsUCKehiYQq4r5G9coCTQF0,2440
1031
+ cirq/transformers/transformer_primitives.py,sha256=0QKiY2pEBzIfGsE4y5fGSfJlehOvHzIVaj10eNyHt8A,31574
1032
+ cirq/transformers/transformer_primitives_test.py,sha256=pJhCN28Tev7F04waYRtTlgJEY8fqtBcYJZDPSPUAWLw,41319
1033
+ cirq/transformers/analytical_decompositions/__init__.py,sha256=jUSQkbrFMGRi3ez_TXw8c487dJ_cTF-157JAQcIxUg4,2683
1024
1034
  cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=DsuuP91pm2dX0CO4rWwmJAJyAfuXMcA1UJK0g8krp7k,6726
1025
1035
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=AAZh_9vEb5f2E_EItPZTlMRNdv0d47AwqTn4BytX0UI,7102
1026
1036
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=P-ge3093ayMAEiIf-X_Yv_UuEWkVBEEvJUKobhlXVuA,8554
1027
1037
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=Pc1vNvRxcYJEERASHbCqPX1bqImGd7FzWnQcUcIo_YU,4950
1028
1038
  cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=RDg0wzYa_YXBJepCgloD_OIwTOwNco98dqGoe0UsnhI,9108
1029
1039
  cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=bwZa0BDclAd1sX3bD-GdNF2MO5DtH7mw2YLppEK0LG0,5568
1040
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=bU9IoY0igVZTmF_wsTdTxAfqPKWyqZ14Gt2AJoK5D_4,4524
1041
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=qpFODpCJrE9piYLWR1FzweTn3v80EvLCV-PP2fbHcoE,2112
1042
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=-ovbhXHeuGcqu1XQd6ZNV3yDrO3JeAEoA_6z5IlPXxE,8326
1043
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Q_CGIfaelZEvmTtmkbaPdBosGwqQQjjypAs2DNMCT54,4158
1030
1044
  cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=iAPdMwHKM1B3mJtQWH-iNjR-VkzhkUDFC23f8kjXY6M,8436
1031
1045
  cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=4GfU6wctBoG-OVFqFOE08xymd5dXzY-doE8ZNpsKohI,12308
1032
1046
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=0N6NbY6yc0VGuTheR37mhUIKFu5TYmToxJO2mbLp9xM,2439
1033
1047
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=CbWBFjdcswiJQRr68Asx5SWJeo_qZUJMPhfxPaOMjpk,2516
1034
1048
  cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=MPktiQy4LFTQNbjbfO8LtGSPRuhZmbgSaCnS2jvIXO8,9789
1035
- cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=j4Xt6e02_4WdOtsQZD_sxpQuY0yWkHYxM0jIHU0XQ3k,7914
1049
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=y-m1AP85Pb88sZ81i9Kwow9aawo-GIGnxfWwjjjRUDs,7888
1036
1050
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=mRN8mOp0fWCuoETg092OZy4tMEt97g44EwhjfFoLP1o,4482
1037
1051
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=GP1Yc__ePMz-UFqeeeP9c-7fqlBZFVQxRV8Ylk2MdwU,3627
1038
1052
  cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=l51weqMCTYqIb7BA1zALbmnSr4JsCI17Qtm35jm6kSs,8456
1039
1053
  cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=weo2k8OLUIeaFYr6xNsdBMbq5KVdnIxYyELYYVyP0Ds,9351
1040
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=GTv4XR0GlZaOkZPrIjVu3OFEmyQJ1EbUonW5jmjVab8,9711
1054
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=p3_Mgm-v1jmEAT82Z_jas0hoIUg-TUsZHJ7SC_k2nqU,9721
1041
1055
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=9ElSH1pr0Odu7cWcpXlDI-cDOpin90WEnPQQdnA_xkI,6990
1042
1056
  cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=Awr7WvaJe_8-6RdrlD93NM8c5QSKX-qaImys8WSRBcw,3772
1043
1057
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85MbuIAos7o1371wXs_KH-Bk6jsPqSBKAx9GJ9c-wVo,4160
1044
1058
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=F_XpM4ApYHxV6hbWnV3C7Ud9L1BnpvBHBXShPh2mP3k,25397
1045
1059
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=eKOzjWkR7xs-CL2oPj__nWXR0LL9oO42wEHibnvWq-o,20618
1046
1060
  cirq/transformers/heuristic_decompositions/__init__.py,sha256=2KBAUk-vsVku-HuahLbDQxp8bjEQMZUUNiBz_cvUMUw,831
1047
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=HP9NrwaoJG71nQJilPNBo6sibl9LmoKfmWINzeOHpSM,10797
1061
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=cj9_xAxudXKlCFtLea6VitzEIyWe4h_iTpJKPm-j2LI,10785
1048
1062
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=N02nlz7tISYVArvWNILwg-hnDB5Y9PCHbwIxk42Afv8,1534
1049
1063
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=NXfLgggaMtDEVEtT4ukgec6UKQ4e_vUHbTtSb0RSHNU,20073
1050
1064
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=dn-lBXnK_MXYMBtrQjlIm1FUBBGECiwyCyl5wCd7lL8,3830
@@ -1055,7 +1069,7 @@ cirq/transformers/routing/line_initial_mapper.py,sha256=9wph7XMgI3MpAAEPvJvQX6qB
1055
1069
  cirq/transformers/routing/line_initial_mapper_test.py,sha256=l48BRKOEnv-4c31Anpg4bucWUppHg9-LMeo7lUny3Es,7476
1056
1070
  cirq/transformers/routing/mapping_manager.py,sha256=m0XCzP3FXcIXvhiduSErmPROn31Dx2nfjlSPYYIaEJ8,8631
1057
1071
  cirq/transformers/routing/mapping_manager_test.py,sha256=ijlRd3mCOO1QFI6L8utQS0m6u_-GFtc_Sb5h07ADv8k,5921
1058
- cirq/transformers/routing/route_circuit_cqc.py,sha256=my0TV4JnzF8tXsEFBYKFSRHNu82T_c5Rw5u8EB07NKs,21148
1072
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=pcjTf7wrpVe0XP9_67HBsRnuidSzxsU8VAyXSgKGx_U,21150
1059
1073
  cirq/transformers/routing/route_circuit_cqc_test.py,sha256=lywnwRqvrLBS4MsrqM33vNqHcC9K0zPqAPg6ZXedOjY,8058
1060
1074
  cirq/transformers/routing/visualize_routed_circuit.py,sha256=cKYvswXnNIQJ0Okketzkpy9Tw0Z_Y2DaG4cJmK9ouHY,2917
1061
1075
  cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=MHL0DTdWCTsS1ayXlaJmBor8UbXo94lhgPKDXc97lRw,5040
@@ -1067,19 +1081,19 @@ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=MNjuxf-A2fmPdoGbBvpx
1067
1081
  cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=Rtoi2xmhlk_fobf5Hwc1nDQlLtmKPcJm2FJTR8JgpN0,6278
1068
1082
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=-Oi3b9oX-0_3U9SKAkijVO-uBy4ut4PrFnsx-yFJ9mU,14391
1069
1083
  cirq/value/__init__.py,sha256=J6nJSTfKIoEd5J2-2SrvWmtdXNZ4cuyVcXJxRCHFJi4,2005
1070
- cirq/value/abc_alt.py,sha256=krIhfrNAEJ68FWJQDWmjkRcqg7nGkrFeiZmTbtDt4ys,6008
1071
- cirq/value/abc_alt_test.py,sha256=niULP4zXUGoIGcth_UQkK1me86ER7fGkaje66lLO7iY,8975
1084
+ cirq/value/abc_alt.py,sha256=ELJbQucNpDCPG4ImN9EDORqJU9OHT90EF1pwMBU0bRg,5998
1085
+ cirq/value/abc_alt_test.py,sha256=v3D9LoHIAMI9sUIibwjBfSTUE1vCKcj1a424n_mkw_0,9013
1072
1086
  cirq/value/angle.py,sha256=vNZfTE3WmbWPYBKSPt--wvTub5bgUhmKR7ao_dIlyBQ,3313
1073
1087
  cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1074
- cirq/value/classical_data.py,sha256=FnS51U5o0RRXpy-7UYwz16XlPsIlKFXb5pHFbqVnYR4,11558
1088
+ cirq/value/classical_data.py,sha256=nJhGISrUyCi6poov3GTTNtyEaozVp0f0O5dUIF-YdQ4,11603
1075
1089
  cirq/value/classical_data_test.py,sha256=23ZraKZ-V3p-uux21bkcboQcEp81RW6VKnVIYPQc6_o,5231
1076
1090
  cirq/value/condition.py,sha256=QrxKBAox4C-z2pL2_xeKMvmfp0OP4tVFXJdPULx1pik,5900
1077
1091
  cirq/value/condition_test.py,sha256=FGnCFcpeIQFRbnszKsHKA5K7sderTz7kwS7zWbWwx64,4037
1078
- cirq/value/digits.py,sha256=zcxwb5UXCNQp0KdzlfqqpBZNGIANqrMoFEdT3yc-sBA,6033
1092
+ cirq/value/digits.py,sha256=pUQi6PIA1FMbXUOWknefb6dBApCyLsTkpLFrhvNgE0Q,6024
1079
1093
  cirq/value/digits_test.py,sha256=evx-y619LfjSN_gUO1B6K7O80X5HJmxxBPl61RrOovo,3812
1080
1094
  cirq/value/duration.py,sha256=SBgxd0Q3LMkriDpGKImlIGuwIhCvyQOTOf7qRTilFpc,9087
1081
1095
  cirq/value/duration_test.py,sha256=mOuZkLdASZ3mjauJXFuJt3aoo0AmDBfec6tv6ap82IA,8142
1082
- cirq/value/linear_dict.py,sha256=64OGoNCDpOS1vdMqkyLwCzuuiPmeP63ez0FyxpJPCJE,10852
1096
+ cirq/value/linear_dict.py,sha256=BG3pckQPX4DPqNvp-HxI_dTzQf8sGx6nIRkn0-ye4Qg,10643
1083
1097
  cirq/value/linear_dict_test.py,sha256=uEHbvobWV4EypOXQGe6B4xh6atLbQq8YSOomNHgv38o,17107
1084
1098
  cirq/value/measurement_key.py,sha256=MThR6rFY_YuSvcvWOacCEfOluJC0u7d8VvnDkHe-HAM,4939
1085
1099
  cirq/value/measurement_key_test.py,sha256=sfY-PHDfG__JHPpc1IaiNiUDF3vBmoVSP-Id4Vr5fKs,4466
@@ -1087,20 +1101,20 @@ cirq/value/periodic_value.py,sha256=U_tYBgWNVblZ6XDSwbXZin67KA0jUZiDAPpz-w7bnhw,
1087
1101
  cirq/value/periodic_value_test.py,sha256=mMvj_Ai2T8BWRbc7jdvb7JPX8OZxlL4H7jtdvy54ono,4319
1088
1102
  cirq/value/probability.py,sha256=FxbvxZJhQ4ttN8dBR3bhV1aQmOawUAl8fbcWc4zfzUg,1582
1089
1103
  cirq/value/probability_test.py,sha256=QXfihRBOfOIA_IoXlSbhoe7L-VGCBLLXYS99pL-R1yE,932
1090
- cirq/value/product_state.py,sha256=zL6X2iCW2--oPlSYqc6B8YPfgJwXu_0vm-RnsZytOUc,9027
1104
+ cirq/value/product_state.py,sha256=PDUU-LzhWxTK-DU1CmtJOe7tzaMa_ix2aIcaF9bxp2Y,9050
1091
1105
  cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
1092
1106
  cirq/value/random_state.py,sha256=SA4owzMPof8P5FLPhGUPN7ODfciKAIY24PgxfmnJ5AY,2063
1093
1107
  cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5BU,1348
1094
1108
  cirq/value/timestamp.py,sha256=u0v5FmnSF_o3NE7aF-xIfQ5cDAVZzaUb-ZMdrxWYg2Y,3649
1095
1109
  cirq/value/timestamp_test.py,sha256=eZt9LLVK6TQy-2Bo1djitUD4at7i7M4lN60bLCx9UPs,4029
1096
1110
  cirq/value/type_alias.py,sha256=YD5m-77rx-hatIEVi5Q5j5tZ2Ji3Mmg4jUY9GT3LscM,1144
1097
- cirq/value/value_equality_attr.py,sha256=VbsLynhbdxOPKvbTK5SGSd0HgVIR3Dfxtpq1WeIgNVw,9481
1111
+ cirq/value/value_equality_attr.py,sha256=DknMj8jAAB0Gcht12dK67OcHIhC763w0f_BlLdE9Rjg,9501
1098
1112
  cirq/value/value_equality_attr_test.py,sha256=k_nl5hWxo4yMO6WNu0wU68wyeb-RN9Ua_Ix7s9UTfOE,6412
1099
1113
  cirq/vis/__init__.py,sha256=e3Z1PI-Ay0hDHhIgFZEDwQIuO8C_aayNdL-EByF0J4o,1001
1100
1114
  cirq/vis/density_matrix.py,sha256=kMAPcRh6f0ghZKSe86nB_2iFngrDsw0pNael1EZ5BEw,4819
1101
1115
  cirq/vis/density_matrix_test.py,sha256=Xg41NQZBfoyrkaX3n9pW4q1LIxWpOW3Cr_I_Wx51GlQ,6965
1102
- cirq/vis/heatmap.py,sha256=mn0AnrAQQvnzpIDTXQF5WcULuQEelq0lZlvNkr3o2bw,16071
1103
- cirq/vis/heatmap_test.py,sha256=oRnzkcsF6xybMcjamkb1zntzFS9ck3qfPtaUG6x6fXc,13235
1116
+ cirq/vis/heatmap.py,sha256=sNLjAyebdO1vLbugySsIHe61TfvBIsZA9qgd3XbvZWE,16072
1117
+ cirq/vis/heatmap_test.py,sha256=pk3-IpkbDBb75smvlyNp5_rn3YVeXIQgDRZ5xhFg-3c,13231
1104
1118
  cirq/vis/histogram.py,sha256=xqgy77nF0vyBjeul83G0yH_e342ecqpWu2RlwVIGEAo,5061
1105
1119
  cirq/vis/histogram_test.py,sha256=Qlw0e3amw_MFga-hNweiLzRCH174W9bB2qkmX_RiS-U,1904
1106
1120
  cirq/vis/state_histogram.py,sha256=hKU7frKG2wdXsrQjZu0-Fz1FqmAC-IVhS4ieArqN1ec,4208
@@ -1108,26 +1122,26 @@ cirq/vis/state_histogram_test.py,sha256=ZOakGIz3-xeoSICljLt-0ol5ovxBkCt7rmzD_UfO
1108
1122
  cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
1109
1123
  cirq/vis/vis_utils_test.py,sha256=-aiL5WmhPDs_5BF2lDol1koD4JuHTiYxLK2ofyWrbCU,939
1110
1124
  cirq/work/__init__.py,sha256=wY4w2J9iPehTWTyETX9YDQG69D-oc1BvHoC0mz8PiI8,1381
1111
- cirq/work/collector.py,sha256=rm7o3qoNCt_75ot52V6G5VlNZ7bb1JLtnXqpPQXRnO8,7850
1125
+ cirq/work/collector.py,sha256=cq1BgCAFUugnXnaCbGM9v7fr04fmK6ug8eb9w0BlPUU,7846
1112
1126
  cirq/work/collector_test.py,sha256=MirBDZ584HMZ3nJRUOSSQZcAyLR6sKc124GTQqPkunc,4885
1113
1127
  cirq/work/observable_grouping.py,sha256=-FVJPuB-sDqoNQtiMxuO_TKhy-5uvMeRzfeWMfbxoT4,3492
1114
1128
  cirq/work/observable_grouping_test.py,sha256=lVLLhQlwpAuBPUEkfCg7cTS_AhtuojLbvy288XX3Rn0,5811
1115
1129
  cirq/work/observable_measurement.py,sha256=8XwQmlOpTYrFEdAPQo6c29fkghq6z6fsbLg3lJp57DI,28319
1116
- cirq/work/observable_measurement_data.py,sha256=eEMjaUtgTO9WNW2BbxVyF75WkJJEpZ70zntHIM9nq94,20783
1130
+ cirq/work/observable_measurement_data.py,sha256=hEanWlODzShivKve7RiEJ0G62E490oWVVuymSyqnyro,20833
1117
1131
  cirq/work/observable_measurement_data_test.py,sha256=yJWgtwFMApkmX8tplpCX8cLOlDhGTDmb4qzQ7oEnRdc,19698
1118
1132
  cirq/work/observable_measurement_test.py,sha256=jVUkNJAOr-ZfwRcITIEj6sh5lxzKPnDUgzp-e_HnYHk,20191
1119
- cirq/work/observable_readout_calibration.py,sha256=KRFj5jqvlslc1kDtvOmKgOAWE2IlsVJRhNQJOVQWTfc,1848
1133
+ cirq/work/observable_readout_calibration.py,sha256=9lfeybebV4Fh3Y-ExtxIGErPzZcK16oyTbN5XHMIaBA,1888
1120
1134
  cirq/work/observable_readout_calibration_test.py,sha256=CHdwbwr4O84yVSRWkcC9Aysz8imiPs0Na5eT2jP86Z0,1807
1121
- cirq/work/observable_settings.py,sha256=9v2OgEhDpp8-lMc-BHRQofghANhDCLMCVzm4h9VAY2I,6698
1135
+ cirq/work/observable_settings.py,sha256=OsZS8XvHT2LCFGkzu-wh1WShOx93I1nZ2K7uce-iT4s,6688
1122
1136
  cirq/work/observable_settings_test.py,sha256=hV3g5ld5OZchTjVMVL_8cLXsbSBMz5DAsE4Vui2xTuk,4233
1123
- cirq/work/pauli_sum_collector.py,sha256=BcuPQBSNNi1tRRYNlLFXz5lEyZc0KB5DtT1v_l-pGSY,4265
1137
+ cirq/work/pauli_sum_collector.py,sha256=N1IsIwudBi84XWP1x7LNE2uQ6DGR2LFIWPhGbdHxaA4,4230
1124
1138
  cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1125
- cirq/work/sampler.py,sha256=eqf8gcHsxVqiVJfMwJNVCh5oeoqKgxIqNHhrwJX8Bw8,19760
1139
+ cirq/work/sampler.py,sha256=JVv1vvfa6EgFiR3UeDk44U186dCrioH2NZXueCgsb9w,19828
1126
1140
  cirq/work/sampler_test.py,sha256=zo1Hj6sn6fLs_WZMxYRApBqgBsldmptn74NL0jhNukc,12325
1127
- cirq/work/zeros_sampler.py,sha256=ADBRlKkdUtwfbSWEqyC4j_yB7rMoE8VVPCoQvMuO2PM,2337
1141
+ cirq/work/zeros_sampler.py,sha256=D3hbNZC-jXKuNAWg2OUiUuT8pmDV_WFnEfMank6In4o,2357
1128
1142
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1129
- cirq_core-1.1.0.dev20221220224914.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1130
- cirq_core-1.1.0.dev20221220224914.dist-info/METADATA,sha256=LUalaUVMrVqm_qPAgYeMrA_lwjbyJCeaBuYXZ1MtTKA,2147
1131
- cirq_core-1.1.0.dev20221220224914.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
1132
- cirq_core-1.1.0.dev20221220224914.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1133
- cirq_core-1.1.0.dev20221220224914.dist-info/RECORD,,
1143
+ cirq_core-1.2.0.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1144
+ cirq_core-1.2.0.dist-info/METADATA,sha256=OQ7hCmgdde40oOEtDGHtfOmS4hk92lDeuglovcWav_A,1889
1145
+ cirq_core-1.2.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
1146
+ cirq_core-1.2.0.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1147
+ cirq_core-1.2.0.dist-info/RECORD,,