cirq-core 1.7.0.dev20250911180440__py3-none-any.whl → 1.7.0.dev20250917002151__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 (65) hide show
  1. cirq/_version.py +1 -1
  2. cirq/_version_test.py +1 -1
  3. cirq/circuits/circuit_operation_test.py +5 -0
  4. cirq/ops/classically_controlled_operation.py +3 -7
  5. cirq/ops/gate_operation.py +15 -0
  6. cirq/ops/linear_combinations.py +4 -14
  7. cirq/ops/measure_util.py +7 -6
  8. cirq/ops/pauli_string_test.py +7 -6
  9. cirq/ops/raw_types.py +19 -2
  10. cirq/protocols/has_stabilizer_effect_protocol_test.py +11 -9
  11. cirq/protocols/has_unitary_protocol_test.py +3 -3
  12. cirq/protocols/json_serialization.py +3 -3
  13. cirq/protocols/json_serialization_test.py +31 -31
  14. cirq/protocols/kraus_protocol_test.py +5 -5
  15. cirq/protocols/measurement_key_protocol.py +31 -8
  16. cirq/protocols/mixture_protocol.py +1 -1
  17. cirq/protocols/mixture_protocol_test.py +7 -7
  18. cirq/protocols/mul_protocol_test.py +4 -4
  19. cirq/protocols/phase_protocol.py +13 -4
  20. cirq/protocols/pow_protocol_test.py +5 -5
  21. cirq/protocols/resolve_parameters.py +1 -1
  22. cirq/protocols/unitary_protocol_test.py +31 -19
  23. cirq/qis/clifford_tableau.py +14 -14
  24. cirq/qis/clifford_tableau_test.py +17 -17
  25. cirq/qis/entropy.py +1 -1
  26. cirq/qis/entropy_test.py +1 -1
  27. cirq/qis/states_test.py +54 -54
  28. cirq/sim/classical_simulator_test.py +56 -28
  29. cirq/sim/clifford/clifford_simulator.py +5 -5
  30. cirq/sim/clifford/clifford_simulator_test.py +50 -49
  31. cirq/sim/clifford/stabilizer_state_ch_form.py +9 -9
  32. cirq/sim/density_matrix_simulation_state.py +6 -6
  33. cirq/sim/density_matrix_simulator.py +1 -1
  34. cirq/sim/density_matrix_simulator_test.py +94 -84
  35. cirq/sim/density_matrix_utils_test.py +1 -1
  36. cirq/sim/mux_test.py +26 -26
  37. cirq/sim/simulation_product_state_test.py +7 -7
  38. cirq/sim/simulation_state.py +4 -4
  39. cirq/sim/simulation_state_base.py +1 -1
  40. cirq/sim/simulation_state_test.py +5 -5
  41. cirq/sim/simulator.py +2 -2
  42. cirq/sim/simulator_base_test.py +49 -35
  43. cirq/sim/simulator_test.py +39 -35
  44. cirq/sim/sparse_simulator.py +1 -1
  45. cirq/sim/sparse_simulator_test.py +92 -82
  46. cirq/sim/state_vector.py +1 -1
  47. cirq/sim/state_vector_simulation_state.py +7 -7
  48. cirq/sim/state_vector_simulator_test.py +9 -9
  49. cirq/sim/state_vector_test.py +37 -37
  50. cirq/study/result_test.py +20 -20
  51. cirq/study/sweepable_test.py +20 -20
  52. cirq/study/sweeps_test.py +43 -43
  53. cirq/testing/circuit_compare_test.py +16 -14
  54. cirq/testing/consistent_channels.py +2 -2
  55. cirq/testing/consistent_controlled_gate_op.py +1 -1
  56. cirq/testing/consistent_decomposition.py +4 -2
  57. cirq/testing/consistent_phase_by.py +1 -1
  58. cirq/testing/consistent_qasm.py +2 -2
  59. cirq/testing/consistent_qasm_test.py +3 -3
  60. cirq/transformers/eject_z.py +1 -0
  61. {cirq_core-1.7.0.dev20250911180440.dist-info → cirq_core-1.7.0.dev20250917002151.dist-info}/METADATA +1 -1
  62. {cirq_core-1.7.0.dev20250911180440.dist-info → cirq_core-1.7.0.dev20250917002151.dist-info}/RECORD +65 -65
  63. {cirq_core-1.7.0.dev20250911180440.dist-info → cirq_core-1.7.0.dev20250917002151.dist-info}/WHEEL +0 -0
  64. {cirq_core-1.7.0.dev20250911180440.dist-info → cirq_core-1.7.0.dev20250917002151.dist-info}/licenses/LICENSE +0 -0
  65. {cirq_core-1.7.0.dev20250911180440.dist-info → cirq_core-1.7.0.dev20250917002151.dist-info}/top_level.txt +0 -0
@@ -32,10 +32,10 @@ class Fixed(cirq.Operation):
32
32
  return self.unitary
33
33
 
34
34
  @property
