cirq-core 1.6.0.dev20250416035400__py3-none-any.whl → 1.6.0.dev20250417204649__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (58) hide show
  1. cirq/_version.py +1 -1
  2. cirq/_version_test.py +1 -1
  3. cirq/devices/noise_model_test.py +3 -1
  4. cirq/devices/noise_properties.py +6 -4
  5. cirq/devices/noise_utils.py +8 -6
  6. cirq/devices/superconducting_qubits_noise_properties.py +10 -9
  7. cirq/devices/thermal_noise_model.py +12 -12
  8. cirq/devices/unconstrained_device.py +3 -1
  9. cirq/experiments/n_qubit_tomography.py +15 -12
  10. cirq/experiments/qubit_characterizations.py +34 -39
  11. cirq/experiments/random_quantum_circuit_generation.py +38 -38
  12. cirq/experiments/random_quantum_circuit_generation_test.py +7 -4
  13. cirq/experiments/readout_confusion_matrix.py +17 -15
  14. cirq/experiments/single_qubit_readout_calibration.py +9 -5
  15. cirq/experiments/single_qubit_readout_calibration_test.py +5 -2
  16. cirq/experiments/t1_decay_experiment.py +7 -5
  17. cirq/experiments/t2_decay_experiment.py +10 -7
  18. cirq/experiments/two_qubit_xeb.py +42 -43
  19. cirq/experiments/two_qubit_xeb_test.py +1 -1
  20. cirq/experiments/xeb_fitting.py +25 -21
  21. cirq/experiments/xeb_sampling.py +18 -14
  22. cirq/experiments/xeb_simulation.py +11 -7
  23. cirq/experiments/xeb_simulation_test.py +3 -3
  24. cirq/experiments/z_phase_calibration.py +27 -24
  25. cirq/experiments/z_phase_calibration_test.py +1 -4
  26. cirq/interop/quirk/cells/arithmetic_cells.py +11 -10
  27. cirq/interop/quirk/cells/cell.py +18 -15
  28. cirq/interop/quirk/cells/composite_cell.py +8 -8
  29. cirq/interop/quirk/cells/control_cells.py +14 -14
  30. cirq/interop/quirk/cells/frequency_space_cells.py +4 -3
  31. cirq/interop/quirk/cells/input_cells.py +6 -4
  32. cirq/interop/quirk/cells/input_rotation_cells.py +14 -12
  33. cirq/interop/quirk/cells/measurement_cells.py +4 -1
  34. cirq/interop/quirk/cells/qubit_permutation_cells.py +3 -1
  35. cirq/interop/quirk/cells/scalar_cells.py +4 -1
  36. cirq/interop/quirk/cells/single_qubit_rotation_cells.py +5 -2
  37. cirq/interop/quirk/cells/swap_cell.py +7 -5
  38. cirq/interop/quirk/cells/testing.py +1 -1
  39. cirq/interop/quirk/url_to_circuit.py +11 -8
  40. cirq/json_resolver_cache.py +5 -3
  41. cirq/linalg/decompositions.py +5 -4
  42. cirq/linalg/decompositions_test.py +1 -1
  43. cirq/linalg/operator_spaces.py +8 -8
  44. cirq/ops/arithmetic_operation.py +4 -2
  45. cirq/ops/boolean_hamiltonian.py +7 -6
  46. cirq/ops/classically_controlled_operation.py +23 -20
  47. cirq/ops/clifford_gate.py +43 -47
  48. cirq/ops/common_channels.py +16 -14
  49. cirq/ops/common_gates.py +49 -67
  50. cirq/ops/control_values.py +12 -15
  51. cirq/ops/controlled_gate.py +15 -17
  52. cirq/ops/controlled_operation.py +17 -15
  53. cirq/study/resolver.py +1 -1
  54. {cirq_core-1.6.0.dev20250416035400.dist-info → cirq_core-1.6.0.dev20250417204649.dist-info}/METADATA +1 -1
  55. {cirq_core-1.6.0.dev20250416035400.dist-info → cirq_core-1.6.0.dev20250417204649.dist-info}/RECORD +58 -58
  56. {cirq_core-1.6.0.dev20250416035400.dist-info → cirq_core-1.6.0.dev20250417204649.dist-info}/WHEEL +0 -0
  57. {cirq_core-1.6.0.dev20250416035400.dist-info → cirq_core-1.6.0.dev20250417204649.dist-info}/licenses/LICENSE +0 -0
  58. {cirq_core-1.6.0.dev20250416035400.dist-info → cirq_core-1.6.0.dev20250417204649.dist-info}/top_level.txt +0 -0
cirq/study/resolver.py CHANGED
@@ -285,7 +285,7 @@ def _resolve_value(val: Any) -> Any:
285
285
  return val.p
286
286
  if isinstance(val, sympy_numbers.RationalConstant):
287
287
  return val.p / val.q
288
- if val == sympy.pi:
288
+ if val is sympy.pi:
289
289
  return np.pi
290
290
 
291
291
  getter = getattr(val, '_resolved_value_', None)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250416035400
3
+ Version: 1.6.0.dev20250417204649
4
4
  Summary: A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.
5
5
  Home-page: http://github.com/quantumlib/cirq
6
6
  Author: The Cirq Developers
@@ -4,10 +4,10 @@ cirq/_compat_test.py,sha256=0m3sYIyxRNv9jvAo6rzJ-cnbpny3KGnAByrbU7bApgQ,34720
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
5
  cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=gCIgjY1Qwbk-3sarDfwzAs6nCcIXqt4TQIhJ7hjEka4,1206
8
- cirq/_version_test.py,sha256=86v-LNmjZCU5I_zfLJoaYIyBohFuHZj5Iq6Ke4Sz2as,147
7
+ cirq/_version.py,sha256=Si3tMcFzfppH_tMQ6iLA2eAmAMfM79Y1bVj37ZOWRX0,1206
8
+ cirq/_version_test.py,sha256=HZtZrzivvNo4oPgGXkZyOesGqKYmq-YU38m90JGyBbE,147
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=YVamU72nCUT5dG0bhAvRKVX5lXcZMNTwP3H36v-cYag,13615
10
+ cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
13
  cirq/circuits/_block_diagram_drawer.py,sha256=XuqIQjyHc-B7TaSzuKJe9ZFwzItjxVGdmZjTDw0d2T0,9509
@@ -169,81 +169,81 @@ cirq/devices/line_qubit_test.py,sha256=eu47MSzy5eymIccIuHct8Z_WJeHhZYEARR3yB3NXy
169
169
  cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
170
170
  cirq/devices/named_topologies_test.py,sha256=4YURaPFHN7CAxl9Tve_kysJuEY4O1PPywEMkGGr12m0,4737
171
171
  cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
172
- cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
173
- cirq/devices/noise_properties.py,sha256=-OLtCTkLzD7w4HcwufftE9iTOkuC9Z9lNZQXXr4Dqxk,5085
172
+ cirq/devices/noise_model_test.py,sha256=QvgpP__Eecojm1DkCbRgDyu7xrbyPbvg7POS4xFktK4,9276
173
+ cirq/devices/noise_properties.py,sha256=0VzM0_rmV1JumKQccj9_GEGPE0jNkuwIqXEaZfmEjcU,5111
174
174
  cirq/devices/noise_properties_test.py,sha256=0s8ROjcRyfXeExxGz4gyA79pZARXwHanzOpDpcXEmcM,2341
175
- cirq/devices/noise_utils.py,sha256=bec6PyBQa5gbPK3C_eYK2ejbAxiLZQbyQNBj6G7g-bA,7165
175
+ cirq/devices/noise_utils.py,sha256=N6zxBAmhbK3UGiu9FTQH_3GFB_0668B3x5NyAUKlIvI,7187
176
176
  cirq/devices/noise_utils_test.py,sha256=cMSiNoOIPeo40t13b3R2-RrFUITjJhOoKj1UGpmJ3cs,2063
177
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=JdMWh7Lf0qgcEpeGyg4YpDA2_oVYq4AxBIUnfFWbDTo,8145
177
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=3FWn3Kwgkq3qVyMffHNdmFdqUtv5JwNr7dzfFI7srNY,8164
178
178
  cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=znS1R4chjxZeUFb4W2GdhpWTwHDcdXpIJgIDHCXA5Tg,12207
179
- cirq/devices/thermal_noise_model.py,sha256=3vD8OGIZMjs0t-De0DwYHIqCxSEcAXppDejVCIHZKsw,11609
179
+ cirq/devices/thermal_noise_model.py,sha256=Moob5RD0b0kdVpssp1Y8aXdPtqmlNR35DITFIautquc,11603
180
180
  cirq/devices/thermal_noise_model_test.py,sha256=ox9b0BoHH6d73CjWWI1fIAGd_o3r-4qy8v2ggUwc-pw,12246