35
- def qubits(self):
36
- return cirq.LineQubit.range(self.unitary.shape[0].bit_length() - 1)
35
+ def qubits(self) -> tuple[cirq.Qid, ...]:
36
+ return tuple(cirq.LineQubit.range(self.unitary.shape[0].bit_length() - 1))
37
37
 
38
- def with_qubits(self, *new_qubits):
38
+ def with_qubits(self, *new_qubits) -> Fixed:
39
39
  raise NotImplementedError()
40
40
 
41
41
  def _qasm_(self, args: cirq.QasmArgs):
@@ -119,6 +119,7 @@ def eject_z(
119
119
  return []
120
120
 
121
121
  # Try to move the tracked phases over the operation via protocols.phase_by(op)
122
+ phased_op: cirq.Operation | None
122
123
  phased_op = op
123
124
  for i, p in enumerate([qubit_phase[q] for q in op.qubits]):
124
125
  if not single_qubit_decompositions.is_negligible_turn(p, atol):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.7.0.dev20250911180440
3
+ Version: 1.7.0.dev20250917002151
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,8 +4,8 @@ cirq/_compat_test.py,sha256=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
4
4
  cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
5
5
  cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
6
6
  cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
- cirq/_version.py,sha256=WZf8DKe02pUwbJxvCArRinKukjW5-YPt2iLOZy20qgw,1206
8
- cirq/_version_test.py,sha256=V1B9c05GreflNKusZ1yTqJ-pAgBTGz1_txhU4P_dvno,155
7
+ cirq/_version.py,sha256=EsoWF8NKNSNvD35WOCxHTTckzZxg3IczSaTfYLaJy7I,1206
8
+ cirq/_version_test.py,sha256=jRCns8RCs4dkVcjvk3UhhbeJ7lk7P3dmMuwwjmzkZbA,155
9
9
  cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
10
10
  cirq/json_resolver_cache.py,sha256=A5DIgFAY1hUNt9vai_C3-gGBv24116CJMzQxMcXOax4,13726
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -18,7 +18,7 @@ cirq/circuits/_bucket_priority_queue.py,sha256=U564r2mou4aZsOlpVYiZCgirqS6mVznG3
18
18
  cirq/circuits/_bucket_priority_queue_test.py,sha256=MOby-UKYZQMe2n4KhqkfDCPrz-T_3eBbWDEa0_nadJQ,5627
19
19
  cirq/circuits/circuit.py,sha256=y3QNLrJtgltpEOyBOADaQHayB6F92HeHIzuJDXZsJEM,123264
20
20
  cirq/circuits/circuit_operation.py,sha256=vvLk30okWhimdJRFhFOpwoHDkyOHzR2I9OIggZaqmVk,36338
21
- cirq/circuits/circuit_operation_test.py,sha256=oBecDWETbLYp5Br7aN1BoWA73VbNbhhtlkydDhnk5z8,51098
21
+ cirq/circuits/circuit_operation_test.py,sha256=9AR_11BiZN4lEoBXgN2Ukkx7Eqfz04tcCAxDDrclAQk,51358
22
22
  cirq/circuits/circuit_test.py,sha256=fT08nAEf-aiA5cvboBYnfLPGJHxauGIzJ2_Iw0fWT40,167182
23
23
  cirq/circuits/frozen_circuit.py,sha256=UXwABQqBSnSKqSWmRluQPD09xZU0orSW3b3IHvDqxUw,7903
24
24
  cirq/circuits/frozen_circuit_test.py,sha256=1Uk3g9St_nJFmu3IJ5hAcXWJjLfWFUXTCKQU1b0JJrE,5321
@@ -287,7 +287,7 @@ cirq/ops/arithmetic_operation.py,sha256=cokwokyzKa3zJkyxopP81fTRMutHfI277ZObKw9E
287
287
  cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
288
288
  cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
289
289
  cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
290
- cirq/ops/classically_controlled_operation.py,sha256=EjhW86dz6d6EwEupM6Rb9MWedb6nRusLOlaaFudEVbk,10445
290
+ cirq/ops/classically_controlled_operation.py,sha256=27G87DA_PbQOJQyaZ83N1-w5LF4aoJQinwnLCeL6iaA,10319
291
291
  cirq/ops/classically_controlled_operation_test.py,sha256=-LDfOotkjxdXJXACVoteWkgmyaTuCcmV4Vy3DHZaWvY,50861
292
292
  cirq/ops/clifford_gate.py,sha256=F4RiKZcf8PT1oUR0PfXPrIgDUcr9FJkwppPW39dpM2M,40078
293
293
  cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
@@ -315,7 +315,7 @@ cirq/ops/fsim_gate.py,sha256=Qs7FLsNXR7K2jNVZ8I9o9YLvOb6cC6iBnAvZAHERNk0,20037
315
315
  cirq/ops/fsim_gate_test.py,sha256=QgckC2fij30grZJoO6HnQHdGkKcwtiegedEBRid3wF0,25858
316
316
  cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
317
317
  cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
318
- cirq/ops/gate_operation.py,sha256=ODltw3E7o5ffL2EOTLGj4MUzenBjq6rs_kUVQj4iP0M,13332
318
+ cirq/ops/gate_operation.py,sha256=tyQOHZ_A_kGy6Yzn1fDTkHBNyzyvPmxbnueG6e5yOGM,13632
319
319
  cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
320
320
  cirq/ops/gateset.py,sha256=h_lCF6-SeUOprqulklRwBZg77kr_zNG_gvNuvPQc0pg,21786
321
321
  cirq/ops/gateset_test.py,sha256=oeJ0zLgknWxgW39_bc_8Ii_5_g5VNxiJWicZkkS-TaE,17651
@@ -327,11 +327,11 @@ cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
327
327
  cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
328
328
  cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
329
329
  cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
330
- cirq/ops/linear_combinations.py,sha256=YNSEAMBhlacvVvXy3MS-36uKlv9By18IWfipG8VLNYk,39886
330
+ cirq/ops/linear_combinations.py,sha256=dqeUgrSN81Bvo8hcx2lg4HRvDuY8gY4rwN294B5w1vw,39370
331
331
  cirq/ops/linear_combinations_test.py,sha256=a-tk0Cd7zhlWXb_o8IrLkabimOqXLgYPJAwNgY8rh7o,68322
332
332
  cirq/ops/matrix_gates.py,sha256=or8Kc3kP1NFjLbAHemmrZIqYFgEeeteMogNVEzYjosk,10238
333
333
  cirq/ops/matrix_gates_test.py,sha256=GEb2QTC2cNTQGVNXCXHL5PstrQLVpFEfQ3eGMZHe8z8,15006
334
- cirq/ops/measure_util.py,sha256=JtBgBFTGVUPstC8SdhV7JQhaEd3zYdKvUMJSoBRsngc,7397
334
+ cirq/ops/measure_util.py,sha256=rlZSEIg_TrhYlN1lVk8Z8bS-jN9vv-Fqp93vN0bD8DE,7498
335
335
  cirq/ops/measure_util_test.py,sha256=xsjcz70eXiDfGN_tFz4mNcF18dXgdV6z3vyOVnsF2BE,5570
336
336
  cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
337
337
  cirq/ops/measurement_gate_test.py,sha256=IF8ceuD2Sb4kFlp9x9evwl8F7j4BkCvZXSgKCP4Ac1g,18573
@@ -356,7 +356,7 @@ cirq/ops/pauli_string_phasor.py,sha256=5Tm_OoR_v44Kb3AQAw5XIxpcmKtompdbq5ZefYGEU
356
356
  cirq/ops/pauli_string_phasor_test.py,sha256=ZIoraHH3kOFjtEfThXDS-sxUvSU8MYZ2avtdiPcyN6w,28309
357
357
  cirq/ops/pauli_string_raw_types.py,sha256=mBOAwfBT_y7yiSyC6Hr-ofLyIkjyOH5urmK-gitD3-Y,2226
358
358
  cirq/ops/pauli_string_raw_types_test.py,sha256=ZcOZ31KSVIc7ReZoO8WZEX8MOyPOhUWaYLppvGTE4-8,2761
359
- cirq/ops/pauli_string_test.py,sha256=YoYcJxJZCDJjRx1ULxy_8_PkMsj8wGgpLs71iAVfLmg,79620
359
+ cirq/ops/pauli_string_test.py,sha256=R-2-wSMGvshU3tjRe-7IKv755civQfstxcnxVMlMF5A,79634
360
360
  cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
361
361
  cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
362
362
  cirq/ops/permutation_gate.py,sha256=mTCKrLSNP3nm2hPebfBJNR5mHO6qb1ZqDT3pFA0zM_M,4218
@@ -378,7 +378,7 @@ cirq/ops/qubit_order_or_list.py,sha256=5kChRv1gUnBKB-kF6okXoXcCa5CXbJ6HoB6ETpfl3
378
378
  cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
379
379
  cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
380
380
  cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
381
- cirq/ops/raw_types.py,sha256=OcRK1pv5k9f14R2z920Wg0mqV114iPGaJNuVF2T7Ilk,43836
381
+ cirq/ops/raw_types.py,sha256=R0Cbe5Wl_BNoaeZYtZmWzpOOHeDe_nvhCI705CH4FOI,44222
382
382
  cirq/ops/raw_types_test.py,sha256=CoooLVSYidx1QkAFWJM4gNbs3CwkHHtVKE8HW6gPAxs,35408
383
383
  cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
384
384
  cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
@@ -416,38 +416,38 @@ cirq/protocols/decompose_protocol_test.py,sha256=JJexKMKYdSW1K1S4wkTyR1Wy80Ku_jH
416
416
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=rIk5aRxjtmi75c1lfXutycULZYHNR2zfKmmZ67L0kZU,4077
417
417
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
418
418
  cirq/protocols/has_stabilizer_effect_protocol.py,sha256=T_CVVpvckp3ZTsWi089mPqbmwOPLlF6GalEKrVK7Hvs,4309
419
- cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=T6-vtMO-eBXIMRur1nlmAzi4ty4-F1BP59ZRWR_d0HQ,3955
419
+ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=nXmWpMvOtmbeetjSwbWzdJoghDxuDzLyV6awhtRUc5Y,4087
420
420
  cirq/protocols/has_unitary_protocol.py,sha256=pO23u1faWqz1s-cvE1rySczN6tdriM7dvBOAh7A0pzs,5439
421
- cirq/protocols/has_unitary_protocol_test.py,sha256=FifK9oCMMyXHsZJNsDNutbKvty-p3jfcwVZzxyWoZ74,5956
421
+ cirq/protocols/has_unitary_protocol_test.py,sha256=CJDVVW3eFwcTa9wWl6GavBD2Z62YEmQjMWKDTdV8skg,5994
422
422
  cirq/protocols/hash_from_pickle_test.py,sha256=H1V2cy-gtbKhhewZPSI7kcNqgpkS5luF70JLGZSkuYs,4108
423
423
  cirq/protocols/inverse_protocol.py,sha256=tHaY8-dfd0SD59v3DZ_zpwz7lwFrraPExEnIgn1T0RI,3965
424
424
  cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
425
- cirq/protocols/json_serialization.py,sha256=7FlTtI8a4fWQ0znWq9APrElQdCU44667rNFNnSraxrE,24491
426
- cirq/protocols/json_serialization_test.py,sha256=An57W8eBWaUF4kKOCos2UlHzNiILnUJvqmZLmwZ_6MA,27872
425
+ cirq/protocols/json_serialization.py,sha256=5qttzbrLS5kbev1zwwX_dgaRfwoVukWxZcLWx9Pej8k,24550
426
+ cirq/protocols/json_serialization_test.py,sha256=TewzqlI48icH_8DK-DoYtrMlyH0Mznjzi_vIxQjwKbk,28090
427
427
  cirq/protocols/kraus_protocol.py,sha256=Dpv8JA1cSWXYXrkx3vBZupxQHdIyYDC_y0R0rVL3QDE,11377
428
- cirq/protocols/kraus_protocol_test.py,sha256=NCgkPoGuSki7VGqbnRUDsuhpFlvDJEAcJGzeLpImz6Q,8236
429
- cirq/protocols/measurement_key_protocol.py,sha256=nhfnvNmfjJVYG4R7xFTqNdMzYC1r9uqy43iT-eJC58s,13321
428
+ cirq/protocols/kraus_protocol_test.py,sha256=mVAhHlldEFWXOBv15HzwKYOb6NxdmsOo_ml_Qbvw_zk,8280
429
+ cirq/protocols/measurement_key_protocol.py,sha256=EsAyj2SMaUhnh1wX0laR1ALHgGHEguC3gAs_frGbs2s,13723
430
430
  cirq/protocols/measurement_key_protocol_test.py,sha256=PqSU9uB4t2yvPz9hZBLby2mZnZo-DOLlx3HIicyPeLo,8768
431
- cirq/protocols/mixture_protocol.py,sha256=-BkCRr_JAQwZ4yZ2GptOn-xcJLzgzcFQKdCB0oBV0EU,6399
432
- cirq/protocols/mixture_protocol_test.py,sha256=Sa0XzglMnVZRJir0EKTTiNJ2yBGVSrGvD8fDoKfYFQg,3858
431
+ cirq/protocols/mixture_protocol.py,sha256=q9p9N3b9Sw4U2u9PQuUg637kq4Sl4Olda6wiUYCV8co,6407
432
+ cirq/protocols/mixture_protocol_test.py,sha256=8hSIlvlQJ-HxHrlgX8ZCykZsP5wcWZhXJUF5JfiXIRM,3932
433
433
  cirq/protocols/mul_protocol.py,sha256=Jv7Qq5SejO0F6kpnFcTBML3rjZd-LTmrUJJ_D7PRpR4,2749
434
- cirq/protocols/mul_protocol_test.py,sha256=J2jvKPr4Doy9Fx7RNCXbjvTkyBu1fcsxfRH-I6OzE34,2172
434
+ cirq/protocols/mul_protocol_test.py,sha256=d8aG5PnGkmNEan23KcL6Y1KHYmgS8Plyi7g65gqa3gU,2240
435
435
  cirq/protocols/pauli_expansion_protocol.py,sha256=a-oovf62dKIbMGx4SdzNiQfjBpZkmvvwzqRLPnfQqoQ,3738
436
436
  cirq/protocols/pauli_expansion_protocol_test.py,sha256=TATNum73ccpG_SbK6FWxcD7rj5kw92mKpzzK1oNZkk8,2769
437
- cirq/protocols/phase_protocol.py,sha256=7WVlTzqcyDV-l6zBJ9x1bJg5555jCuF_0dJ62UeGZ7Y,3618
437
+ cirq/protocols/phase_protocol.py,sha256=FNjEBmBZyAGpjA_WesqFg_PBN7-qL-QIP0PAUbXa2ns,3812
438
438
  cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
439
439
  cirq/protocols/pow_protocol.py,sha256=q_Y3MMdkOXiB1D6V34lQGNf8vlvc5btZfDeO8M0jZd0,3151
440
- cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
440
+ cirq/protocols/pow_protocol_test.py,sha256=MJHL_chaWEWS_CK9Bc-BVQMOblwKVbzcvjw1EkNQSUQ,1748
441
441
  cirq/protocols/qasm.py,sha256=njxlAUNwzQfyZXn3Uwk4z6HvcXb6vgcRsRpFRLTNutY,7186
442
442
  cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
443
443
  cirq/protocols/qid_shape_protocol.py,sha256=JTzhzsz_hNe7QYMLSoJbLacolXj8WrtF5_3Xim_mctc,7652
444
444
  cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
445
- cirq/protocols/resolve_parameters.py,sha256=N1NJJ672v3ISQRusO-t6nwm1hOmOqMVBeXtqfjR_Pzc,7399
445
+ cirq/protocols/resolve_parameters.py,sha256=wuLE9cyigtWF6bptIc9rhS7xG9-KQCNCZ3H14_Grd3I,7402
446
446
  cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
447
447
  cirq/protocols/trace_distance_bound.py,sha256=xF_qfkFV_T7O3-5lBITupq6ulBYuzFXDHaYDv7it96E,4150
448
448
  cirq/protocols/trace_distance_bound_test.py,sha256=0bI9uYttJj5eayM05kShPh9qkxeKG1egcZ9fXJPZWNU,1980
449
449
  cirq/protocols/unitary_protocol.py,sha256=KsXGUA7bkHOkL9GqJXpyFmhA0HVQeLdZfypZJC7yU6g,8233
450
- cirq/protocols/unitary_protocol_test.py,sha256=oj31ZmeGylf4wh2jv_EwsXmJ7YYgsu3YM43A-yXrPps,10480
450
+ cirq/protocols/unitary_protocol_test.py,sha256=C7gauI6a5mcyjCc_qfRYt6eDtigt46kSdo8hpj2WEV8,10838
451
451
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
452
452
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
453
453
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -920,50 +920,50 @@ cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPC
920
920
  cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
921
921
  cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
922
922
  cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
923
- cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
924
- cirq/qis/clifford_tableau_test.py,sha256=MPb5kGoCOjHpfIzADKmd1qDbUkXR6nwZbpQnC6UCTH0,18385
925
- cirq/qis/entropy.py,sha256=SWB_Q7k5io_ZB1FzpNeUZNte3QqjiRR1_8vN2nEOt-M,4242
926
- cirq/qis/entropy_test.py,sha256=DYdTUSosNo8njD8XiX7ZHtSydZf2wJun1RMKne6is5Y,1717
923
+ cirq/qis/clifford_tableau.py,sha256=GgSPq52mUMBSp6Qa0G1tVcVwO6gxCC5yOWqbHFJT6zw,26320
924
+ cirq/qis/clifford_tableau_test.py,sha256=f9vpGZPLmcF6Sv-8oPV2mM2OFlh6hOYCArki8Px1rLM,18539
925
+ cirq/qis/entropy.py,sha256=4P4RVq2EhOFg8cJai4R9u5mgFWSElFyUCecnC-nukw4,4247
926
+ cirq/qis/entropy_test.py,sha256=aBZyHxLM_Z5mWvRFWUGlIqlry8yJD9bfGyxNKybhziI,1725
927
927
  cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
928
928
  cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
929
929
  cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
930
930
  cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
931
931
  cirq/qis/quantum_state_representation.py,sha256=usrQ4eTty-rGnG3w9nvWmz0Yb9Vt83q3N05gT58pJMU,3203
932
932
  cirq/qis/states.py,sha256=FkUp-pOj_a1rd6U9t3xaq7PK8KPNKsq54AWmkpLulDY,41775
933
- cirq/qis/states_test.py,sha256=vTvZE0Y-WL7gD7g5gy0HendmrHfbh-qPZ6KsDJH7aAg,31849
933
+ cirq/qis/states_test.py,sha256=bBjiKiTEB-J0Z1OJGElBXOaYrU4cFTn41-mLSK-E35M,32321
934
934
  cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
935
935
  cirq/sim/classical_simulator.py,sha256=nGpFSpntqOdmzI2TV5uIBbkJbwoHIXrBZhN62ksHccc,9793
936
- cirq/sim/classical_simulator_test.py,sha256=SUR9PSk8LDoX3BRnUMD4efJpLe435ofgkgcXM3_TAEs,13646
937
- cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
936
+ cirq/sim/classical_simulator_test.py,sha256=USnEOt7CjxGCK0OK_2BGyWJaTvcJemKiqg2LYW2o0s0,14907
937
+ cirq/sim/density_matrix_simulation_state.py,sha256=YafMQIb1M5d0X_8IMLc1GliwiqXhO2np91Egjm6JIcw,14043
938
938
  cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
939
- cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
940
- cirq/sim/density_matrix_simulator_test.py,sha256=X2BVzl1jZeORA3aiK3X6BKFpt1pcnXhx74NA2cL9sCg,61288
939
+ cirq/sim/density_matrix_simulator.py,sha256=YR_AihKhS2zM813V8PS667oii5EZO4DU-uvYU2zFCts,17504
940
+ cirq/sim/density_matrix_simulator_test.py,sha256=SbLGFqg9d2RPdDygfJ83soBc_yZCnZyT2vmpEnuGiag,62050
941
941
  cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
942
- cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
942
+ cirq/sim/density_matrix_utils_test.py,sha256=xwe-kRZdv7CDD3boU5H8gFaHUAOjK3lGi4gjxZWhY7Q,14563
943
943
  cirq/sim/mux.py,sha256=8Kalgrs_jgRN4VDcIV-6HKF3xRXk2a3Umt88xtq0eg8,13794
944
- cirq/sim/mux_test.py,sha256=eyg8yquTOJwzeRA5j_wSaZjyX_aMP7eGzs59uatT_QM,14133
944
+ cirq/sim/mux_test.py,sha256=9S1nESLwswrc2AKrdfq9-y8Bppuo3y9j5tzk4xqSOMU,14353
945
945
  cirq/sim/simulation_product_state.py,sha256=py-gVRPis1EfyavdCW5gLhiULocrqUOTe7ZI7OD-nws,7014
946
- cirq/sim/simulation_product_state_test.py,sha256=ZZeCC9a_VIehiMzyo9QQPL4PD2G2h8XVZk80IZzD5Ok,9093
947
- cirq/sim/simulation_state.py,sha256=wwKjntD1XuwyUcXJGFJYwmmolYaPK5pc8_xS05cOsQg,12522
948
- cirq/sim/simulation_state_base.py,sha256=ASH6OeyTLnWyZmSO9hdfvnS5vtVuBgm6GVUUB-izW-Q,4040
949
- cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5JJ4SY,7560
946
+ cirq/sim/simulation_product_state_test.py,sha256=fmLeTmFavwa7n2kNfdd_S4NdOkYz-YyuwAAm3ER--tg,9165
947
+ cirq/sim/simulation_state.py,sha256=-0Bg83iu3pNdzOGwIDQYcgO9uCsCjgXMh7Pq_jwGLGs,12554
948
+ cirq/sim/simulation_state_base.py,sha256=zgkjmPJqeJcgRFAPZFK17rSBEqgCDdxSNO8UN4KSV6Q,4048
949
+ cirq/sim/simulation_state_test.py,sha256=N2DQdTZx57uIb7nD0QinuiqHFI__cRkN2HFUjvN5PMc,7668
950
950
  cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
951
951
  cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
952
- cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
952
+ cirq/sim/simulator.py,sha256=mKGnv51ZmNdj1WGH9oTLJC8Dwjin4hkEg7HaOdHHbbE,41804
953
953
  cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
954
- cirq/sim/simulator_base_test.py,sha256=ag_1DIA82vEBLrXlwxWBvtobJa9E6SqBT46F6aPZESc,14979
955
- cirq/sim/simulator_test.py,sha256=bPcjADGo1AzA5m_zvaap38NJ6n-IGKBRSAVgFmu8-ek,18799
956
- cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
957
- cirq/sim/sparse_simulator_test.py,sha256=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
958
- cirq/sim/state_vector.py,sha256=U2YHGp2MAvw5qkl3B-q_ZEuuHEaSPsjgm9b0e8JMBAs,13329
959
- cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
954
+ cirq/sim/simulator_base_test.py,sha256=k6A71TgVHYsA9zeT62Bm5wY5KCwM-NeLnKxG9j-Ut0U,16271
955
+ cirq/sim/simulator_test.py,sha256=jAdAH81AcxBItNv5NVy_dinaFmw6nVzSAR3OQp6nWvc,19333
956
+ cirq/sim/sparse_simulator.py,sha256=wsnWvlDW6kmjdfLSToe8CHGbcFnks-niKr2-N9qgDsQ,12936
957
+ cirq/sim/sparse_simulator_test.py,sha256=ZZ9dRplyB0NY2o9GDq1CknMvbDt6MUjjOHI_V55iL_g,54534
958
+ cirq/sim/state_vector.py,sha256=vneN-w6UoROjCV_ugVvegZlkF4hnHB0MR2KJFZTcCmM,13333
959
+ cirq/sim/state_vector_simulation_state.py,sha256=IL8Qp9r1srx8ug9lMkYIoJ9pWxxKjTwyiyljT0mxGfM,17554
960
960
  cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
961
961
  cirq/sim/state_vector_simulator.py,sha256=vQlFlnnczQn5dmSBACzouZnCgxJhIM3O38KfGiv-Caw,8206
962
- cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFPw9cBMRs3WM,7900
963
- cirq/sim/state_vector_test.py,sha256=smi06muuxelsIWtUP_s0VNwCRP17Ky8Vx7ENPJKZQVo,16696
962
+ cirq/sim/state_vector_simulator_test.py,sha256=DU0_pTgDubV-paZZXgRrYnHia9f0cd9aes3xelZiTXE,7972
963
+ cirq/sim/state_vector_test.py,sha256=VB86rl_REhez48FzsgLCS1Wx1I5GW3CDkHWLKA-kT-M,17028
964
964
  cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
965
- cirq/sim/clifford/clifford_simulator.py,sha256=zld4rZYuq8_m7C_m9n6WPhtxLrGKVMHT3vQI942a85Y,9828
966
- cirq/sim/clifford/clifford_simulator_test.py,sha256=caKQHVNuQoZYcJqfanTtNx6Hhc_6VmD908Z2mzJ8o6I,21405
965
+ cirq/sim/clifford/clifford_simulator.py,sha256=KBT0VcCxqvNxVa3CKflOvWqoHnUmDswnfZAhNENkMeU,9897
966
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=ueEjtDS2N5gjQbwoDq6A7zSJQNwtFKq29C6KuRzFDSY,21773
967
967
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=0T0ckoRzm-pdQuu9gwFlJe2wOqzf772QDHY7yLLoY9U,2173
968
968
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
969
969
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=c0AiqB_CMW9DzAJWRRe86-LJAPIaRQai7JOm7Gco6Pw,3030
@@ -972,7 +972,7 @@ cirq/sim/clifford/stabilizer_sampler.py,sha256=JE30zh0SOlE1MswbFtZE_Rfc831qkB3pg
972
972
  cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
973
973
  cirq/sim/clifford/stabilizer_simulation_state.py,sha256=7ZQyFGbzkWC6kh4_jmZvtW5mLPapEoe61lye43tzfso,6704
974
974
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
975
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=EWSVRig2ZxpVamCXL8TTTcBIJaHCxeUmWohPhzrsztE,14155
975
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=5C98LYTa7B8uVvQvkWSyjVCrPL2Xe6S7jSzlkLD42xg,14227
976
976
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=UuvgpwexGB5LzMfaa3Gws2vHhC9pyHrqW_gDtx_pAYM,3201
977
977
  cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
978
978
  cirq/study/flatten_expressions.py,sha256=q9U-AukDri63yC4pF_dEKCX81RfquK4z31ktLkL0gz0,15528
@@ -980,30 +980,30 @@ cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f
980
980
  cirq/study/resolver.py,sha256=TozodaKHKobwTKVR3g3DblzPljTrErAxVHryZVwpraQ,11747
981
981
  cirq/study/resolver_test.py,sha256=LY1h8RCPY4d_8O5hprRcIf3HFhzODQrMbUrmwmt1fbM,10727
982
982
  cirq/study/result.py,sha256=ci9Pg9IW4OMR4aZ4SaQ7TPVTgoSU-1WarjKEXBv2F2g,19214
983
- cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
983
+ cirq/study/result_test.py,sha256=VdzUNYcyIwFmoaaj9Ahi8jzepwH3TrN4JEY-JHECgBs,15805
984
984
  cirq/study/sweepable.py,sha256=UlpkVE9oLOgdpz0WHpQMq1ZRVbsM3r_CGM6okYr165I,4308
985
- cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
985
+ cirq/study/sweepable_test.py,sha256=mSbCVpYp200Xdy1c2kXQg1aFmGTrmJy36nvMJDbXRmw,5717
986
986
  cirq/study/sweeps.py,sha256=vGNedvDb_qypXtmz-fdtFO2aePMlvLhLj_rHzE4as2k,21567
987
- cirq/study/sweeps_test.py,sha256=fiOKKnDyD-Ju7xeQM7A9pKkfR58VHXKdc0qw9d0MwRA,17231
987
+ cirq/study/sweeps_test.py,sha256=N1FkYy4SX9qPeWOEB5XD7h0ITdOp6Eyt62GNwn8bbpU,17653
988
988
  cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
989
989
  cirq/testing/circuit_compare.py,sha256=vWgMVa-TVwTRUMyEvNV6Ah3CMRlZYVo1xn41MsCTHzo,18766
990
- cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
990
+ cirq/testing/circuit_compare_test.py,sha256=MqsI03YdleFzh-HJHh1u9ClqkUwIV8cWkzPCbNM8WjY,19934
991
991
  cirq/testing/consistent_act_on.py,sha256=hE_6fRPcmlvgRf2bHkB0XS4jnh_cR2PVS-g9YyNIijo,7670
992
992
  cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
993
- cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
993
+ cirq/testing/consistent_channels.py,sha256=_-RNKWR7GQNjp5K42g0NyM11Kp4vtqMCPCEtYJd3oAo,1789
994
994
  cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
995
- cirq/testing/consistent_controlled_gate_op.py,sha256=kYWpELVPT5c-bxTTNkWceiuEJDdsKheO3ZV0N1mTnpk,2665
995
+ cirq/testing/consistent_controlled_gate_op.py,sha256=moUm27G_3caAQdvD4fKG78XWKZ1Dmw36yn-r9yODYxk,2673
996
996
  cirq/testing/consistent_controlled_gate_op_test.py,sha256=-Uzm7T3HFKSE8jPfTPi9ElJaXCHqaOpbfjFvD1un5rE,3221
997
- cirq/testing/consistent_decomposition.py,sha256=mkOmMAMPr0B215n-nSX3yxHxA45HwTb7G0KFEIr69jI,3665
997
+ cirq/testing/consistent_decomposition.py,sha256=56HMW5RnOJBH5uAI9dhx3og51DCyG9WgWz6i6yykCfI,3687
998
998
  cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
999
999
  cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
1000
1000
  cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
1001
- cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
1001
+ cirq/testing/consistent_phase_by.py,sha256=rIYf0ISZreoZ2NFyqjnVIwhaMBi2cUgwPBCmmGQvMSo,2129
1002
1002
  cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
1003
1003
  cirq/testing/consistent_protocols.py,sha256=w8KIfrNPmp5IpKqUntdZbtIOIa1JyN34q6RGb3cF7Tg,7468
1004
1004
  cirq/testing/consistent_protocols_test.py,sha256=U9lzwbnjAwQVcL8fRN5MpHSgUj4faRA3pt5Z6uEPOwQ,10003
1005
- cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
1006
- cirq/testing/consistent_qasm_test.py,sha256=5qpvWQt6KS4ltp-ia8LE4YrgmWSVo3hwcJplQsFIvww,2915
1005
+ cirq/testing/consistent_qasm.py,sha256=Jhlb8iPo-8YmiWFOoKQZTFJVTOXYabUQhLcNg1BNkfQ,5071
1006
+ cirq/testing/consistent_qasm_test.py,sha256=EjZFgjhKemO8B-0q3Nzx2H0lvsbT5HIIPMYNGzkNLbE,2955
1007
1007
  cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
1008
1008
  cirq/testing/consistent_specified_has_unitary.py,sha256=gFFhitFqLnEy3rYmtZVkZ_wq5eVt7A8SUT0kbl8g6n8,1093
1009
1009
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
@@ -1075,7 +1075,7 @@ cirq/transformers/dynamical_decoupling.py,sha256=LP0Hrp7XqfVRmSy_wQX85GKPgK1Vy2_
1075
1075
  cirq/transformers/dynamical_decoupling_test.py,sha256=wQUCw99ODghLmluox9-3rg-w_A1vEVa96dFmKXWC2m0,45171
1076
1076
  cirq/transformers/eject_phased_paulis.py,sha256=gK1XIslsBPFcppUFacbhvzfhcnK5ZSVcyLN1SM5wTEE,14072
1077
1077
  cirq/transformers/eject_phased_paulis_test.py,sha256=o5cK5zvcOMflFGQiXDiVBx-Cz_eA0EzTBXnujJ23O3s,14244
1078
- cirq/transformers/eject_z.py,sha256=3u0Q0WGGAxmZuPnyiU4q04gJMnY--0nvhF4eotnSl9k,5803
1078
+ cirq/transformers/eject_z.py,sha256=T6hbjn_7jCv2fRIqfHKMOe-D0CbcxU8iCCeCtZLyWJg,5844
1079
1079
  cirq/transformers/eject_z_test.py,sha256=mKa-xViF9ZyuJpHWeqmYfPHL-3AGNTTfe0yHaXYHRZ8,13226
1080
1080
  cirq/transformers/expand_composite.py,sha256=jDuipLc-9uYKGogQ7HAH0NLg5qb1uhdxh1nFWBYWkPk,2402
1081
1081
  cirq/transformers/expand_composite_test.py,sha256=l-4EZqj0CN9NJJRYSvvAYLkIvQ9t2YAPtkCnuKs-KJU,8677
@@ -1234,8 +1234,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
1234
1234
  cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1235
1235
  cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
1236
1236
  cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1237
- cirq_core-1.7.0.dev20250911180440.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
- cirq_core-1.7.0.dev20250911180440.dist-info/METADATA,sha256=47ShaMjH8g5w_ELAQqyjkNknU_TI-brYDFD5ffq9Yyw,4758
1239
- cirq_core-1.7.0.dev20250911180440.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
- cirq_core-1.7.0.dev20250911180440.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
- cirq_core-1.7.0.dev20250911180440.dist-info/RECORD,,
1237
+ cirq_core-1.7.0.dev20250917002151.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
+ cirq_core-1.7.0.dev20250917002151.dist-info/METADATA,sha256=FqxIlIRzJo7zx73HMtZSJ9QG5HNJYfU4M7VKx2dG3t8,4758
1239
+ cirq_core-1.7.0.dev20250917002151.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
+ cirq_core-1.7.0.dev20250917002151.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
+ cirq_core-1.7.0.dev20250917002151.dist-info/RECORD,,