181
- cirq/devices/unconstrained_device.py,sha256=dtpB_n0RpjyoUzcSkfT5dUuY9O2U1c-YM3m6V-jL9xc,1525
181
+ cirq/devices/unconstrained_device.py,sha256=R3vHBELHhDYgvvwhLgtlLASNL7er2jBmKJilgzbed8o,1557
182
182
  cirq/devices/unconstrained_device_test.py,sha256=PZ2FeLbRYh38stk3AA03j3k_a6VaGdtHh3D2jrnjAIc,1047
183
183
  cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
184
184
  cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
185
185
  cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
186
- cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYFkeudQUlfE,8469
186
+ cirq/experiments/n_qubit_tomography.py,sha256=T4Q8GkcESrraFfnSnDEaMh_-7X7U3ufpdHwrjprBr4M,8482
187
187
  cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
188
188
  cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
189
189
  cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
190
- cirq/experiments/qubit_characterizations.py,sha256=QBEUJGWVZxFzh28oZetAFpMagjhyhJk8qVjScwktZ7E,36785
190
+ cirq/experiments/qubit_characterizations.py,sha256=dlW50ijAHPSGIx6ObH2_bXRjUIZOsDFotzpPuJiJkJY,36710
191
191
  cirq/experiments/qubit_characterizations_test.py,sha256=km4-D-JrsxhjCjbpf7DTgHnGSNS3Iadtqt0b5hfTQqI,9716
192
- cirq/experiments/random_quantum_circuit_generation.py,sha256=7O2aQ8cPMrEsdu1yHQW0GWittRX_Q2y1f7H7m1G384g,28228
193
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=7Hs4bSxvOZOgiuAMKgLvTRVhu-kNykjlGLqFwoEbdaQ,16522
194
- cirq/experiments/readout_confusion_matrix.py,sha256=O7fLHGAZQ3UG8AhBBcQPeK2NO8jNE_70W8JF2PII0PI,20727
192
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=P3LcrAQSAioyGfpbtZsAuf5uSRYOxXJKHIJh41oRPB4,28153
193
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=hWiW31iNzheaU2M82G4CDsAhSW8kQ1-DWm8FgDpxvU4,16549
194
+ cirq/experiments/readout_confusion_matrix.py,sha256=Im2X1MWD2zIlxHynH0TGBalZRA6PpPvk1kjEI1NfgPo,20729
195
195
  cirq/experiments/readout_confusion_matrix_test.py,sha256=fIL-r9vi6QEp0Bt5Fv9BlJlPh-aWPSj58_enzNLafpE,10632
196
- cirq/experiments/single_qubit_readout_calibration.py,sha256=WJ6wM7hS5xEi71Nm4r-bwOYQwf3P8N0-wmax5EltVo4,14723
197
- cirq/experiments/single_qubit_readout_calibration_test.py,sha256=ivc7IDyxmrZXCYNWSOgJXJ4ZdYFbatmlFUf_u2Rh_uo,7718
198
- cirq/experiments/t1_decay_experiment.py,sha256=bnf9FpptNpZO1lOGCttrHA0IrykfviEVbjsWvCSiGn8,7086
196
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=K9IZQINYwDVxF3OT15Zd40JnQhKtGc9z5UNALMIIu4w,14749
197
+ cirq/experiments/single_qubit_readout_calibration_test.py,sha256=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
198
+ cirq/experiments/t1_decay_experiment.py,sha256=IA108IQ9KEcZilEwu_famESZmdMaxJAUKyHKJNhBjz4,7112
199
199
  cirq/experiments/t1_decay_experiment_test.py,sha256=LauXCkcLNxrmM5gNCT5RSWaRQ8OnlV8sCZZ3CBrLjpI,9138
200
- cirq/experiments/t2_decay_experiment.py,sha256=JhIPsoPRV0g3j1wkDh61MkqBFJNDwjhaZK8Vy4eqCfk,19157
200
+ cirq/experiments/t2_decay_experiment.py,sha256=RM8KbXmEWfLu865QksIZPCL9h37VQLUKoSTb1Uq_QnI,19176
201
201
  cirq/experiments/t2_decay_experiment_test.py,sha256=dJhtdqgH2majCQ-sstyjog75wkzkzHrHVsQrGpuYXfE,15030
202
- cirq/experiments/two_qubit_xeb.py,sha256=vGKpfF_1141hjMRExqEtL7_2WyEHNqwbaw3W10ZXwiI,22764
203
- cirq/experiments/two_qubit_xeb_test.py,sha256=UnTmDbs02mjWZXOm_Yveun1G_pop9_w0rvYf6swv8wQ,10680
204
- cirq/experiments/xeb_fitting.py,sha256=iQq40iBHri5Ks2OTED5q3nOlRtFanGnGlV6ABo1Da40,30409
202
+ cirq/experiments/two_qubit_xeb.py,sha256=AuxH4aeFnORBrJ7BAGPDLJV9IMunsH9VKFMhVt2k6ZY,22646
203
+ cirq/experiments/two_qubit_xeb_test.py,sha256=Enf11AZ91lr8Z4-A32xp8wkqU8TnhK0NXind5_ALMwA,10676
204
+ cirq/experiments/xeb_fitting.py,sha256=UEPNyjpjoGUNTdQfdRUnPe_Yvdc18GewYN1FdJjWoYg,30401
205
205
  cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
206
- cirq/experiments/xeb_sampling.py,sha256=1Js9QfJXZyz79VBqVEAYwCyuz5-McVQeDDbjvdqxX1s,14987
206
+ cirq/experiments/xeb_sampling.py,sha256=7va7Rq_BpKtj-ip3Tnx6doqAoVWRQi4-g10kX03EEVo,14995
207
207
  cirq/experiments/xeb_sampling_test.py,sha256=0XkQGvcURsug3IblE_wZrHVDoOQV3WuQilrqCJbDHjI,6784
208
- cirq/experiments/xeb_simulation.py,sha256=_RhxisdCA4kO5dfBYNeMmpY3gem6WxSpLIddagV2DtQ,5077
209
- cirq/experiments/xeb_simulation_test.py,sha256=YWFKXPdtBFuZNhQoG06W1EetVhXighc3zyXwhKfGAeo,5652
210
- cirq/experiments/z_phase_calibration.py,sha256=t6hUKNnXzPSY8_o-UyLsZhRWUS1pdsJsaedd5c4rm4Y,15153
211
- cirq/experiments/z_phase_calibration_test.py,sha256=tcYBMWkhnEzP0lRbyH2OqZRTVHJ_dnn44weeEntANX4,9039
208
+ cirq/experiments/xeb_simulation.py,sha256=w-4TI8KexpI6zJTS8PHmcWWWHfyRcbJYC4Ifin-bHts,5101
209
+ cirq/experiments/xeb_simulation_test.py,sha256=2ETf99fb0b76w9NjH8pGHTVLLmQE6CIv0yzlCB6WbQ8,5646
210
+ cirq/experiments/z_phase_calibration.py,sha256=EPblzpLl3JXRkmXgD9GS0R7RKf4zVVYAHhGW0c-HZ6E,15128
211
+ cirq/experiments/z_phase_calibration_test.py,sha256=gyZgldzM0G8bRHp33Jk_eYaYqO2WsfFky_GDtElRpzo,9012
212
212
  cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
213
213
  cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
214
- cirq/interop/quirk/url_to_circuit.py,sha256=STj3-mv1ET5krlEfAXX6pCdr6ui4oHpNWUqMzWbubp8,14211
214
+ cirq/interop/quirk/url_to_circuit.py,sha256=VYFm_QSkpgug568oyF6LerZbFDkes3e5dR6YSREvuSQ,14226
215
215
  cirq/interop/quirk/url_to_circuit_test.py,sha256=dB_QV_aT_9OfJS61JxHbe5oMbiJh-d6Y3aJI1LjqCFg,26282
216
216
  cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
217
217
  cirq/interop/quirk/cells/all_cells.py,sha256=Umd8wmwx51LzEqQbJFpWuvqL7g4MsSQXXztGzg1JbPk,2558
218
- cirq/interop/quirk/cells/arithmetic_cells.py,sha256=tUdzb9a4VBKqSt6WMqbSrBBAssq_6UTwVyxfOvGCmX4,13146
218
+ cirq/interop/quirk/cells/arithmetic_cells.py,sha256=8H1YmrJi_I_eHfw-5icbKDFSeaFBFntTOBrMKvalb7A,13149
219
219
  cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=dalnDnHwMp2oBi9VpIxVNTz6nMZNYL5WI74kw7Flb5w,14625
220
- cirq/interop/quirk/cells/cell.py,sha256=dxdHNCv5l3ZH7XyvlnMPUX7qCJXf5_UyWpHx5uV-PPo,8463
220
+ cirq/interop/quirk/cells/cell.py,sha256=q325wair37CfRl-ipWtuy7bhf3r83pODTtw6cf9RyBQ,8452
221
221
  cirq/interop/quirk/cells/cell_test.py,sha256=-HDH3PIn8DPtaeUWlfR4bpLWQ-LqF6WQcjFUolUvXCg,2276
222
- cirq/interop/quirk/cells/composite_cell.py,sha256=9o1aP3YeYOqdCE-t4wNiysdCOFBSV1nZm8ovN_SPba0,5352
222
+ cirq/interop/quirk/cells/composite_cell.py,sha256=-4UFAW0GWYELbRksIg8T1bfJq5Q5I6jxoe6SzUyc6H4,5356
223
223
  cirq/interop/quirk/cells/composite_cell_test.py,sha256=3qiQb0VOLtr1ZBKjCMRrJm_AXALDBLK9DwBTu3kQG6o,5308
224
- cirq/interop/quirk/cells/control_cells.py,sha256=WDXGjcUk4sOzphJcnXGC-Bvzxcq0BaZJBZxd1ETB8sg,5579
224
+ cirq/interop/quirk/cells/control_cells.py,sha256=nKQ-5wZUgywVMmXbFcqScF9VBj-R8hRGeXXelc20duQ,5573
225
225
  cirq/interop/quirk/cells/control_cells_test.py,sha256=rqCmmjE5ym5wqzpTrEGso8dCgrIC6JxnMHqzuk4hfsc,4673
226
- cirq/interop/quirk/cells/frequency_space_cells.py,sha256=eAkPlz1rqnWqs8ljh_kFtuWnwmeBiN5XQp_e25lqa98,1890
226
+ cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
227
227
  cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=fPAjxnD8sKnuxNdY89K66pdbV4Hi3IxhdeWWni5-Uno,1812
228
228
  cirq/interop/quirk/cells/ignored_cells.py,sha256=SVYXVuVM7FWfIPQdTSS64zqadxwpVDnaMmA3AG92nqo,1378
229
229
  cirq/interop/quirk/cells/ignored_cells_test.py,sha256=46KXRNPM_t6-aKklrDpLbBDXijHDDafepE2KKuJGNLA,919
230
- cirq/interop/quirk/cells/input_cells.py,sha256=1BsH_7oJnOynmt6VmJQnUSFUW48VB3eJB9VIYgwHhmA,2927
230
+ cirq/interop/quirk/cells/input_cells.py,sha256=hR8zQQOCgbeRLK2f31mwRcAS5lGPi1AO83Uz1KuVDdQ,2951
231
231
  cirq/interop/quirk/cells/input_cells_test.py,sha256=Aavp8SHgnF0vAG2fvcX1y0x6Hzrz6dg1tGMjBNLyl5o,3500
232
- cirq/interop/quirk/cells/input_rotation_cells.py,sha256=sUVe5Kkxfww6uh3EFDI62GAGKzqmAxWfOZpvGO-spQE,7369
232
+ cirq/interop/quirk/cells/input_rotation_cells.py,sha256=HF_KFnfcFMCJ88XZF0BiOy1TsoCzD_qw2DAbeSV8qjI,7377
233
233
  cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=o56BWKRiE_MFSZldbSa9PnDlnOFslEyODbmcjzRlqjM,6318
234
- cirq/interop/quirk/cells/measurement_cells.py,sha256=u_J9-sz4L3zy5eziUiVhT__oW4ax5jxPhg2QZRcL11w,1504
234
+ cirq/interop/quirk/cells/measurement_cells.py,sha256=_6a6jm-EP9khPm2eZZu2ArlTdvfLzo1bW7LZ9GFaXVg,1539
235
235
  cirq/interop/quirk/cells/measurement_cells_test.py,sha256=AYYzjn3BrQbk-Rg1L3WjCOQN9eGLRQzqwYr6i8UH0Fk,1574
236
236
  cirq/interop/quirk/cells/parse.py,sha256=Ilyzz9rbe9XYExVlj4rcJsrIWN4TnAj6LlVl37S9MO8,11873
237
237
  cirq/interop/quirk/cells/parse_test.py,sha256=1L3qRRaz8Q0vh8N92uFwI7G-ez97mKIqubQgp10uPsI,7473
238
- cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=F9Br_SFB1ys4pP-hYlpPRMXH_4Cd8LePtOl4aTE_p8g,3390
238
+ cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=swv_ovLaqO073j-uo6JtII_Sw_Nh51e53tSq-8JREoM,3424
239
239
  cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=n0veQKx0EdFzu_gdY_AVjwqyoHae7JGkDFX6qhLeGrQ,4460
240
- cirq/interop/quirk/cells/scalar_cells.py,sha256=TuV5TwiY2SEb3776k1MvkSMcJoP2uQVXfpWf4uaNf30,1246
240
+ cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
241
241
  cirq/interop/quirk/cells/scalar_cells_test.py,sha256=1IrttKsY0921W-885PnpZaYe8OQXKVQ9g7semm28W4E,1367
242
- cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=rlRRCWKf3jYj1u1XXtyIAAivH2zv8sK9lSH9pFGRlBw,4463
242
+ cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
243
243
  cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=NZ5r7sLQx9p3yLCQ0RQmX-8R6e2vPtXmpL8_xbv1PnE,5037
244
- cirq/interop/quirk/cells/swap_cell.py,sha256=6pE6hFcMxLSr1F8_DhwNZulWwO2lKDVYnRxK6Bl-Ql0,2421
244
+ cirq/interop/quirk/cells/swap_cell.py,sha256=7WxDTBPu4gGKTkJYxtnNK5E3L3gmrzyCdi50fJuScFw,2443
245
245
  cirq/interop/quirk/cells/swap_cell_test.py,sha256=z3Dz7jrkEI7ri2vOqQQAO8bbhUSRYU4JORgF4YqOY3k,2321
246
- cirq/interop/quirk/cells/testing.py,sha256=eHnAwIyQvVesYK3adyCo7-HPTbAADugs2EMuoNoSvP0,3318
246
+ cirq/interop/quirk/cells/testing.py,sha256=0r4_XPBj6plgwYdvYBzZYMsm8dOXFibAexj2F6mmMoY,3316
247
247
  cirq/interop/quirk/cells/testing_test.py,sha256=Qb__MOXjUrna7Wy6mlRWFyyy78KfzqlKsTvNfdR8-fc,3929
248
248
  cirq/interop/quirk/cells/unsupported_cells.py,sha256=xTE4aKpuVocey_lvWwb8Q1fla6oMqI1S4rc7a2UtDgs,2841
249
249
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=5bl-maazy7Dr8u6kwK1AhGT4vtHqzIMRKxoMKYC-JWs,2178
@@ -251,11 +251,11 @@ cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
251
251
  cirq/linalg/__init__.py,sha256=0dSlIBy-TVzf7b_-rLLlrS8ZFkgCfYg0pJjWs72xYOk,4045
252
252
  cirq/linalg/combinators.py,sha256=0tts29gbwQg9lpZvCSX8QKMIMf38NGGdBJqI911m7jA,5336
253
253
  cirq/linalg/combinators_test.py,sha256=eRy1FrGujE8UC3pP1X5MfWmKlpjimHTxdiixr-G4nJM,4829
254
- cirq/linalg/decompositions.py,sha256=9dOJSJuYG8_dk3zdBO5rXDONKkw7SKZd5ZpWK4FnypQ,38652
255
- cirq/linalg/decompositions_test.py,sha256=cPTOr6Cmyx9oVQStIwxN8TA9jAJzgh6QGdbCmGc-rBM,25438
254
+ cirq/linalg/decompositions.py,sha256=bKwdrDSMQtnZgGhowVFrxfpuQbLR-s-xWwVF23h88Ms,38675
255
+ cirq/linalg/decompositions_test.py,sha256=zlx9-1GbEjD128-fAwx4qqdbd5g324O65l3VzioilHY,25436
256
256
  cirq/linalg/diagonalize.py,sha256=Y3fFcyEWKH5CGbGY8KeQPGBgdDgvETF3WUCkVNIVfNw,10051
257
257
  cirq/linalg/diagonalize_test.py,sha256=Jn6Gc1R_1MaL6vUUqjIx_6WvMDTIj7l8OxUNJgWKmsc,9089
258
- cirq/linalg/operator_spaces.py,sha256=-i5DEAW-b_sgmfZKXFf37XzX5h7cZ7R6EeW7RcFNeE0,4128
258
+ cirq/linalg/operator_spaces.py,sha256=kzKK0TNn7Mjul45vTygGyJik-PCct8dVfUiTcjWPVps,4136
259
259
  cirq/linalg/operator_spaces_test.py,sha256=Hbm8e4kGbGw9c4O3v5o0kYbcikwDkdIoAy3V8EofJr4,10605
260
260
  cirq/linalg/predicates.py,sha256=vLTRaAYqVf0mk6Qgm53ROhLDtXxxoEhHbYxQN74aGRk,12076
261
261
  cirq/linalg/predicates_test.py,sha256=syNiyS-clEGeZnbKT7zyR8_ClDnXFYtDnLKozLbitzw,21504
@@ -268,25 +268,25 @@ cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIb
268
268
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=svleNo8P_cQLCMfcGLkU896cpLjZKPynDKnJGM2pyJ0,1861
269
269
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
270
270
  cirq/ops/__init__.py,sha256=Fvghj3MopLpeIdbpb6en855QgwperBs5esV1iszhBDA,8274
271
- cirq/ops/arithmetic_operation.py,sha256=gAup6Gou7oIbfjIdjXIDFff-z3ybdjlkbsBPly-oQ30,10125
271
+ cirq/ops/arithmetic_operation.py,sha256=j1RkP2gDX3n7xzEKNAoTQSmzfXBIAdov07AUlhdtVQw,10157
272
272
  cirq/ops/arithmetic_operation_test.py,sha256=iKjnwOvd1wCWk-byeUC14aGwYuHXOlkrtlOvNRUcMqs,4942
273
- cirq/ops/boolean_hamiltonian.py,sha256=li003lNq6zS8pNPTobqzfzYJvyvaIpCVo3wkliI6Hzk,14930
273
+ cirq/ops/boolean_hamiltonian.py,sha256=2Z5iqrxHxMmFjRgY72uqedK2C6sfFtIFSGs8TGwyhKg,14946
274
274
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
275
- cirq/ops/classically_controlled_operation.py,sha256=ePhBPrHymodrsztJFk_g2IGI3QSbFnpQ54d-6AH9CN4,10374
275
+ cirq/ops/classically_controlled_operation.py,sha256=lRP-agJZBgGO5CL9OML3oZKaOZJAuAMqnHe4XRAC6Gk,10369
276
276
  cirq/ops/classically_controlled_operation_test.py,sha256=nIYyXfNH4E2IibZSLk6QDVHpfJQbuI_iWwirCH8rhi8,50209
277
- cirq/ops/clifford_gate.py,sha256=hBuNKKE5kmB3W4oQxwdG1SF_NFblkcSIAUeacECRAVY,39495
277
+ cirq/ops/clifford_gate.py,sha256=awiYS6M5HiFXZee1Y9ZouC6u92UjfTJsK7soelid0ng,39392
278
278
  cirq/ops/clifford_gate_test.py,sha256=dqghYb7_afYxCLceBarX56Tn9y_dSWCKF75W-Qrzvcw,40341
279
- cirq/ops/common_channels.py,sha256=lGDOSdstoK57DingL-lo2n49-a51MshhJOl4LOcpQfg,37126
279
+ cirq/ops/common_channels.py,sha256=aTxfQ7F4ewv2h_XfUgfdGk2DbU7Lian-Jp_2muMNXlg,37130
280
280
  cirq/ops/common_channels_test.py,sha256=nQsSSxu7vtedb3ZUuw4hNKIX7MYI4x8lxvLyWMZNt10,30079
281
281
  cirq/ops/common_gate_families.py,sha256=2E31Qr_Yv1zI-r_MNWmr1xJYrEHHU45274iDrt_oKPE,8611
282
282
  cirq/ops/common_gate_families_test.py,sha256=bEF6Q6GtEOTc9kHM5WC1UIULPGnMPXdtm8gzLT_aNBI,5276
283
- cirq/ops/common_gates.py,sha256=WFNrvxaHQdfS_2sm0-Kuq4VaH-qcgbJOFi2_PBecBX0,58481
283
+ cirq/ops/common_gates.py,sha256=ITW2Vvpw8VzypGn99yawjf1u8tW1arg51kRzvaNHWUE,58256
284
284
  cirq/ops/common_gates_test.py,sha256=bASPqAkuN92Ij3CCAVwOftL0heIu3J5VPcCtmm6nVU0,46873
285
- cirq/ops/control_values.py,sha256=Loi_voLNOzPJpjD6AnQz8JrqJLOAUe0jvV3XB_0tTGE,13430
285
+ cirq/ops/control_values.py,sha256=J674mKNnncydB2n_F2ZhqIs1EZQBFPDprdHilRKfUsk,13397
286
286
  cirq/ops/control_values_test.py,sha256=K8tbKM6b6PqMEL_lHLFzdrnWF1SkLN0Scft6YMT7FlE,12907
287
- cirq/ops/controlled_gate.py,sha256=uzQL7scPsKmnu3Kdiw-zF7b4FxdyqvaD6oPkczs1skQ,15234
287
+ cirq/ops/controlled_gate.py,sha256=w6llkldlz_ap8rvtXCF7NIPFkMKbJJQgJXe2tFY8LBg,15208
288
288
  cirq/ops/controlled_gate_test.py,sha256=8PprvTdGMfBQOOQ-BpW_decRQU39P2gM_xJfX-fawMo,25512
289
- cirq/ops/controlled_operation.py,sha256=kfZUj5XISlHJGvm2mzn7-UzNmIFimLMNvn9QhD68Lro,14077
289
+ cirq/ops/controlled_operation.py,sha256=VJt4-plwcA60fclTVbT26edL_9ReNl_AfGplB2126Hk,14103
290
290
  cirq/ops/controlled_operation_test.py,sha256=kHdHGR6Q6ROgUJqG4DSKOvyrLJhi-u4uMh-rM3QRJ8o,16525
291
291
  cirq/ops/dense_pauli_string.py,sha256=nQs4lfm9zSGPGE9p9KAJbEhkldpg9krqTwvIkLePs90,24477
292
292
  cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
@@ -956,7 +956,7 @@ cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2
956
956
  cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
957
957
  cirq/study/flatten_expressions.py,sha256=XUvPFOnuV8jOO2ZyvL4dsD3UWJXhyN2YfyVyq01BJgQ,15582
958
958
  cirq/study/flatten_expressions_test.py,sha256=bJZKjgz_brS71Zf-cdpI7MCY6TMhzilHp96Vhn3DoOg,6078
959
- cirq/study/resolver.py,sha256=h0K-oymS620W2vLlC22FOe8TfraLNF3N_F-Ra24y8os,11790
959
+ cirq/study/resolver.py,sha256=2eBIna65Y5DqJBXoF4LGSDb7u_QLD7xhFA5exNTeg_E,11790
960
960
  cirq/study/resolver_test.py,sha256=VjZn0408VHq9JLB5Che2d_cZhO4JchnrMgnyLL6gjtE,10531
961
961
  cirq/study/result.py,sha256=IjeBZ5eiYC92xDG8VbbH5avZzJl0nh_rArZu5oOIIHY,19285
962
962
  cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
@@ -1209,8 +1209,8 @@ cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
1209
1209
  cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
1210
1210
  cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
1211
1211
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1212
- cirq_core-1.6.0.dev20250416035400.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
- cirq_core-1.6.0.dev20250416035400.dist-info/METADATA,sha256=hh22PK6SIYHN7wu3XuQPYCoQL_n_llQaqkHQ8ccpY6Q,4908
1214
- cirq_core-1.6.0.dev20250416035400.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1215
- cirq_core-1.6.0.dev20250416035400.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
- cirq_core-1.6.0.dev20250416035400.dist-info/RECORD,,
1212
+ cirq_core-1.6.0.dev20250417204649.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
+ cirq_core-1.6.0.dev20250417204649.dist-info/METADATA,sha256=mg0rbh0eSIghYcvXQu1UtXlaG2yEDFokIfbj27qDUPA,4908
1214
+ cirq_core-1.6.0.dev20250417204649.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1215
+ cirq_core-1.6.0.dev20250417204649.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
+ cirq_core-1.6.0.dev20250417204649.dist-info/RECORD,,