cirq-core 1.3.0.dev20231201164435__py3-none-any.whl → 1.4.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 (157) hide show
  1. cirq/__init__.py +4 -0
  2. cirq/_compat.py +9 -11
  3. cirq/_compat_test.py +45 -56
  4. cirq/_version.py +31 -1
  5. cirq/_version_test.py +1 -1
  6. cirq/circuits/circuit.py +13 -8
  7. cirq/circuits/circuit_operation.py +2 -1
  8. cirq/circuits/circuit_test.py +2 -2
  9. cirq/circuits/frozen_circuit.py +3 -2
  10. cirq/circuits/moment.py +12 -10
  11. cirq/circuits/qasm_output.py +5 -1
  12. cirq/circuits/qasm_output_test.py +25 -10
  13. cirq/contrib/qcircuit/qcircuit_diagram_info.py +9 -7
  14. cirq/contrib/quimb/mps_simulator_test.py +1 -1
  15. cirq/contrib/quimb/state_vector.py +9 -2
  16. cirq/contrib/svg/svg.py +2 -1
  17. cirq/contrib/svg/svg_test.py +1 -0
  18. cirq/devices/grid_qubit.py +85 -32
  19. cirq/devices/grid_qubit_test.py +22 -4
  20. cirq/devices/line_qubit.py +74 -26
  21. cirq/devices/line_qubit_test.py +19 -0
  22. cirq/devices/noise_utils.py +33 -31
  23. cirq/devices/noise_utils_test.py +1 -84
  24. cirq/devices/superconducting_qubits_noise_properties.py +7 -6
  25. cirq/experiments/__init__.py +8 -0
  26. cirq/experiments/qubit_characterizations.py +288 -44
  27. cirq/experiments/qubit_characterizations_test.py +61 -7
  28. cirq/experiments/random_quantum_circuit_generation.py +1 -1
  29. cirq/experiments/single_qubit_readout_calibration.py +132 -6
  30. cirq/experiments/single_qubit_readout_calibration_test.py +3 -1
  31. cirq/experiments/t1_decay_experiment.py +14 -7
  32. cirq/experiments/t1_decay_experiment_test.py +14 -26
  33. cirq/experiments/two_qubit_xeb.py +483 -0
  34. cirq/experiments/two_qubit_xeb_test.py +304 -0
  35. cirq/json_resolver_cache.py +2 -0
  36. cirq/linalg/decompositions.py +11 -13
  37. cirq/linalg/decompositions_test.py +1 -3
  38. cirq/linalg/diagonalize.py +5 -4
  39. cirq/linalg/predicates.py +8 -6
  40. cirq/linalg/transformations.py +2 -1
  41. cirq/linalg/transformations_test.py +1 -1
  42. cirq/ops/__init__.py +2 -0
  43. cirq/ops/clifford_gate.py +59 -16
  44. cirq/ops/common_gates_test.py +1 -2
  45. cirq/ops/control_values.py +4 -3
  46. cirq/ops/controlled_gate_test.py +1 -3
  47. cirq/ops/gate_operation.py +10 -1
  48. cirq/ops/named_qubit.py +74 -28
  49. cirq/ops/named_qubit_test.py +19 -0
  50. cirq/ops/parity_gates.py +5 -0
  51. cirq/ops/parity_gates_test.py +2 -10
  52. cirq/ops/pauli_gates.py +5 -2
  53. cirq/ops/pauli_string.py +2 -2
  54. cirq/ops/permutation_gate.py +16 -18
  55. cirq/ops/phased_iswap_gate_test.py +1 -3
  56. cirq/ops/phased_x_gate.py +1 -1
  57. cirq/ops/phased_x_z_gate.py +17 -1
  58. cirq/ops/phased_x_z_gate_test.py +24 -0
  59. cirq/ops/qid_util.py +4 -8
  60. cirq/ops/qubit_manager.py +7 -4
  61. cirq/ops/qubit_manager_test.py +20 -0
  62. cirq/ops/raw_types.py +5 -2
  63. cirq/ops/raw_types_test.py +14 -15
  64. cirq/ops/uniform_superposition_gate.py +123 -0
  65. cirq/ops/uniform_superposition_gate_test.py +94 -0
  66. cirq/protocols/approximate_equality_protocol_test.py +2 -2
  67. cirq/protocols/circuit_diagram_info_protocol.py +6 -4
  68. cirq/protocols/commutes_protocol.py +2 -4
  69. cirq/protocols/decompose_protocol.py +7 -12
  70. cirq/protocols/decompose_protocol_test.py +7 -3
  71. cirq/protocols/has_stabilizer_effect_protocol.py +1 -5
  72. cirq/protocols/has_stabilizer_effect_protocol_test.py +13 -4
  73. cirq/protocols/json_serialization.py +51 -181
  74. cirq/protocols/json_serialization_test.py +13 -47
  75. cirq/protocols/json_test_data/CircuitOperation.json +131 -148
  76. cirq/protocols/json_test_data/CircuitOperation.json_inward +55 -0
  77. cirq/protocols/json_test_data/CircuitOperation.repr_inward +6 -0
  78. cirq/protocols/json_test_data/FrozenCircuit.json +196 -210
  79. cirq/protocols/json_test_data/FrozenCircuit.json_inward +35 -0
  80. cirq/protocols/json_test_data/FrozenCircuit.repr_inward +4 -0
  81. cirq/protocols/json_test_data/UniformSuperpositionGate.json +5 -0
  82. cirq/protocols/json_test_data/UniformSuperpositionGate.repr +1 -0
  83. cirq/protocols/json_test_data/cirq.MSGate.json +4 -0
  84. cirq/protocols/json_test_data/cirq.MSGate.repr +1 -0
  85. cirq/protocols/json_test_data/spec.py +2 -0
  86. cirq/protocols/pow_protocol_test.py +1 -3
  87. cirq/protocols/resolve_parameters.py +4 -2
  88. cirq/qis/__init__.py +10 -0
  89. cirq/qis/clifford_tableau.py +8 -2
  90. cirq/qis/noise_utils.py +123 -0
  91. cirq/qis/noise_utils_test.py +97 -0
  92. cirq/sim/classical_simulator.py +227 -87
  93. cirq/sim/classical_simulator_test.py +135 -0
  94. cirq/sim/clifford/clifford_simulator_test.py +4 -2
  95. cirq/sim/mux.py +5 -3
  96. cirq/sim/simulation_product_state.py +15 -10
  97. cirq/sim/simulation_state.py +1 -1
  98. cirq/sim/simulation_state_test.py +2 -2
  99. cirq/sim/simulator_base.py +3 -3
  100. cirq/sim/state_vector_simulation_state.py +4 -4
  101. cirq/sim/state_vector_simulator.py +17 -2
  102. cirq/study/__init__.py +1 -0
  103. cirq/study/result.py +14 -0
  104. cirq/study/result_test.py +6 -0
  105. cirq/study/sweeps.py +4 -2
  106. cirq/study/sweeps_test.py +8 -0
  107. cirq/testing/__init__.py +6 -1
  108. cirq/testing/_compat_test_data/__init__.py +3 -3
  109. cirq/testing/_compat_test_data/module_a/__init__.py +2 -2
  110. cirq/testing/circuit_compare.py +1 -1
  111. cirq/testing/consistent_qasm.py +6 -0
  112. cirq/testing/gate_features.py +10 -0
  113. cirq/testing/lin_alg_utils.py +5 -3
  114. cirq/transformers/__init__.py +15 -0
  115. cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +3 -1
  116. cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +24 -0
  117. cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py +17 -0
  118. cirq/transformers/dynamical_decoupling.py +122 -0
  119. cirq/transformers/dynamical_decoupling_test.py +123 -0
  120. cirq/transformers/gauge_compiling/__init__.py +26 -0
  121. cirq/transformers/gauge_compiling/cz_gauge.py +46 -0
  122. cirq/transformers/gauge_compiling/cz_gauge_test.py +23 -0
  123. cirq/transformers/gauge_compiling/gauge_compiling.py +214 -0
  124. cirq/transformers/gauge_compiling/gauge_compiling_test.py +41 -0
  125. cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py +83 -0
  126. cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py +52 -0
  127. cirq/transformers/gauge_compiling/iswap_gauge.py +105 -0
  128. cirq/transformers/gauge_compiling/iswap_gauge_test.py +23 -0
  129. cirq/transformers/gauge_compiling/spin_inversion_gauge.py +33 -0
  130. cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py +37 -0
  131. cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +64 -0
  132. cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py +27 -0
  133. cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py +94 -0
  134. cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py +22 -0
  135. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +1 -0
  136. cirq/transformers/merge_k_qubit_gates_test.py +23 -23
  137. cirq/transformers/merge_single_qubit_gates_test.py +14 -14
  138. cirq/transformers/optimize_for_target_gateset.py +39 -17
  139. cirq/transformers/optimize_for_target_gateset_test.py +189 -39
  140. cirq/transformers/qubit_management_transformers.py +1 -1
  141. cirq/transformers/routing/visualize_routed_circuit_test.py +17 -17
  142. cirq/transformers/stratify_test.py +13 -13
  143. cirq/transformers/target_gatesets/compilation_target_gateset.py +26 -2
  144. cirq/transformers/target_gatesets/compilation_target_gateset_test.py +16 -16
  145. cirq/transformers/target_gatesets/cz_gateset.py +4 -0
  146. cirq/transformers/transformer_api.py +1 -2
  147. cirq/transformers/transformer_primitives.py +15 -14
  148. cirq/transformers/transformer_primitives_test.py +99 -72
  149. cirq/value/classical_data.py +6 -6
  150. cirq/value/value_equality_attr.py +4 -0
  151. cirq/work/sampler.py +3 -4
  152. cirq/work/sampler_test.py +25 -0
  153. {cirq_core-1.3.0.dev20231201164435.dist-info → cirq_core-1.4.0.dist-info}/METADATA +10 -19
  154. {cirq_core-1.3.0.dev20231201164435.dist-info → cirq_core-1.4.0.dist-info}/RECORD +157 -130
  155. {cirq_core-1.3.0.dev20231201164435.dist-info → cirq_core-1.4.0.dist-info}/WHEEL +1 -1
  156. {cirq_core-1.3.0.dev20231201164435.dist-info → cirq_core-1.4.0.dist-info}/LICENSE +0 -0
  157. {cirq_core-1.3.0.dev20231201164435.dist-info → cirq_core-1.4.0.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,13 @@
1
- cirq/__init__.py,sha256=GlOnPWDvat-Y203LsbXhkC0UnGm9HHiNx2ywz7Bkc3o,15708
2
- cirq/_compat.py,sha256=YPvewnC0gajEIRjauyz_EuDzs38g-bIBkY_0h91U4Pc,29363
3
- cirq/_compat_test.py,sha256=84X6ELsb5fv3Hc0_ly8-IQfMnCNQN6tHs6GZFrnuNyI,35005
1
+ cirq/__init__.py,sha256=dEwUzkNCNrL4qNyln6GUUrk7vGxY8OXNG9lk_C2gi6w,15796
2
+ cirq/_compat.py,sha256=2tkJ50ID2PXzmMNuTfQrsZqqRSblTmfu3Y7g742gojs,29342
3
+ cirq/_compat_test.py,sha256=Qq3ZcfgD-Nb81cEppQdJqhAyrVqXKtfXZYGXT0p-Wh0,34718
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=A3m-extkhgUNJifT2sMzYwYksFiTtoJib0JBhM57Mig,40
8
- cirq/_version_test.py,sha256=Ea3ZNdQKZBsZrSc9xle7TUdT9bUINs-qezPruQ_m38s,133
7
+ cirq/_version.py,sha256=YyAPJb5FCRB9s7ofyNADxFyJwYgkmLkVADi19FOLKYE,1188
8
+ cirq/_version_test.py,sha256=Q6snDH6uCNDl5CFufwmGamBfVWik8Ei92FExfm8fvz8,129
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=S0HaPOCUIck-vNSQlS6KxnQtle6w-2dGuSxkUbJQY9Y,13168
10
+ cirq/json_resolver_cache.py,sha256=ytePZtNZgKjOF2NiVpUTuotB-JKZmQNOFIFdvXqsxHw,13271
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
@@ -17,20 +17,20 @@ cirq/circuits/_box_drawing_character_data.py,sha256=QLoCXwcLL7091RdxEKO259goxt4R
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=9if8V9V5PU7oR6jUi9YHeP2uSGdFZ-F0qJdFnbMxOKY,114214
21
- cirq/circuits/circuit_operation.py,sha256=qdJshRvGRFKwin7Ec_RndIb2Fm3sh7-N9SarEZo6AXM,34354
20
+ cirq/circuits/circuit.py,sha256=iYdNez1apyEOrLWQIx6qT89Yddl083t6iWlocB74apA,114406
21
+ cirq/circuits/circuit_operation.py,sha256=D4u8jDD4fGOca1xnZPN1obuKTIouXENUfnxOF2JrwgU,34375
22
22
  cirq/circuits/circuit_operation_test.py,sha256=_0iQJ3h_dnQcQmbGRZbc-NqdglJTXantbj72ggqLKNE,44724
23
- cirq/circuits/circuit_test.py,sha256=EYIApq2DpZe7HckvySR3JlJdUIfJTSbKHm0lgENP2HA,160111
24
- cirq/circuits/frozen_circuit.py,sha256=GnFZ6kT1hFpxK6sOzqy1hq2SnKbG7OSu0q3bfGwi7b8,9240
23
+ cirq/circuits/circuit_test.py,sha256=_hb29zDdLaEuUTROtVc5VKpmtlsHQGFyDlKQ2Nxqc3s,160103
24
+ cirq/circuits/frozen_circuit.py,sha256=_0SkmIiQ4UjIug-k_iO00ulDFoFnxmAHvXX2I2HHN8k,9262
25
25
  cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
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=PVe8sau4HOVQMRLyPnDYs0JCam_3F8G0onwsOvIgTD4,25752
28
+ cirq/circuits/moment.py,sha256=KirArxosPcoin5yxfnG4tWVzB0A6OjZGws_LJcK5Sfo,25864
29
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
- cirq/circuits/qasm_output.py,sha256=DvERpI5X7F57raJRcuUBe06YWCObB1KLHkBbu1DF8fg,11728
33
- cirq/circuits/qasm_output_test.py,sha256=xu_LH3bY-8XAK5vDP0ulcEehVrBsYb6XWZ8o2d3C47U,12254
32
+ cirq/circuits/qasm_output.py,sha256=3cN7m0-pztNqkJTzLZEWt0aD-CC008WItz94Abut9H4,12032
33
+ cirq/circuits/qasm_output_test.py,sha256=pQjA8bsiT9MryXZqiWOiN5uIYsI5k22XowcZx0bcKDk,12539
34
34
  cirq/circuits/text_diagram_drawer.py,sha256=ctZUG5fk2pf4XswHTJG4kteQYzzH0TefL9JWUagLJvc,17232
35
35
  cirq/circuits/text_diagram_drawer_test.py,sha256=2bSoBIeQajRi0aQxqYDpbMlT2eqpx_f-Cmg9XO6A9Jk,10750
36
36
  cirq/contrib/__init__.py,sha256=q8NwuMeqIzKaLsO9L6eKuZbGpldBsvaiIPWou37sZjo,1006
@@ -113,7 +113,7 @@ cirq/contrib/qasm_import/qasm.py,sha256=CP444IWCw4zlDNA7HxsTJ2xIak4mZhQv62ZiLlUc
113
113
  cirq/contrib/qasm_import/qasm_test.py,sha256=e5b7LVn_6FIFZ6kINqMzJFIjzgtTgutVhgXgX_DcTc0,1861
114
114
  cirq/contrib/qcircuit/__init__.py,sha256=pvKF0Kpkedp-0L75YwFv0lktMbl82_wsjERnQBOTuq4,874
115
115
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_q9V9GFeQ_n0I,2749
116
- cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=9ZWKDOwYrrruIGlPOxmehWdNlNbYi48MXTerZjy1Mlg,4496
116
+ cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
118
118
  cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=cLE5Ikypxpi5anx48FEyDJVh2kv4DbRU-7F0iaaTu4Q,2412
119
119
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=TJI1mmIEhKkTQ-z1RBvLYU8oMu__x_eLP9aWAicJWjc,6021
@@ -126,8 +126,8 @@ cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2
126
126
  cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
127
127
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
128
128
  cirq/contrib/quimb/mps_simulator.py,sha256=wz7Et54hzoShXtxrXrJ2T2Im5c_hvz7N-SCaAQ3G7qk,24705
129
- cirq/contrib/quimb/mps_simulator_test.py,sha256=w97Czn1aX4pj6m5w2StFP2W9C5ZpRUxecFOL6jwBXnQ,17001
130
- cirq/contrib/quimb/state_vector.py,sha256=WziCD7uMeh-cHI6F6DJCjqFKOtji_us2rf0vQhvtnvc,6686
129
+ cirq/contrib/quimb/mps_simulator_test.py,sha256=6sjC95Ba4WCFoI6zlJmZCYi8GFwI58wkpXQdAoF2Sms,17007
130
+ cirq/contrib/quimb/state_vector.py,sha256=kMKNYJ3LLBhQXUCp2jXxCVrp6YLi-PDbrLGoPw7FDqA,6990
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
@@ -148,34 +148,34 @@ cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98
148
148
  cirq/contrib/routing/utils.py,sha256=P0_PnaGfy4Rm6CVl9FE7RpdZ0YzGtimcW1acduvp5rU,3761
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=tbavXvUwj-pQDOGQ5cgEvp5DJrXDPA52IGdk6TIPgYQ,9342
152
- cirq/contrib/svg/svg_test.py,sha256=mA9Z0rP3ASVNIYifjPuuSQmaSJ4LKMnKd58-WkB_XZ4,2348
151
+ cirq/contrib/svg/svg.py,sha256=d4_XgDNb8o1lDINVJA44XXunGmK71qTAlqw2sc_UnAo,9366
152
+ cirq/contrib/svg/svg_test.py,sha256=gBHXeosNRHzrKWVo-JwhZLguHbksKQSiFwZ8fUXp-a8,2379
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=9wGuTTaiXBTU5yCZZbFJsMZpIMAieqlHQzsdDzijoGk,16009
159
- cirq/devices/grid_qubit_test.py,sha256=cmhnli54QrbGcjOtPaAfUKpOjJBapuRapM4xgXHPOtM,13327
158
+ cirq/devices/grid_qubit.py,sha256=gB8PKjYlVjKV1DMr0w5rHKY6L0PlH2U2SZpogPbnF2k,18484
159
+ cirq/devices/grid_qubit_test.py,sha256=EzI8dWWnCfYbwruwsKlBzb41lQTA6AEOB2X16oQAz-0,14044
160
160
  cirq/devices/insertion_noise_model.py,sha256=-X07pSTp-lxQj6AQT_89gTHx_jKtI9GSMrD4dozCwTs,3614
161
161
  cirq/devices/insertion_noise_model_test.py,sha256=i9jB257VXO5wi5QdDO5G4tphx5RKMaouUsdsQT3kiBU,3992
162
- cirq/devices/line_qubit.py,sha256=eZHrgbJSK1XwSrY19e5W96FsYhBKqvwyZwY_Kx3X9eU,9511
163
- cirq/devices/line_qubit_test.py,sha256=YrwC-tIr6Ei_2vvWcYuJqGm3TDDgoBfdDHDnh4VltcU,8942
162
+ cirq/devices/line_qubit.py,sha256=H-a6j_jgVZp-14osEyXf2hYjvDDUXa7QBEuA3tJFEG0,11519
163
+ cirq/devices/line_qubit_test.py,sha256=_X1ofFHtuo0myFfsu1nlTJf9OLuLWRgZHHW2VG23ERY,9547
164
164
  cirq/devices/named_topologies.py,sha256=grFXvi0UDHZl1pRyHDWSqjub3xF_Yf7RLXfMAZbyoEA,15790
165
165
  cirq/devices/named_topologies_test.py,sha256=Nj_tlGmqPH7IVUzpUHPnAPlfUWhSGbZsIHdsLLjxIZs,4736
166
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=DyaaNl2VlDFX38x4J7Zu5EMJBIj8bCDUYwSjbkBfXUA,5085
169
169
  cirq/devices/noise_properties_test.py,sha256=JTJW8_-rI4awd9jTbCgI5l8MpeDsNlXnO53s8QgJw2A,2341
170
- cirq/devices/noise_utils.py,sha256=q7LR7mT__oHYoCmmPln1PnsVa94p0i9ONjqKlcka5_o,6722
171
- cirq/devices/noise_utils_test.py,sha256=ha_P9Z_eycH97QIQ27WmwnvGM1CBUVoaJO8oy-VnIWI,4841
172
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=Fg4S23uBPIBZWKdDyJ7AAZ_ajT1Vd6n1WxJ-k-0VUlM,8125
170
+ cirq/devices/noise_utils.py,sha256=_9sogndFl7OdcthZg7Q88qvN09mNnoCvZB6HrvtlciY,7165
171
+ cirq/devices/noise_utils_test.py,sha256=cMSiNoOIPeo40t13b3R2-RrFUITjJhOoKj1UGpmJ3cs,2063
172
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=OtnIrpLmgBhKlJJrUrrcrJIap2qAolqsd8jIug5vtxw,8145
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
176
176
  cirq/devices/unconstrained_device.py,sha256=cnwn1caPDj7GnBf9_GYX6jMCTCWi4q5g3RkLaVKnDLY,1525
177
177
  cirq/devices/unconstrained_device_test.py,sha256=OF9E2m1HPpq6hyrNAwFGWaNOpQ3H2efAEj6V8Y-hRW4,832
178
- cirq/experiments/__init__.py,sha256=3JM23uG0gKC6lI3q6-bTN-aLVr4q_6gqUILyBcIMWEw,2163
178
+ cirq/experiments/__init__.py,sha256=sI0GTT5amnGanHePsJxM5Ljd9Fc_K1rm7C5Uuj68rE8,2356
179
179
  cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
180
180
  cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
181
181
  cirq/experiments/grid_parallel_two_qubit_xeb.py,sha256=ROJZiXLaeF5IYo06DxeIvDHpwNJTIiqEAfKxs6v0vHM,2216
@@ -184,18 +184,20 @@ cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYF
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=cXREBqUIx4Z9hS57LbmWUkP0RL1McwZsUATGUil4W4E,27658
188
- cirq/experiments/qubit_characterizations_test.py,sha256=h0fd3y-wI2C7sVmjnjBgt7HuaU_IaOJ9trAnoiKL22c,7695
189
- cirq/experiments/random_quantum_circuit_generation.py,sha256=S-nc9SiGhKmcd4cqIl9UOAV4SMkRwn-U9w09e-K32ZY,28132
187
+ cirq/experiments/qubit_characterizations.py,sha256=Zi925SVZ0U5HbkyuGD6BspjzPAhsqOe5gLxNgZy0FrQ,36702
188
+ cirq/experiments/qubit_characterizations_test.py,sha256=b_ONqxyW6s01Ts8T65BEdb4e8Xy24Qp4zTGXWesL0ic,9733
189
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=R_w7z35plUHEYBY0-F80bPcWJSSSjNQDaP2GbxVBEZg,28143
190
190
  cirq/experiments/random_quantum_circuit_generation_test.py,sha256=1rvgN8-Ajedn_70FyYKVzjvzR6NVpHj6KQgo6tra-Jc,15995
191
191
  cirq/experiments/readout_confusion_matrix.py,sha256=gsRjGJTDcxRPtY7G63t-nYoJ1BcByC1jl02zHh2B8fQ,17278
192
192
  cirq/experiments/readout_confusion_matrix_test.py,sha256=R4UoGklVJ2owqeDTRVP4M9gYynzVYgw-Y76VLcoIJtY,6766
193
- cirq/experiments/single_qubit_readout_calibration.py,sha256=F3sFivMhTAkeFPYLnXrHyx8JAIKbH4Lo5RFCsFWNsXM,9725
194
- cirq/experiments/single_qubit_readout_calibration_test.py,sha256=U7roQDUkPvkEkpCX5gx9i4AM3r9p4Fy3JkufGLrfijE,7625
195
- cirq/experiments/t1_decay_experiment.py,sha256=dQ9DF84im2vIkxCjrbfn5oCQkTajlXIEJU3_iClu9s4,6812
196
- cirq/experiments/t1_decay_experiment_test.py,sha256=B2oDyVL0bD5saI_5kh0h70b8mnXvvReavkalrbxdf38,9485
193
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=ZmfsARZ_33Pg4lh5toJaoi4h4RGKHISAfWBODq1Icsg,14599
194
+ cirq/experiments/single_qubit_readout_calibration_test.py,sha256=_002QXj2rIFHkH3vw9iTVMh45vCPuCI_fTqOUK8uMe4,7718
195
+ cirq/experiments/t1_decay_experiment.py,sha256=ealdmc_RTE__z1YUcaDEncDzQOaiT0K6IRWB7lNtPfs,7087
196
+ cirq/experiments/t1_decay_experiment_test.py,sha256=Pgbm-37JiCdw9iQg2OaXVvs72xGWV2629CgsTQlLQnw,9139
197
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
+ cirq/experiments/two_qubit_xeb.py,sha256=wdLxBi3LrAlPF-SQV9Tf66k31XC2cVHNPhpR-VLvCao,17762
200
+ cirq/experiments/two_qubit_xeb_test.py,sha256=Tlr32vuJpyepkMBVVkN6ipjRyDr8DIixfBumEeGXzDM,10073
199
201
  cirq/experiments/xeb_fitting.py,sha256=54FKzGqhZgyvAkP_AR2-7peDnL-PJxOp-MkQdfp8bfU,27178
200
202
  cirq/experiments/xeb_fitting_test.py,sha256=nfFhKPr_Nx5rbfCcvrcUFQxphCZuTnJVnpT-xBjxRFI,14349
201
203
  cirq/experiments/xeb_sampling.py,sha256=plcwC4GNV2hW39ZFPBG1jWMnSIWcMh5rwsV8i6cQ_t4,15266
@@ -244,41 +246,41 @@ cirq/ion/__init__.py,sha256=GKBoQfjGrCOkVQR1MqK32s9YxA8PsrKecekz7LChUlk,734
244
246
  cirq/linalg/__init__.py,sha256=iMN1jVWzuZrSdHuE-gN2N1QyP0q6wgj6F4zetxJLCJQ,2527
245
247
  cirq/linalg/combinators.py,sha256=5q_cNjnJrDgC7qMX8rYdnCmBKXT_iVbtxnCeJQ4ZPTM,5350
246
248
  cirq/linalg/combinators_test.py,sha256=nZ3snkVA2nAOZ6WJK1hNd1f_i2a5xNdnostfMD1upbc,4699
247
- cirq/linalg/decompositions.py,sha256=zygYsIqoBtfg7Cd6zAsUGiHTmnPE75TedUCXr6a-NFU,39141
248
- cirq/linalg/decompositions_test.py,sha256=sWNiMgZDtAFRu3qNJxKNiRGI-wvy1Ot0hh3jorKK9Lw,25822
249
- cirq/linalg/diagonalize.py,sha256=N9otosGfSBPZasIbha7SE2BPQkUQdWe8Rd4MXQ1HTZ8,9978
249
+ cirq/linalg/decompositions.py,sha256=hqo76094MnUrMUe1BFQagfB3fArEPjo8Jkb1fEL2Yc8,39225
250
+ cirq/linalg/decompositions_test.py,sha256=-6q2u3BDG9b32QSUAjhmBNWrL3KzyiMH_R0WIHhdOqU,25790
251
+ cirq/linalg/diagonalize.py,sha256=Ym7C0JTAC9xfRQDYI72U6NxMYg0DfchjfXcbdg_92QE,10051
250
252
  cirq/linalg/diagonalize_test.py,sha256=H-JcLvcCBdN-DrKo2o1Gs7B8Q9SU70oAZmdT4yTLAi4,9089
251
253
  cirq/linalg/operator_spaces.py,sha256=uZSc9154p63R2UqFw6pniuWcUo20epe5RK6bL3tpkbM,3813
252
254
  cirq/linalg/operator_spaces_test.py,sha256=k2aVBYuU6ehXx_6puApE-sFxEBrOki0t0KeNbBK94hs,10097
253
- cirq/linalg/predicates.py,sha256=y8cva_SXS5UXz7waAGMJRXuPY9nGSvBSidmnVo8Zp8k,11918
255
+ cirq/linalg/predicates.py,sha256=Q8BTlR4EvPg2KP9VodK78UEWYJbSCOTqRahn1DnFmSc,12056
254
256
  cirq/linalg/predicates_test.py,sha256=UVDkNH2ujI80JwJwsDjbTgyALZUQJAVVCoFN1T_LLf0,21503
255
257
  cirq/linalg/tolerance.py,sha256=ZBZOc5h7UgrKzyOStlcTRwupkjVzQu9-AwjNCCz1ZKE,1879
256
258
  cirq/linalg/tolerance_test.py,sha256=wnmuXIGEn_mugGoNm3AigSgjV2DMFdj8xpgRTMBbO7A,2355
257
- cirq/linalg/transformations.py,sha256=xlIpUYWH-yyjoogKjHjrlAKPWIe875Ih0b4qocP2Ju8,32082
258
- cirq/linalg/transformations_test.py,sha256=5XEEDlwe-TgUnrU6vejJIZ2wpLCo7fkiuwocHxnpHW0,25097
259
+ cirq/linalg/transformations.py,sha256=errpuYfF2Cxdn2zN1NWAMfFHwu77Mfr5g3lk_MJceDI,32143
260
+ cirq/linalg/transformations_test.py,sha256=ofrqw8H9109vVDBelSGkMjTPkmNinYsin4rvUE_iSn4,25095
259
261
  cirq/neutral_atoms/__init__.py,sha256=D0ewdZZvXM_PC7WiyyM8V3WqBAwrpDV_GU_sCIbtw2A,753
260
262
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
261
263
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=mIeGevxs9NoYpfTF_znHL67RrJKVQyQP-DPhn7t9SUA,1862
262
264
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
263
- cirq/ops/__init__.py,sha256=x-M1ZOcdguA563aWyr65Ll-zuT191ek0BXTd-90u3U4,5381
265
+ cirq/ops/__init__.py,sha256=7xt2bPwndo2OhuLLnI5GwBpG9rZHlt1rv7cp-bOBmxM,5455
264
266
  cirq/ops/arithmetic_operation.py,sha256=PBqIwOfADRlsij11Lo1ao_OZM-O8PDlObgZBxGKsYKs,10125
265
267
  cirq/ops/arithmetic_operation_test.py,sha256=axy8xy9IvDb-ATUV-LE1HNWRqCEz06VyZWVrLNOtXXI,4942
266
268
  cirq/ops/boolean_hamiltonian.py,sha256=hjmzBvWiZnb18JfdhId-dVxt2VmbyAbqMSFAPWV7s7I,14883
267
269
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
268
270
  cirq/ops/classically_controlled_operation.py,sha256=bMqKutwzqbvN2r7mOVOI12HTPDGSJLkhQQgfAcTtbDU,9166
269
271
  cirq/ops/classically_controlled_operation_test.py,sha256=MNU0Adff4kTosqsrQ3PUT3ARcZee_PkchT6u0xDl8Qg,48039
270
- cirq/ops/clifford_gate.py,sha256=B1guFN4YvUzqjBPVZH_stYWdi9MicJYjuoByB6rrK_Q,38139
272
+ cirq/ops/clifford_gate.py,sha256=ARbHGptZxQo6kX9QTrh_kZ89N7lW6V3GQSE3o-1kixU,39366
271
273
  cirq/ops/clifford_gate_test.py,sha256=NF_if1X8LCMA9hy0vBO7lxvVPdumlvMMnI2XRQ-RLpk,37472
272
274
  cirq/ops/common_channels.py,sha256=mVGEta2wnaWOhRCXQO6gUj9Zll3rtXqpY-PRYcJ8m1U,38282
273
275
  cirq/ops/common_channels_test.py,sha256=EL_PxbqD3KPC8ioihiukhmW8bUdclqqigKoFyUQpmIM,29690
274
276
  cirq/ops/common_gate_families.py,sha256=e5M8wlDYtdrpWBrhdns6iizIvSqzfxDyIsBdxt8hVMc,8611
275
277
  cirq/ops/common_gate_families_test.py,sha256=Oo3C7BPO3gt3ePuqwsI_lx_lY38et8Ps4AuVydX2Aww,5275
276
278
  cirq/ops/common_gates.py,sha256=YMcadPVRhrvkwYwm6-_TNYM9sz9TY7KSi0g7FvBTeCk,58075
277
- cirq/ops/common_gates_test.py,sha256=_5Kifb5k091qyzEVpryyFJV1e6pJ_fjDCag1PmPAQ2g,46227
278
- cirq/ops/control_values.py,sha256=O_ssaNxd50b4cS0hVhnRY0aEMr8J86TIh6iPohPKf_g,13397
279
+ cirq/ops/common_gates_test.py,sha256=XCVswZbd_k9Y2k5n-2TXnS8CnJoLoC3VmBQN0QijIKw,46218
280
+ cirq/ops/control_values.py,sha256=nNDN6pgz_aWkUfrpOZ9zHHD42AGFaplWhVQj9rmJwbQ,13410
279
281
  cirq/ops/control_values_test.py,sha256=iDtdQjL39u80MaR16XLp00LRZqWgJqC54cIeADWf0IY,12906
280
282
  cirq/ops/controlled_gate.py,sha256=uVTZk6pA1ZpEwbVggLeXyAFq18_QJ38hWYhk9GbvQnc,14253
281
- cirq/ops/controlled_gate_test.py,sha256=5sUUV0xng-GpQOTSiyQqB_LBaTeXXqHehqQuvvw7Cf4,23113
283
+ cirq/ops/controlled_gate_test.py,sha256=6cc9ZY_Obo_ZY4iveaaIv6LXn50REey-t4sThA8qOTs,23099
282
284
  cirq/ops/controlled_operation.py,sha256=sbT1PGUQjV8a014e8TOeZY2N1q6QXF4n0RVJswBtOX0,14014
283
285
  cirq/ops/controlled_operation_test.py,sha256=ioAq2we54vDPAf6ttoUPLWqt1nQzLmkcQ9GQRL60t88,16459
284
286
  cirq/ops/dense_pauli_string.py,sha256=SPrNsgeC2-ETqD2wbZ7R7lOltIUWITqBUHH02dVaMzA,24525
@@ -293,7 +295,7 @@ cirq/ops/fsim_gate.py,sha256=H9Yz2XkUiNk0Mv6aJxL80yxwjvwrB9mO0zDUGF5LDcs,18695
293
295
  cirq/ops/fsim_gate_test.py,sha256=owW1VpXntJqxlzhtppnyfaS9gQKFNA6UzCHksgPHaHU,25165
294
296
  cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
295
297
  cirq/ops/gate_features_test.py,sha256=mnlqJnSpllcOnTUdvmUs_ssnPRhAIgHhKIAK2Z86Dfg,2347
296
- cirq/ops/gate_operation.py,sha256=7Xjhi9dfse1by2TL3aOPiVL8cXyk8ZXfeO57AHe8ajk,13394
298
+ cirq/ops/gate_operation.py,sha256=Fa3O_-bLGAtFznYv-b_RWAn2X4JgvM3yGbqbLcsJkgM,13736
297
299
  cirq/ops/gate_operation_test.py,sha256=ftd-GZxvOtzFS1L153K89_PV1volGroU7G5nFGp9afE,17507
298
300
  cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
299
301
  cirq/ops/gateset_test.py,sha256=BY5UJ1k3NC0jz0d4yocyO1qcQU6e4UbN9mapWE7z7AM,16361
@@ -315,21 +317,21 @@ cirq/ops/measurement_gate.py,sha256=4nZPQ-ckEu8Atv1HGlDUPvXjP4WOlub-O-yPHK28GBw,
315
317
  cirq/ops/measurement_gate_test.py,sha256=XfTDqbYUUc7zsMURh7D3jo8DwKWVVT9uJRBvtTm8Frk,18308
316
318
  cirq/ops/mixed_unitary_channel.py,sha256=k3O4ovH3bFs1WnAZc647IgCK8thC5JnTGxsCzjBacEY,5259
317
319
  cirq/ops/mixed_unitary_channel_test.py,sha256=x8LIAea2KcutNupnRJ_cLy1kmxhbUh3K3BkZtg3OkKQ,5058
318
- cirq/ops/named_qubit.py,sha256=vofPNCxA4JJdMB9I36T70sLUr1aUhBqiWPFD51-0k54,7564
319
- cirq/ops/named_qubit_test.py,sha256=YIfE3NGJxJMTIGLvl8wp1ZwyNTE5NQ_eZs4WgeVY0Sg,4590
320
+ cirq/ops/named_qubit.py,sha256=dcm9Fv8zqlO9vV7-QAcLTEG4UJCHCIyL3SomZGjKImU,9700
321
+ cirq/ops/named_qubit_test.py,sha256=mtJVRe4JzFSNckMQJSGCj1P0VBtpGh--6YxKbIEE3TQ,5221
320
322
  cirq/ops/op_tree.py,sha256=iXsIFcQCciU7C9SiPxhd_zrp4TBGCsmnqxKDjUl1aEo,6159
321
323
  cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
322
324
  cirq/ops/parallel_gate.py,sha256=RSj1SuiwbDCMWxvTmi3xz7oE2QXBFgA59emijh4JPkE,6335
323
325
  cirq/ops/parallel_gate_test.py,sha256=M6o3AyXFQrwyiOTtGxlYH09TbHdjtTxCuMjmn-ALnn0,6298
324
- cirq/ops/parity_gates.py,sha256=JJdw_A9HHiJFVlYfWxp0QPBXtgfHjQYbYH_YFjoU4K4,14208
325
- cirq/ops/parity_gates_test.py,sha256=-Ib4GO4njRHanuTMpGvz_zaQf0siUJNNd_tpEYKUOjg,11462
326
- cirq/ops/pauli_gates.py,sha256=Bya7Qh4QiSeoh3OlTQ8bYvh4-Pwg17TMBxoqMrmdrlw,6933
326
+ cirq/ops/parity_gates.py,sha256=FVXd1h-HqftRAFfYGSmz0URR_lvVG4kpwav0mxf6DtU,14354
327
+ cirq/ops/parity_gates_test.py,sha256=7C0BmJl1HuoyVzfA8-lVCTiE1qNYQhMtyQlVx2uvFKA,11244
328
+ cirq/ops/pauli_gates.py,sha256=sqqQEKEU89cmb1pzLPnrZ5XC0LchSXid8tHLQs8xJnk,6984
327
329
  cirq/ops/pauli_gates_test.py,sha256=bHt7A2w0auWxN9gyKAVeimT1KeOHz5C_CjFHSK1V-Co,7752
328
330
  cirq/ops/pauli_interaction_gate.py,sha256=GQtK5lRw2Uh7hs2GsoRxe-VMlMTO8PxDeZNVT6_qOWI,5499
329
331
  cirq/ops/pauli_interaction_gate_test.py,sha256=U9ORW5Ayx5PESPFiGESzWY-02qHklYcM1mYW56RWe_A,4544
330
332
  cirq/ops/pauli_measurement_gate.py,sha256=tq_OlHlTLQa6yah--afE2UMNdF4a_vfXi8XT8ww2ELc,7215
331
333
  cirq/ops/pauli_measurement_gate_test.py,sha256=uh3J0Ps3V3578V8qkRiEgIl6jBiv8DsXlk_vzLvOEhQ,6720
332
- cirq/ops/pauli_string.py,sha256=RIVNQ-HO0HYUbfGuTZoIJPoGUZuWb-8msFeOucN5CY4,66564
334
+ cirq/ops/pauli_string.py,sha256=HsiSe2fdwE1aodB3CmGahAAzjvcQDxmC9V8R6BbmhGU,66606
333
335
  cirq/ops/pauli_string_phasor.py,sha256=F1Gftw8TDb9qdJjQti6xxbOpXbFUFCVwn3r8073wRbY,17604
334
336
  cirq/ops/pauli_string_phasor_test.py,sha256=HGEPjPc7ySeshOnMJHNjtyckFuEXLvxgy-TtnU6fETM,27582
335
337
  cirq/ops/pauli_string_raw_types.py,sha256=6CgdPWYmOziP4uZbrIsRW0sDSMmV1GioGdAk0owFITU,2240
@@ -337,27 +339,27 @@ cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BE
337
339
  cirq/ops/pauli_string_test.py,sha256=3sE7cAe6szKJ1WW3iI8S3oCYMJkSX4SCwPQWopcMR1Y,73772
338
340
  cirq/ops/pauli_sum_exponential.py,sha256=n3fhKWJVMudzGuOcdPHskVNx3fHE2MAblVdkzbDtcz4,4909
339
341
  cirq/ops/pauli_sum_exponential_test.py,sha256=wVnJ3FSpEimHT8ERVkmljALrgSuuDYo6GRg91uJ7ztk,5370
340
- cirq/ops/permutation_gate.py,sha256=i1BfUsXF2L4w4BlCAw9X2PnQQRE5gG37--fXF3cxihI,4449
342
+ cirq/ops/permutation_gate.py,sha256=5xTXmnjFF3h8kgWV4wDnHBe4foeeqwEm-69I38WmK3k,4176
341
343
  cirq/ops/permutation_gate_test.py,sha256=SwXRgsZNLn5jnGhfcKPJ0J0CIssNzElbFaqylV2TXD8,3281
342
344
  cirq/ops/phased_iswap_gate.py,sha256=8zRuD3uvMt4OFegD9zpEM-foJYbZEYBTIApShUk0BaI,8977
343
- cirq/ops/phased_iswap_gate_test.py,sha256=bYPF9i8AdYEfDESsthJSZGU-E-zP2Pyptcj8uwi0Yk8,6722
344
- cirq/ops/phased_x_gate.py,sha256=Cq6Dw9TSj5aKZkDkc4NY6JsPwKFSMTSX4QIfiAvbTZQ,9964
345
+ cirq/ops/phased_iswap_gate_test.py,sha256=oH3RQ8tlSD0sU5Cf3M0uR92y3M1Xd7Yk3ayOoca9Neg,6708
346
+ cirq/ops/phased_x_gate.py,sha256=QCDhn4tDm_zhjorYWLpP5xOYNByXiaT35nOspJWt5vY,9980
345
347
  cirq/ops/phased_x_gate_test.py,sha256=IpY-Z-MsqtYbyIEdxWu1NqgAJF2B7nddxPc2Hxafr4s,10202
346
- cirq/ops/phased_x_z_gate.py,sha256=eHYMyPiDhlEyzphJDnaTeLdRn96Tns1VfiYv6FtPShU,10812
347
- cirq/ops/phased_x_z_gate_test.py,sha256=8PCwOgGGWL32QIR8m1kBd5JG3Mq9BMDeeVD0aPk1E90,9541
348
+ cirq/ops/phased_x_z_gate.py,sha256=5JhVE5TReg7AKy3hhS2mE1UdvIXFsScF56e8mD15mmw,11534
349
+ cirq/ops/phased_x_z_gate_test.py,sha256=KK5-FD5zoaqZkw7p6UKxFddzaFWoxnQnE8LpCiKtIk8,10690
348
350
  cirq/ops/projector.py,sha256=isDlNLR8YS5CxsVCihtRAgfKZXFFQxk7kuFXY14t8ys,5690
349
351
  cirq/ops/projector_test.py,sha256=Wq7ddj-PV30yUXJxJoT3XIw2sIUC1AilnZ9m9N5Ejr8,9063
350
- cirq/ops/qid_util.py,sha256=2x9BCtJzTpfDAXvs5teROPsU1lA8gyr2JEaLWi1Q9y8,2148
352
+ cirq/ops/qid_util.py,sha256=SxyoMy_s070lcqXV7ny6vE8pp082OrTjBtawZtHOhXs,2071
351
353
  cirq/ops/qid_util_test.py,sha256=JdViBgFfH4bZJyPKTjUf9MuPxMQe08JV_Tl6tusekfk,1061
352
- cirq/ops/qubit_manager.py,sha256=EbA8nC00lmi3YMkovSCJjCXYvS_AKIPW-GBzKbUaeyc,3381
353
- cirq/ops/qubit_manager_test.py,sha256=adogGKdWVulCwpByXC_KMP6YNst94R0wuW-5VTEozSk,2351
354
+ cirq/ops/qubit_manager.py,sha256=U8dML-iosNfQn16Ug62z2-b2PFf-iDWc1ZCLuUsIc-g,3539
355
+ cirq/ops/qubit_manager_test.py,sha256=SQ_6kOehIaMgRvU43nTOEy6UoDxZSeVzSYQ2Mfouexg,3371
354
356
  cirq/ops/qubit_order.py,sha256=nYkcMg-y5QtR7M3W1HXq1IWJyMKjrTZXVK1GEbY6gng,5616
355
357
  cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
356
358
  cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
357
359
  cirq/ops/random_gate_channel.py,sha256=gKDqZa6AwdCIuuh2UOvO5oxCdGRDOInA7fI3ZLQ-LTY,5121
358
360
  cirq/ops/random_gate_channel_test.py,sha256=U3EAaAlCZkgFIYxqwcSkPsaVGrKA2PSeG_DK2ou--AE,8606
359
- cirq/ops/raw_types.py,sha256=58wPJZkdYRppyHOmVLUG0iOhtQZNZcx-dDWoOAHbeVU,39880
360
- cirq/ops/raw_types_test.py,sha256=mb691t1wU5OY_0TwxGJPedUStlGdjC_FzjvTLG7Gp_U,33516
361
+ cirq/ops/raw_types.py,sha256=XJcbvBc5SgGELEk7LSnjPGVpq6OLOCoZt0FIzOCjBbc,39962
362
+ cirq/ops/raw_types_test.py,sha256=RWUiB2TypXxbDTVaetQ7h-buGScUcQgY6YsFkmodZGY,33484
361
363
  cirq/ops/state_preparation_channel.py,sha256=PjVtoLbjBAy_XqnFAY40Am-NifeuCFVVLW6RJxph5sQ,4778
362
364
  cirq/ops/state_preparation_channel_test.py,sha256=yKUvLw_ft6cvIgRJcFQ779wZS-V6V-pzQq-rZRWdCmU,5922
363
365
  cirq/ops/swap_gates.py,sha256=9eJMGyOiA8W9k2xJ_w5PaLOCHGvB6C4T2RLddIZ5qE8,11601
@@ -368,6 +370,8 @@ cirq/ops/three_qubit_gates.py,sha256=U6GGi1aNnLbhM40ViSsRqbOIA51i1kjKMEf5ei8TmIg
368
370
  cirq/ops/three_qubit_gates_test.py,sha256=iQfQ4p4TwtyHYCqaWOEeZsqszF_Mp49VwlIKRydClMk,11778
369
371
  cirq/ops/two_qubit_diagonal_gate.py,sha256=UYz2lUN8YzQjaqBZ_rmg6TvLFSRAvSlQGhnPOL5FmNQ,5376
370
372
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=qiuREluCDKMok3ormBOdDYCFlOS9u1zFLqTsORO5JtM,4000
373
+ cirq/ops/uniform_superposition_gate.py,sha256=DBItkN48YM6GJCBITdvztEnacGB0HcEYo55ODC02WE0,4705
374
+ cirq/ops/uniform_superposition_gate_test.py,sha256=9N8woRmaFWeuaPMy2K1JlXyTG8bICIpsfmOzXc3NysU,3551
371
375
  cirq/ops/wait_gate.py,sha256=ZJ9cqRysAyUYgfswVWO5C2OkDZ9MFEQjSemLw0w3drA,5654
372
376
  cirq/ops/wait_gate_test.py,sha256=2Uw8ZjFkYGhDosoxbJr_IW2wWdxY8kXR-CLyC69DYRg,3543
373
377
  cirq/protocols/__init__.py,sha256=kGCV1tzQ1m8fjrOPhapDpnStu-rFNe4q188OQY1huHg,4006
@@ -380,25 +384,25 @@ cirq/protocols/apply_mixture_protocol_test.py,sha256=6sNZhauFDec2MvHmUsvmkVF-qjH
380
384
  cirq/protocols/apply_unitary_protocol.py,sha256=euKDlasTpz4pDKIU_sbYd6Zo7EXL_o4KOqXUbnmsQg8,29777
381
385
  cirq/protocols/apply_unitary_protocol_test.py,sha256=i8kRY-yQR_MAUqkyyQTOHFEYQYz5Z0i-Wb0rs5Jz0fI,26116
382
386
  cirq/protocols/approximate_equality_protocol.py,sha256=P5mWl9BWGpobw3K7iAoupFPSqO9V2yG82rfQHWTClmM,6313
383
- cirq/protocols/approximate_equality_protocol_test.py,sha256=h8fZSNFtLH_VNo2NbnUijSmo8FEnuStVHIj3hA61Gwo,9183
384
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=_AqGA2OztVkzUVEw18pzIw_eI5Nix68eJ0TJwemNdNk,15857
387
+ cirq/protocols/approximate_equality_protocol_test.py,sha256=BYGw5iNU3lsdH5BUDPnqd9xfvfIo9-j5j0og_yXCQyY,9174
388
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=3pPxDZrRBo1xj-SMj7rmtHpFyZ0IDDpHGylvEEYuoJM,15914
385
389
  cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=nxcQZDEJhBJcrakWuQH6TWFSUjs5akoleTU8K9pGUZA,10178
386
- cirq/protocols/commutes_protocol.py,sha256=ZSwtnkqB7as1y28alLfZWnMvvP1vFhel0-EMLMWS468,7478
390
+ cirq/protocols/commutes_protocol.py,sha256=KW849TNso6d_pzTlAN8SRN2pjz72LJ8uAhQSYS60K3Q,7470
387
391
  cirq/protocols/commutes_protocol_test.py,sha256=h0Lky4jrs7Hxrh4MeHxmxNciuofKGGZ2eC-ceWP8wKU,5849
388
392
  cirq/protocols/control_key_protocol.py,sha256=S3b4XOvTIj6TxNbj0W33fjdvXiWSKOtflvfEGeruzWw,2630
389
393
  cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZOOWGOXp0RIFgqc,970
390
- cirq/protocols/decompose_protocol.py,sha256=b4NCMzdI_RuHzkGhRBNL_vW1YiX8gmkMvCLEwqDMuK4,19164
391
- cirq/protocols/decompose_protocol_test.py,sha256=zV-eAOYYqeXd73MuoqsRMe3FKj7Q1vxjJAizNKpZaHs,15969
394
+ cirq/protocols/decompose_protocol.py,sha256=0zDsymAFfTSo8mze516oNCvc2OmEUQAOaxoSyTQR0Cc,18919
395
+ cirq/protocols/decompose_protocol_test.py,sha256=5L5lQN_FV9qtE3NHPsnxtdgUtY5uDEIfxZkBHbgDrGs,16025
392
396
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=0a93790FDjID46cX94PVAlA9i9Fu7uN8cj6qT94NH9w,4101
393
397
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=9H54KKkS3-_BrTSrEynDq1-sAcYfhLVmVqveLHieg24,5722
394
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=n4gt6bPUvIyx7W7jlttFqiXIs0TjD3X-OBy9lzG4Bto,4410
395
- cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=yNjD-dJeKOB0lKyP4cmeUVjm8Ac36u8adceJp-TiyNA,3620
398
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=XH6Lv9SGuYhuuSB0mi5v8Eg5emR-vbICKUjjqfxDw1U,4295
399
+ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=0ia7ehyGpmscjRP448dBANZKwnlbqSODdPUYRUhDEN0,3879
396
400
  cirq/protocols/has_unitary_protocol.py,sha256=inj17qr8Pz2Zofj0Lsp2o7TWlfmdU1TybtRjs1TWVow,5372
397
401
  cirq/protocols/has_unitary_protocol_test.py,sha256=IjmJ3dqvteFUUO4FLwCTokgUvYy8H2HJjLmTDzt2__Q,5610
398
402
  cirq/protocols/inverse_protocol.py,sha256=CEqtGRRj86WQyyALonRXxQrNq-fENOs_Zqrlr_BVau8,4115
399
403
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
400
- cirq/protocols/json_serialization.py,sha256=DVgbYQBYlPVV50gidAIDuRJn3griTkD-PDJiJTAgxe8,29274
401
- cirq/protocols/json_serialization_test.py,sha256=q8SZpfmnqV6UhoGe0PVZLxaYUwRbu7VBKfrZ81HzdlI,28779
404
+ cirq/protocols/json_serialization.py,sha256=Otrrzsi74rfE_2wbK-xBUI3QzQaRnEXqsY1D_ktW4jk,24360
405
+ cirq/protocols/json_serialization_test.py,sha256=Cn116fKZ-k7KNxwJXrCQSct7ioeP1hKIcZZ4HE5q2gk,27461
402
406
  cirq/protocols/kraus_protocol.py,sha256=GKQ748yxo6B6i0jUzq8OyR6lcEFYbh4FV2UryjUgSuk,9158
403
407
  cirq/protocols/kraus_protocol_test.py,sha256=QpPwkk7XBiGKNdrOcjXqtvhESVbUzujnUPz47uUNyqc,5401
404
408
  cirq/protocols/measurement_key_protocol.py,sha256=hl7xFi1Evebh8MQNLuUffhsUkggr4SdWUm4kIr9s2iI,13425
@@ -412,12 +416,12 @@ cirq/protocols/pauli_expansion_protocol_test.py,sha256=z6eo1mBCVa965OAbVYKlTAqN2
412
416
  cirq/protocols/phase_protocol.py,sha256=dXZRJb7aT8ZvtliItZOvoiaev-QvjBT4SknwZ5p-RUI,3612
413
417
  cirq/protocols/phase_protocol_test.py,sha256=eU4g6VDqfWZCpklVlY1t5msc5kAZsP-UlPrROLll_ms,1939
414
418
  cirq/protocols/pow_protocol.py,sha256=0wgb4LLAkOWjmP_u-_6IweXovDViocbdSgtsMOcXdkM,3290
415
- cirq/protocols/pow_protocol_test.py,sha256=Woj6RLFiaqBTKXgngHuNj3vjmzVMn2tt0f4mmObgvGQ,1642
419
+ cirq/protocols/pow_protocol_test.py,sha256=8eBcGUqRWSSYkEkvSHXL6tcv1o-ilnl6nzgNl9vfctg,1626
416
420
  cirq/protocols/qasm.py,sha256=QG3wVi4xJBioMUT73i3EE0AWR4GnIZlfkAFL2PrJriI,6561
417
421
  cirq/protocols/qasm_test.py,sha256=FxMs2PKJEi5Y2XIDuXZKN1HJd0zgTqSuv8BQaudKwUw,1484
418
422
  cirq/protocols/qid_shape_protocol.py,sha256=j4z5CWET3suEepycUEwsUIy9WM1Brewc_gRmFruzucs,7706
419
423
  cirq/protocols/qid_shape_protocol_test.py,sha256=Qjo-wemjkP__1jQnVkkB91mUs8EpfXyKI9GzeZQVb1E,2303
420
- cirq/protocols/resolve_parameters.py,sha256=nKe0hmVeywMz7rIKqiy6xH3ZsON3Kx7uPNoxK3Emffc,7308
424
+ cirq/protocols/resolve_parameters.py,sha256=NVFS5PSq18Hcvjv_P6vaZIa2D4OCgZY1u5j6QgPMlTA,7374
421
425
  cirq/protocols/resolve_parameters_test.py,sha256=sZvwdcwCuHj3l-jwxtorUp4BOsicqO4vQg2NvMgU4y0,4883
422
426
  cirq/protocols/trace_distance_bound.py,sha256=r_aXr3QuqbjCrXxwqDSyRyRAbCvWaZIzt95iy5-Wx-U,4172
423
427
  cirq/protocols/trace_distance_bound_test.py,sha256=5DFxGafD8HS9hg1BtHVBorqA91kAEH4LCUIxZW3cmCo,1935
@@ -479,10 +483,10 @@ cirq/protocols/json_test_data/Circuit.json,sha256=pQNIcjuIYBfXnGkqQnn4xuSLoHysFE
479
483
  cirq/protocols/json_test_data/Circuit.json_inward,sha256=z62hEHwGtkVXrZNfxHX71_lDQ43wk12qtPO0Q0i5qwc,4574
480
484
  cirq/protocols/json_test_data/Circuit.repr,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
481
485
  cirq/protocols/json_test_data/Circuit.repr_inward,sha256=i5fwYWIi64pmupNvqEEjUn_mHKp_vVGH2ozw65_EOuw,689
482
- cirq/protocols/json_test_data/CircuitOperation.json,sha256=wJDvVog9ItLrB11o4Q1M0t7hXjPEQL6N80z3yLinZYI,7811
483
- cirq/protocols/json_test_data/CircuitOperation.json_inward,sha256=iSbzfk8N4tIC6AMvK1MBLq0DdD0nn7n1SCzL1xKoAgM,6620
486
+ cirq/protocols/json_test_data/CircuitOperation.json,sha256=s7jp0RDf_dz4eIvYMNDgpkoERfDBvqPWDrjWZ1Jxdck,6949
487
+ cirq/protocols/json_test_data/CircuitOperation.json_inward,sha256=EP3fiuDhxStcshrJC_Uot1hzYxEmlKk4dW66DMK9ALg,7951
484
488
  cirq/protocols/json_test_data/CircuitOperation.repr,sha256=zjkjsVG9m3jedRYhKVJG_gqhwYycaqRRCcOuk1EKWvE,1711
485
- cirq/protocols/json_test_data/CircuitOperation.repr_inward,sha256=xK1MpO1ZrXhkLn8eKXa6nUL2rgTiVa3eKbZf9akNSyU,895
489
+ cirq/protocols/json_test_data/CircuitOperation.repr_inward,sha256=rsVxASnsKEPxfJFZhXw-PPjBV_7RYTrLCglxUTXjcLY,1083
486
490
  cirq/protocols/json_test_data/ClassicalDataDictionaryStore.json,sha256=G09lSA5vshMhiXz_jgFw0STHjc08pJ0UczVCz8SGYLE,1185
487
491
  cirq/protocols/json_test_data/ClassicalDataDictionaryStore.repr,sha256=bOLOBw-nLRvdkd7oYcLzkh5r-cBZAxwo7H6xdDgtOHw,404
488
492
  cirq/protocols/json_test_data/ClassicallyControlledOperation.json,sha256=7t_Yyjhk8Ig-XyfOboE92K149csQbwvLoEwIsuDVHDw,669
@@ -523,10 +527,10 @@ cirq/protocols/json_test_data/FREDKIN.json,sha256=pRBjUhQKgkCK8EQ2wjueacs40_dphU
523
527
  cirq/protocols/json_test_data/FREDKIN.repr,sha256=J1udPZLRrPag--dylLQkAPW_tHL7qeS8CfdC-GokpVI,12
524
528
  cirq/protocols/json_test_data/FSimGate.json,sha256=rYHToOnu4UaEEsv1E78s5OQpqynk9vkIx3aWWQBpLiU,63
525
529
  cirq/protocols/json_test_data/FSimGate.repr,sha256=IBm0Q5w6y5q_6GAkevA1Xqhw3iJX7I2ja2EhMBlkz7c,37
526
- cirq/protocols/json_test_data/FrozenCircuit.json,sha256=T3jzjIJ6TM1DiR5S1iqzeK_niihdzTtY8LU4iikubPM,5708
527
- cirq/protocols/json_test_data/FrozenCircuit.json_inward,sha256=TlkSGzamvoldHXYL0TiVZQXC7WURme5h2FqEd5uGtjg,5939
530
+ cirq/protocols/json_test_data/FrozenCircuit.json,sha256=pmNbBikHVtR3AuyU47GEIbhWQxH54kQyU8Q4V3T6WHA,4965
531
+ cirq/protocols/json_test_data/FrozenCircuit.json_inward,sha256=xRJhdBlTFvWUwJJR6tTqQsx-OY61c028_KubMcAz4l4,6776
528
532
  cirq/protocols/json_test_data/FrozenCircuit.repr,sha256=heGqAXaCvVhECDDolqwnCTWECNKf6rr_XCDx9Er7F2I,707
529
- cirq/protocols/json_test_data/FrozenCircuit.repr_inward,sha256=heGqAXaCvVhECDDolqwnCTWECNKf6rr_XCDx9Er7F2I,707
533
+ cirq/protocols/json_test_data/FrozenCircuit.repr_inward,sha256=EwE8nM5rQxhP5CH1a8cDiDy2IUMJKA-o5BfmIekl0iQ,819
530
534
  cirq/protocols/json_test_data/GateFamily.json,sha256=r_a61qQDvSE5EUv3ypoF2_6vaKUmWAjCaM-3hF_XpsM,1202
531
535
  cirq/protocols/json_test_data/GateFamily.repr,sha256=iiNLDxjKNOlyrGb-ytHIgX4csX4cKDk3eww6Sb7VtgA,616
532
536
  cirq/protocols/json_test_data/GateOperation.json,sha256=Nuvle9pqzceiWU5fqxvngWKbAs2psc4R1C7vOHz2TEE,1634
@@ -764,6 +768,8 @@ cirq/protocols/json_test_data/TwoQubitMatrixGate.json_inward,sha256=2E6o8tzoiTnt
764
768
  cirq/protocols/json_test_data/TwoQubitMatrixGate.repr_inward,sha256=G6v-BqECV3dcPiIjNLRUQYrRVtyLt0HqD00fDXwzt8o,151
765
769
  cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.json,sha256=EK2bbhnx9EEnhJx16J7LjamlC6nUwt_DeKaXmcxcTyU,41
766
770
  cirq/protocols/json_test_data/UNCONSTRAINED_DEVICE.repr,sha256=qPILaenyLEonsD0rywxnEyICOS7ANVo6X0cb7Sg5sj8,25
771
+ cirq/protocols/json_test_data/UniformSuperpositionGate.json,sha256=iK4MquwPDvWyDaEzkz7cERIc1xcbNZ-MScdttjHb2VU,81
772
+ cirq/protocols/json_test_data/UniformSuperpositionGate.repr,sha256=lft1g9nxkx_63DFHixSQL8e8tIOoz4PXDW7RqEhGw6A,57
767
773
  cirq/protocols/json_test_data/VarianceStoppingCriteria.json,sha256=PVdbXD8P9qjLqBI1ULgEVGEHxZhl0ahduLASk2VhrDU,105
768
774
  cirq/protocols/json_test_data/VarianceStoppingCriteria.repr,sha256=8J4dzmOZuhZ8jjDISwSLwY3JqIFG8f_8HvLT7az-tqA,84
769
775
  cirq/protocols/json_test_data/VirtualTag.json,sha256=yd6Yr22V94ycuO8UoYnWkV5Y8LgX83M-6Us2mUj7wq4,31
@@ -823,6 +829,8 @@ cirq/protocols/json_test_data/_YEigenState.repr,sha256=xOsv4JMPz5zf4P9o2ezAROyUE
823
829
  cirq/protocols/json_test_data/_ZEigenState.json,sha256=DnBLzEfAc-tfaaVpBy8hd29Cn5NTDwcJwxhpRZ1SpZE,127
824
830
  cirq/protocols/json_test_data/_ZEigenState.repr,sha256=V2P3aMF1iBbzud8CUvnSVrBRt7KjOPbeWdeZKMRO510,36
825
831
  cirq/protocols/json_test_data/__init__.py,sha256=9f7jgLPoGVYZTfVJ0nGw5lu0uAKXJ8rZlQi82AJNglM,641
832
+ cirq/protocols/json_test_data/cirq.MSGate.json,sha256=G_roYqHu9XgZSu1lMZbInFsefVvgZfKuRubengXuawg,63
833
+ cirq/protocols/json_test_data/cirq.MSGate.repr,sha256=grCt0Y_v0_26K-HgqtVzc8pRgS09z1s4JhjE-cAucoE,16
826
834
  cirq/protocols/json_test_data/complex.json,sha256=fGbU2uxufM6Pt-sg3sHazL0oiqusseIPOid-1sxi0Do,212
827
835
  cirq/protocols/json_test_data/complex.repr,sha256=A-Gf4uPuecYNJPvdQYJ694YCx0uy1RV1HD3MYN6WUlo,19
828
836
  cirq/protocols/json_test_data/datetime.datetime.json,sha256=fb50Dr0wfnkYrG_pBzUsIstWb9GsFHbpnh9eZKEqhAc,67
@@ -833,7 +841,7 @@ cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJ
833
841
  cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
834
842
  cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
835
843
  cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
836
- cirq/protocols/json_test_data/spec.py,sha256=8s-ZCIP8I-aNIMxKsnlpv8ej9_py3Rxxrr2loU0K6W4,5531
844
+ cirq/protocols/json_test_data/spec.py,sha256=b_9-k4vW8eHi8umSwo7ryDAkjvUb74aW-UvZRKONaXY,5615
837
845
  cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
838
846
  cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
839
847
  cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
@@ -866,49 +874,51 @@ cirq/protocols/json_test_data/sympy.Unequality.json,sha256=Bd2vedLFPwZuWyIcipOYX
866
874
  cirq/protocols/json_test_data/sympy.Unequality.repr,sha256=PsC01doMaEuySfnFUQhHdcAq9tlmLzSdQ8WKe8PUaTM,54
867
875
  cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
868
876
  cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
869
- cirq/qis/__init__.py,sha256=f5U3udFQirbLPKcHsVO6ViD3uSwe81Bei1wQdSbq2HE,1583
877
+ cirq/qis/__init__.py,sha256=C_gnZt9CNWEE0I1IAZE0liNVIv-aphUohIHJih-szDg,1836
870
878
  cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
871
879
  cirq/qis/channels_test.py,sha256=iqkSyfvx_c2ZpJKAVEsFyZRmKpzNrJsyFjHbaJUMqcQ,14454
872
- cirq/qis/clifford_tableau.py,sha256=yA63laynA1LVDmO7Gy_JFOsb7_gfriaOj6ggrjGRVGo,25174
880
+ cirq/qis/clifford_tableau.py,sha256=X25eCXWEUWzoB-x6cna4LdLMFVNxUiIEUxKHJkkc2aE,25353
873
881
  cirq/qis/clifford_tableau_test.py,sha256=Z-5YSysJw2H3AfgZxhptvUMr5GUjUFgPcAUdcust9Qk,18441
874
882
  cirq/qis/measures.py,sha256=-e2mStl9882z4mbLwWtbdmmdJilmf6Ex2b_jSXhMX3c,12194
875
883
  cirq/qis/measures_test.py,sha256=3LTTGdvuFfZWmFyWFeUHpg1yGc9z0VE8j7Kd7J7y8i4,10092
884
+ cirq/qis/noise_utils.py,sha256=wakkdQdBzOUWCf71sCxMCWwfPPAnJi5bNYsXDzGzkx0,3680
885
+ cirq/qis/noise_utils_test.py,sha256=6r99DBN_2bImZbuOIB2A9ZdvyipqDopXsoxV-8OUK_I,3391
876
886
  cirq/qis/quantum_state_representation.py,sha256=5ybXGqjGSpSZqOn9q6OW6IBOmJs8KQekv5fFZZMCqZQ,3238
877
887
  cirq/qis/states.py,sha256=PZs1pH6Uw1M9oOXlD7-uDwVGBPTX-8tUy8RTP1Ct_pg,42015
878
888
  cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
879
889
  cirq/sim/__init__.py,sha256=NZlRrk-RxeNOmFLdC54yEeQiiWz7wXNRhGbZKmxCTjA,2342
880
- cirq/sim/classical_simulator.py,sha256=lTk_Eo1GhgoVYk_zZrqraEuBkJQ3-nnyar4JE7tXhdo,4464
881
- cirq/sim/classical_simulator_test.py,sha256=_dGRWTjLe_QLI_fvUoBXOpBtBeVzfx1XC9h2OIS7AUc,7935
890
+ cirq/sim/classical_simulator.py,sha256=orp2WY15HNCJk60Aosq7igO3bjKcWjAAOeU_CiPK_98,9349
891
+ cirq/sim/classical_simulator_test.py,sha256=TxPhVNLoOBPwTlyUCOQoqwid76ZBxQfmN9IPD0yxNHI,12701
882
892
  cirq/sim/density_matrix_simulation_state.py,sha256=XRxKsKq13OlXR7429WBbKps_jmOoCBRa6U9PzYrYrTc,14065
883
893
  cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
884
894
  cirq/sim/density_matrix_simulator.py,sha256=-BIY8JjmzAJDmF6tWcv5lbH1yS7UQIlKicU1AJgttfA,17462
885
895
  cirq/sim/density_matrix_simulator_test.py,sha256=LgND8eN3AXgJzP3nYh0JmsTWJfT878BSzgIo4gZ54xY,61154
886
896
  cirq/sim/density_matrix_utils.py,sha256=9Fbzh0c9hzwEff383YwRit2K_tvlpT4Vyq3rjLijRyA,10273
887
897
  cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
888
- cirq/sim/mux.py,sha256=ysXjeMddmNaaG3twkGBqJqLLQa_Pm-Y9c6yeGLpYbxo,12469
898
+ cirq/sim/mux.py,sha256=gnQGQmArs0LdLnVmxAesOTnVmaudZmgIH6JUatGUXtE,12509
889
899
  cirq/sim/mux_test.py,sha256=uJUUnE9qg10rF0pGWo_bAWhp8JzsmOGW4hFRZeTKwdM,13680
890
- cirq/sim/simulation_product_state.py,sha256=3qEz1mEsIcWiG_i1WVNTs_CVzN-nO0XWdvSdIvL9s0A,6699
900
+ cirq/sim/simulation_product_state.py,sha256=ehrEXLCZkcthtdYMZTZragWsPmsgzxxnmXuPQNEEg-k,7052
891
901
  cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
892
- cirq/sim/simulation_state.py,sha256=ARvnXjw6n-GqPV07ZQMC7rLEgm4GDNhdTUItXRZ-TeU,12626
902
+ cirq/sim/simulation_state.py,sha256=vmjfaG0ugHcdrzRF-xRLPDgNVwwuo1RWe3mHR2ytK1g,12640
893
903
  cirq/sim/simulation_state_base.py,sha256=95FDt2omBxU-3KXwii6KCKMC9MtXRc1ZtnLZRE8vI0o,4196
894
- cirq/sim/simulation_state_test.py,sha256=3itB-YcSBJY0h2lxnx5JFJAxeAWoGHEYdc_ch0SyLhs,7443
904
+ cirq/sim/simulation_state_test.py,sha256=ubfkvFui9zPQwC6aJw9rmehd_4oDQCi6L3Pe1EVznAE,7410
895
905
  cirq/sim/simulation_utils.py,sha256=74Jvi2m4HcRo0i1h7MNvul3Ho0Io8HW0KARA3Ntjh_4,2553
896
906
  cirq/sim/simulation_utils_test.py,sha256=1YCuaKFf0JfOqdEbdYE49wlNWmhmtQKUQMIij6YyiDo,1333
897
907
  cirq/sim/simulator.py,sha256=lTUcub_HJC5BYvkN8ysqzHHkUHxloncEQm4fMJZ1Dls,41875
898
- cirq/sim/simulator_base.py,sha256=5Ka5UlHK2bmwRhORUomU6OB9tMfaxTRvzN7EUyS2_bA,18178
908
+ cirq/sim/simulator_base.py,sha256=mAcIKPT6lsIvAJFdSC4a-cGQFU0kegqbL80K1K7mlFM,18186
899
909
  cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
900
910
  cirq/sim/simulator_test.py,sha256=9cHMoY7M5_82gfeBsCg6O0PnictzZu172vQAgUngJqA,18119
901
911
  cirq/sim/sparse_simulator.py,sha256=OvVjqNk5Kb92DM8Nrdw1BGOB7GFlT6yiXwIPpAcLV7I,12854
902
912
  cirq/sim/sparse_simulator_test.py,sha256=3EAeCHUQeKllAAtdw14X592zBsGQY_vwfIYK-gEr_zA,53587
903
913
  cirq/sim/state_vector.py,sha256=N6N9EELlW66UaLTBaq62ms0XkfIK7CzN9SBM7t52dXo,13428
904
- cirq/sim/state_vector_simulation_state.py,sha256=Ks3nGbIf6rq1Ap7Y5gZkcAJhu_Zr2-KWJhsE_wjwu8k,17624
914
+ cirq/sim/state_vector_simulation_state.py,sha256=e4it_DT1J-30S3OX_gfMJiWAttFaVOMEPQ-Y1ARWnDg,17616
905
915
  cirq/sim/state_vector_simulation_state_test.py,sha256=UtGMIurlV6N74nX7qoVnGoRhwF35-ghDEIP7Mj5AXmI,9841
906
- cirq/sim/state_vector_simulator.py,sha256=L2S0xyUGqRcVgYdzYef0gVREVZVIDcCXPclVbIJEpPE,7529
916
+ cirq/sim/state_vector_simulator.py,sha256=j1Dcu6k3gtX2cHedVlJiSgDQ_WQ2UUUyFnAEeHrOF88,8201
907
917
  cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
908
918
  cirq/sim/state_vector_test.py,sha256=OjhAL2tWqJWstHV8RvJYQVqg95zm0PcS9nQKrLOhMmQ,16934
909
919
  cirq/sim/clifford/__init__.py,sha256=lD7l6JuE5n0xwvOYNYH-giCH3qAEVH1SUwDrZM1jKKY,636
910
920
  cirq/sim/clifford/clifford_simulator.py,sha256=V4rExIDeijZ-sjMAyS_dDt5aE-RIrzTWpwF3EnSujto,9732
911
- cirq/sim/clifford/clifford_simulator_test.py,sha256=L13hD6qXwDJ1Mq_gIctnyIZbOq8m6qS1KIce2imon1U,20242
921
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=pgLz8-SSFLBq6kcJ516ufQMJiJI2dG9NM2nkmzwY124,20380
912
922
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=fNkK0gZgfWIvMknGiCr4BjGO0wVYGW1Rc0pnwluerho,2160
913
923
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
914
924
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
@@ -919,19 +929,19 @@ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=5ZeHd1mlz6LW_suOOEWHNX9i
919
929
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=dsphoXTaIwRCjprGJQirSs0qeVKHlni_pt_GZJn5Vpc,4317
920
930
  cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=yz9x7F72wfgqfSiEhoH2rJ-n14nsYMapMvpkhwidIOY,14032
921
931
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2xpzUT7RG6P6UQw_61c6kU,3149
922
- cirq/study/__init__.py,sha256=HTGcCkU8ex7t1etgDtE4l9oanjI_P3UtWKWzb_tw4mA,1204
932
+ cirq/study/__init__.py,sha256=HCuFRBzCJGGDhtoHRzrnD5IWB8EnMrX-4M6AmVO0tP0,1220
923
933
  cirq/study/flatten_expressions.py,sha256=LIePrTJJW3PfdQS2jJ-DxhjpuOdwdBZi0WbtXHf2qmw,15638
924
934
  cirq/study/flatten_expressions_test.py,sha256=6e7pTkaBrZW-EmG4teZxcwemqnxCtJW3kq2KOlPcwW8,6078
925
935
  cirq/study/resolver.py,sha256=-X6R4FQ5nkEyaf4YsNFTN1Ui8Ss-Mkn39pHOV-vgsZQ,11773
926
936
  cirq/study/resolver_test.py,sha256=QQe9Rr0z6qNbSWPEvCKd_DNka6454AWVKbG2J2DD1Wg,10228
927
- cirq/study/result.py,sha256=rvExmeYnHbFKKkRU9zdBtxrCm8Y4B3UycZf62QTeOP0,18772
928
- cirq/study/result_test.py,sha256=3hmwqehcv-LukZtrUY3q1PAQlawPKXDraiTeElKvDWI,15347
937
+ cirq/study/result.py,sha256=KzjpjvDVCTFjMyq9r91pZSYdtcD1x3yj8jP_StlOSMg,19285
938
+ cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
929
939
  cirq/study/sweepable.py,sha256=BMgq8lxVnyJGBeu4gFUt_0P_v4gFwKgazZFftRUEwnA,4185
930
940
  cirq/study/sweepable_test.py,sha256=xjUksIurfbh240fEC7Al_TuiHGz7xZGktQUh86XBG9U,4772
931
- cirq/study/sweeps.py,sha256=IzonyU-LgEcMpvQrKZbl14v-BHi01oncp9CmHtLw0J4,19813
932
- cirq/study/sweeps_test.py,sha256=IqZp0ywYA430nNE_slBfc4vdKjULttzPl8ytxHLlgWo,11966
933
- cirq/testing/__init__.py,sha256=hbGRltgVaFhA6fMG2aVuRY-tXOluRyy4Rh9EQxqhQLg,3816
934
- cirq/testing/circuit_compare.py,sha256=c1uGQDfn2uAPtC-fiAwCrCzY-4NjerVBTm2uAnIceDQ,19175
941
+ cirq/study/sweeps.py,sha256=8mUc5dnOJxZH8m_6ncgkZRY7a2TBe7_9d3WcvJAyZlA,19900
942
+ cirq/study/sweeps_test.py,sha256=YdXHzZO10OHoPTU2ifmsfH7KByIJeeANy91AHqX8nwg,12135
943
+ cirq/testing/__init__.py,sha256=cACho8s-V5tNOjBcDUtr2DipQxQcbUgbr4MESJb4l1I,3870
944
+ cirq/testing/circuit_compare.py,sha256=nBQES45wLVThOqC3WrPrYKLQP7HQ2pH5DjlJ5bHkrtU,19176
935
945
  cirq/testing/circuit_compare_test.py,sha256=AduZCzwBNFCYrjEpyS1DvIR6jU8GaFqQBBgPXyIALoU,19743
936
946
  cirq/testing/consistent_act_on.py,sha256=ofYxdotw7fDfEVaAoM3NJEG2-hTHmi5FlLZkLYfVBWE,7733
937
947
  cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
@@ -947,7 +957,7 @@ cirq/testing/consistent_phase_by.py,sha256=oSZcZnKMOIJnBS0HgYi-8aRaVJmHGgI--WAUG
947
957
  cirq/testing/consistent_phase_by_test.py,sha256=YbI0n0FpWpBkbgYp0-yGZSeesDZEst0cmYtXgJE2LQY,3273
948
958
  cirq/testing/consistent_protocols.py,sha256=ZRLuaquTuSGhI_KaOdXa0ooDJC3gOO3ykfciKiHqhrU,7773
949
959
  cirq/testing/consistent_protocols_test.py,sha256=PFp9DF5b2Il2lj1NW70JKPxa5JbG4I_hn-ftis10UD4,10020
950
- cirq/testing/consistent_qasm.py,sha256=zCci5xgvjFmBU8G_j-h49DFFUieFOfDhE9Tnx5rvXOI,4943
960
+ cirq/testing/consistent_qasm.py,sha256=1-Rq2NfyRHh1bqPYuhBIsH9OkepUSONpNdxDMODSsrQ,5108
951
961
  cirq/testing/consistent_qasm_test.py,sha256=IM1BDeqZflv0Tui669KRLOlKKWyYnJ9JA-Xoy4lI9Bs,2883
952
962
  cirq/testing/consistent_resolve_parameters.py,sha256=hYbp6kbXrOLCc1DMDRC2zTAx1qlvCCJMuzZ7a5cGhmA,1973
953
963
  cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
@@ -964,11 +974,11 @@ cirq/testing/equivalent_basis_map.py,sha256=pUsJtO87hUGyAeGXR_pSKKkQ72vltsDj01EO
964
974
  cirq/testing/equivalent_basis_map_test.py,sha256=Wiz0AzdU4JMBUqgwgEts4yu2Zwi9GyEuVyYRRzEfbXI,1488
965
975
  cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
966
976
  cirq/testing/equivalent_repr_eval_test.py,sha256=FTe_1O9sl84cSmTuxPP8m38P_3mzXrF4yU5X8Bj2wnc,2964
967
- cirq/testing/gate_features.py,sha256=RKmctzrmDl-q59pYkkriufOobFDHYnSpTDCYatLIWhQ,1125
977
+ cirq/testing/gate_features.py,sha256=39lXCy54-V-b7WT0UC4CQaNCsFLHDLagJVVMG8fCz98,1367
968
978
  cirq/testing/gate_features_test.py,sha256=I5hTTazOYucDCqowWtdYN4rvd9hK-9Nlv3fRjs21Bvw,2168
969
979
  cirq/testing/json.py,sha256=is5G95eKX4QirzElQxAbxXBf-zF-N9G6I3ptjL0Ne64,6646
970
980
  cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
971
- cirq/testing/lin_alg_utils.py,sha256=1cvYZXSNygnpB8bU1TnxHN-ez7DHYeEEv91D8LKjfq4,6227
981
+ cirq/testing/lin_alg_utils.py,sha256=SiW2C_ugq3OKfyioD48INjILg7AjP24Jz6q5l6L1uEI,6353
972
982
  cirq/testing/lin_alg_utils_test.py,sha256=wtQGhHdIGe__4lL708arpN0n-nNjGIlATpsXHlkI_eM,4113
973
983
  cirq/testing/logs.py,sha256=0nTTrOQX-T5rspj7kZxtGsqPQg06ZddRAyABT03tYrI,4053
974
984
  cirq/testing/logs_test.py,sha256=iBFaO_cwddBlaCYhX13GL9nqRBWeGPekT9hAuZOo1CQ,5719
@@ -988,8 +998,8 @@ cirq/testing/sample_circuits.py,sha256=8HTrY_RWoPHV18q7aLz6e5Fjd2Twkt9Wkc_IDBzTE
988
998
  cirq/testing/sample_circuits_test.py,sha256=IMz72CMXJeRt7Eg1rRB68hFV1v3k7OQpYUyhqmfjNpo,876
989
999
  cirq/testing/sample_gates.py,sha256=qSCZhb-A-Mwm_J81Su2sUFyEUdvqfq7Je66dsk8cFy0,3277
990
1000
  cirq/testing/sample_gates_test.py,sha256=mkfYPNo4WFH6y33Vr_f9zy2Ry1oq5yYLpB__sqSCkjQ,2377
991
- cirq/testing/_compat_test_data/__init__.py,sha256=yIe0dUE7-FT1bxYjc0hcoOZQkecBdYN5onC6KOpsx8U,3040
992
- cirq/testing/_compat_test_data/module_a/__init__.py,sha256=klpfbI8BVz2BA5TwhUDGqMSM0Sjw6ABIA_4hpyADHaE,386
1001
+ cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1002
+ cirq/testing/_compat_test_data/module_a/__init__.py,sha256=MHrL6kJFnYTXaRT-bW-gVPzizJCN4bIU8ZFB-tXUGZg,384
993
1003
  cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
994
1004
  cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
995
1005
  cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=QPjVtgaK3kM9SPi3NocWmZ4FGh_V6Ct5qDHZkDIeCCU,159
@@ -1007,13 +1017,15 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
1007
1017
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1008
1018
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1009
1019
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1010
- cirq/transformers/__init__.py,sha256=1nSFghZdxPq_PT8iuLPNLmfbkQcCaNAmC-RVSe9qzeg,3877
1020
+ cirq/transformers/__init__.py,sha256=-buJqTF2c6rUM18JDGSb5aMKWtyT24jE_mMrHo6DsdM,4222
1011
1021
  cirq/transformers/align.py,sha256=B4DuX84DWd4tLfMH21JviMZSOFYu7KCOMSEMALYsQpw,2727
1012
1022
  cirq/transformers/align_test.py,sha256=M4etT2cgESv1RdkKASguiGxEuqY7kmI1IswjSi-1jjY,7174
1013
1023
  cirq/transformers/drop_empty_moments.py,sha256=Rtn_BrpwkLXyZBdLzwdnsnEGWTdYuf1xOPakzbpv7-w,1517
1014
1024
  cirq/transformers/drop_empty_moments_test.py,sha256=G8pZmTfi8NG2NpGz_K3LZu5NQoqa-xPMCuZjwEu07xk,1907
1015
1025
  cirq/transformers/drop_negligible_operations.py,sha256=8eyOMy7bra2wJAjORbk6QjwHiLdL5SfwRaz8D2Dazbw,2083
1016
1026
  cirq/transformers/drop_negligible_operations_test.py,sha256=gqL6RoDPm6Zf4RxtprBenFyIsZQPUxmPur9oRl0Yr3U,3823
1027
+ cirq/transformers/dynamical_decoupling.py,sha256=iALBcjaO3uwcAla-smjapp2z9YezGecGFo_OGgJkD_8,4704
1028
+ cirq/transformers/dynamical_decoupling_test.py,sha256=hGUzTDV1UL3VBIueri91j3_ycxGmr20mGfQSnRAjegM,4149
1017
1029
  cirq/transformers/eject_phased_paulis.py,sha256=mTgRT5aw5_c9ccTkP4Np_4YTWnLzxsMKRO8pOQ7CtYM,13955
1018
1030
  cirq/transformers/eject_phased_paulis_test.py,sha256=-mXsfbi3V0ojC_YqoQM5otzdW4kjGusCx6F-kCv8M98,15834
1019
1031
  cirq/transformers/eject_z.py,sha256=0kOyvh6FDfrCrrTCVfpHKNc_kNC_pBdEKoXv11kuqGA,5803
@@ -1023,25 +1035,25 @@ cirq/transformers/expand_composite_test.py,sha256=4Gn6LVqr0DeuUumde80O4esOLGIoo8
1023
1035
  cirq/transformers/measurement_transformers.py,sha256=m2v4FAEaIZtYXEh-rFzxa_sx-syqdWZmCbf6yar0GSM,19035
1024
1036
  cirq/transformers/measurement_transformers_test.py,sha256=tkuevHQWnFWmxmvfJZ2T42uCIw4oaYyZ4XvjRGFGdug,27504
1025
1037
  cirq/transformers/merge_k_qubit_gates.py,sha256=dUsswQOIHfbb6Lu37fecgrpT6_45zmDE7eqCUbW1KOI,4390
1026
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=0zp3FZpoNqUstrHxb7mGRQ79Ld6mV4a_inNqwfw8Wjw,14341
1038
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=k_ROZvUebHgPy5vsNnWNMBYU4kfIkrunPsw39ZngMwo,13920
1027
1039
  cirq/transformers/merge_single_qubit_gates.py,sha256=NRREV4Z6Ptc3mZnOUgzQePdj4H0aix17WOUwZUB7iQ8,5826
1028
- cirq/transformers/merge_single_qubit_gates_test.py,sha256=0U5oitYfOIka1hUOn1Cv8zVK1Uo34DVaOnGMgqfRg4Q,9966
1029
- cirq/transformers/optimize_for_target_gateset.py,sha256=2f93hEA_9vXbutkoOtzBTk_bjKLfdLWqsuue4-w4Rp0,6005
1030
- cirq/transformers/optimize_for_target_gateset_test.py,sha256=G73RDFhdhXqpXMTEPyl_t5huhcyY1u6XqOToVEFpVJA,13848
1031
- cirq/transformers/qubit_management_transformers.py,sha256=Uk1DcFCRFaFsLTxp_B5AKpSTDjqBKUhOGXD-kmEV0cM,9429
1040
+ cirq/transformers/merge_single_qubit_gates_test.py,sha256=SWf1Il7Bz0iUCDM7JoDG2Yxe4p2yYr2PgViQpjByFm0,9914
1041
+ cirq/transformers/optimize_for_target_gateset.py,sha256=MxhFsCm2XgW3gdpNW4NGVmz1VdQvzKdNNCtVZDuZiVE,7229
1042
+ cirq/transformers/optimize_for_target_gateset_test.py,sha256=MgAHjsPbVtd0fl2ytRz2R-LQuhSqImtrFK5F45QXkA8,19523
1043
+ cirq/transformers/qubit_management_transformers.py,sha256=A7Mweu9ElLSCsy_atmgFbYlzOFXKhct5gQ5YNTjjaVU,9430
1032
1044
  cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
1033
1045
  cirq/transformers/stratify.py,sha256=EEcXD6PEdHTZAoaAfaHnsw3Hf1SftbIl19hZOU_ZnXE,10469
1034
- cirq/transformers/stratify_test.py,sha256=LmQFPB4grvRVvOgV8mA-pXNK3k9UC-banFJgWtDx_cA,15270
1046
+ cirq/transformers/stratify_test.py,sha256=17ic2VAUPEGuPG2o5j98yDxQ2j2J_PN3EsPsfh5xwUk,15220
1035
1047
  cirq/transformers/synchronize_terminal_measurements.py,sha256=p061MYYglY6HhWYYkFzIny0CtaY9LUygPg4UbGewZhQ,3842
1036
1048
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1037
- cirq/transformers/transformer_api.py,sha256=beDdouAulWeg4SQRwAjgc5H1jrKD0maYY32XczsHokI,16964
1049
+ cirq/transformers/transformer_api.py,sha256=f95sfOr-KYXLt4yxAaFXoG0-oEc8IKApzG4pyXsm3YY,16956
1038
1050
  cirq/transformers/transformer_api_test.py,sha256=f-Vup0VCUvTqJKm5kWHf6xet7sFTerLMGYzJHy8Rc5s,13045
1039
- cirq/transformers/transformer_primitives.py,sha256=zj-GYew5sioNjOxOgjIjanxxDikYiewZcc9vPVCDZz0,37544
1040
- cirq/transformers/transformer_primitives_test.py,sha256=pJhCN28Tev7F04waYRtTlgJEY8fqtBcYJZDPSPUAWLw,41319
1051
+ cirq/transformers/transformer_primitives.py,sha256=ZiQjYLfksI8ZxqvTvhUN0R9X1WvKEYwAo6NymoKGvzw,37658
1052
+ cirq/transformers/transformer_primitives_test.py,sha256=KYD1cDE_jAB54WJPjpBdoO2ts8brckOBRb3oZc4tz1I,41695
1041
1053
  cirq/transformers/analytical_decompositions/__init__.py,sha256=ZNtETntol3G_n6uqzGxOmBanGMbCj0QAc-5vicN2jkM,2724
1042
1054
  cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=DsuuP91pm2dX0CO4rWwmJAJyAfuXMcA1UJK0g8krp7k,6726
1043
1055
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=AAZh_9vEb5f2E_EItPZTlMRNdv0d47AwqTn4BytX0UI,7102
1044
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=P-ge3093ayMAEiIf-X_Yv_UuEWkVBEEvJUKobhlXVuA,8554
1056
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=iFF2vb5tI4PVQVHBOP_tuy8EKUtGg8aMDZSdK-74YMI,8675
1045
1057
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=Pc1vNvRxcYJEERASHbCqPX1bqImGd7FzWnQcUcIo_YU,4950
1046
1058
  cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=RDg0wzYa_YXBJepCgloD_OIwTOwNco98dqGoe0UsnhI,9108
1047
1059
  cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=bwZa0BDclAd1sX3bD-GdNF2MO5DtH7mw2YLppEK0LG0,5568
@@ -1057,18 +1069,33 @@ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=
1057
1069
  cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=t2YovP9bbZTwaa9TJOAurYsKBnHnI0mKIrYTLorHuR8,7847
1058
1070
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=-wahknipQWwt5J9lSKzxOuTqo9Of-SdEAGiuthzrrCo,6177
1059
1071
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=YBIfOS_SzNC3ahoNdI96vrF9qupGlMt48yhi_S-6rqk,4457
1060
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=l51weqMCTYqIb7BA1zALbmnSr4JsCI17Qtm35jm6kSs,8456
1061
- cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=weo2k8OLUIeaFYr6xNsdBMbq5KVdnIxYyELYYVyP0Ds,9351
1072
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=7WQTqO0yv7YBacgB27rFVglGXp_Giu2cldjbet_I0VY,9342
1073
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=1bVxKj3lWsPe8wZs7MJl4RooV8HjxlQ3GeQydNKXIhg,9941
1062
1074
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=p3_Mgm-v1jmEAT82Z_jas0hoIUg-TUsZHJ7SC_k2nqU,9721
1063
1075
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=9ElSH1pr0Odu7cWcpXlDI-cDOpin90WEnPQQdnA_xkI,6990
1064
1076
  cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=Awr7WvaJe_8-6RdrlD93NM8c5QSKX-qaImys8WSRBcw,3772
1065
1077
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85MbuIAos7o1371wXs_KH-Bk6jsPqSBKAx9GJ9c-wVo,4160
1066
1078
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=F_XpM4ApYHxV6hbWnV3C7Ud9L1BnpvBHBXShPh2mP3k,25397
1067
1079
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=eKOzjWkR7xs-CL2oPj__nWXR0LL9oO42wEHibnvWq-o,20618
1080
+ cirq/transformers/gauge_compiling/__init__.py,sha256=dmgVx7_yfsO9TarOCMBfVuZjza_6_MmUyAfM_eo698E,1146
1081
+ cirq/transformers/gauge_compiling/cz_gauge.py,sha256=TNZviXFu4j-lCF87QMGYVdb2RC_ePHLdI6FRCqh9go4,2550
1082
+ cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=_2RMzwuMoqytgsVZEET2m6QsGoZ2_uWgBfSGGvhZEWo,854
1083
+ cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=7jUg2MHVX2V8SzH7r27e_BUUA_p5l15-Qv8lLlhGasQ,7948
1084
+ cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=xVeoaaMuenlp_pxqmZO89kJEeBV0iapK7-JDTUuC7Lg,1565
1085
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=6mpF2ftcDtWQEsZNr-m16GkDOn5WBWV08JB4ZS5rf8M,3408
1086
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=HQw1xeko9OAD0PCuKcehUiy8mbxeRza4nE-6E8MGVME,1584
1087
+ cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=UGJ_061h65Rfgb9LWREjxC8OSt01ZqP9TGnacL8VAuk,3500
1088
+ cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=HEIIwKlX5ixau1e_etSUj5NvYOVTT-Gc3kuHcyKAeJ4,866
1089
+ cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=gfjSlQdo13GfBPlrkQoHPWWzouiV7yYr7JAaB85NSGY,1086
1090
+ cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJwl11VPNXkf_v0WjCg9VxNKAplZ_5bZR7guOfnK-aI,1292
1091
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=32OGTcYT3tBFEQ1GQlrssc1wtwCcSvk4ZC0I1XD1QXg,1869
1092
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=RwjadOOJfa2Qf7iryTIMJLPzeDMNqFkP6Tewjq68gJI,997
1093
+ cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=dqQa-UWq31bE_jF3KMhU76sND5GuqTpEp9-wVuXdWVM,3126
1094
+ cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=0CLZoLw-WK3aKEIoaKBrQZ-qvaprOVLad-dVyWFmSiU,882
1068
1095
  cirq/transformers/heuristic_decompositions/__init__.py,sha256=2KBAUk-vsVku-HuahLbDQxp8bjEQMZUUNiBz_cvUMUw,831
1069
1096
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=j9bbiIbC2rvwG830gTTf9zr9C7RVA5Ilhka_ZNF-N7w,10785
1070
1097
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=N02nlz7tISYVArvWNILwg-hnDB5Y9PCHbwIxk42Afv8,1534
1071
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=de52YmIgxhv4YWnMMLPXJIPCe1O9MK_s5DHg5NBpNtg,20066
1098
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=W9v3ubEoNy5Ra1I_AVKZZc3x_xUuO7c-XNmON2buNwU,20067
1072
1099
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=dn-lBXnK_MXYMBtrQjlIm1FUBBGECiwyCyl5wCd7lL8,3830
1073
1100
  cirq/transformers/routing/__init__.py,sha256=LqRtw_nMUtAVA2lkelb-WvEZ0ZJHD73rHfFaIvSTt7E,1019
1074
1101
  cirq/transformers/routing/initial_mapper.py,sha256=FJobfxRsD3uO6IbRBQuR36T0D1lcFYUEP0VrW6AdOdk,3036
@@ -1080,11 +1107,11 @@ cirq/transformers/routing/mapping_manager_test.py,sha256=ijlRd3mCOO1QFI6L8utQS0m
1080
1107
  cirq/transformers/routing/route_circuit_cqc.py,sha256=iiHgLX96l601pFZpJbUq-bHkVLEGoAkH4wDl9stFKc8,22021
1081
1108
  cirq/transformers/routing/route_circuit_cqc_test.py,sha256=gKGIBwftHR6CkUGdZ5z8t87o1Ch3rfcMjwjCO9CAn2g,9999
1082
1109
  cirq/transformers/routing/visualize_routed_circuit.py,sha256=cKYvswXnNIQJ0Okketzkpy9Tw0Z_Y2DaG4cJmK9ouHY,2917
1083
- cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=MHL0DTdWCTsS1ayXlaJmBor8UbXo94lhgPKDXc97lRw,5040
1110
+ cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=L3IJ0UdyVg8cBIULjG5kcjWoTmKee9Sr_MHkyJwcopA,4140
1084
1111
  cirq/transformers/target_gatesets/__init__.py,sha256=Sy572ZdTcImWcFinPq53rwf1Yxm9S3tpp4mjSCx-_T8,991
1085
- cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=XSHBerLgJVKL8gLYVSxSQ42zYr48GiYg2-m_SlGV5O4,12377
1086
- cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=-3pTUXcNvO-2OigtNco4DtF9jAaKu6SnnXBzlOmhxKU,9538
1087
- cirq/transformers/target_gatesets/cz_gateset.py,sha256=lEHuFq59pK3mS6XYkt8eLtyMvATZzRPWSKYF6GIrYXg,4499
1112
+ cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=EarJ3_dIkpKzPVGd8898o1_kVH9ISNS8KT2PPUPq6Zk,13535
1113
+ cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=_M8R9n8vklqlCHesokcNINDGTTLx22TIa4tVLQNswoE,9482
1114
+ cirq/transformers/target_gatesets/cz_gateset.py,sha256=5YJVD0uyb6w848_x8Qg5nLYMKyylyWmgDBNtm725oAU,4750
1088
1115
  cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=M5rhQPt2XGrX26cvyknTIFGLBqa2jPgg4D0z8rhFogU,10584
1089
1116
  cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=Rtoi2xmhlk_fobf5Hwc1nDQlLtmKPcJm2FJTR8JgpN0,6278
1090
1117
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=-Oi3b9oX-0_3U9SKAkijVO-uBy4ut4PrFnsx-yFJ9mU,14391
@@ -1093,7 +1120,7 @@ cirq/value/abc_alt.py,sha256=ELJbQucNpDCPG4ImN9EDORqJU9OHT90EF1pwMBU0bRg,5998
1093
1120
  cirq/value/abc_alt_test.py,sha256=-N4ZZPVhkm1E5LaB2ZQEkOVObGFcbZbkdhS669cTtOg,9013
1094
1121
  cirq/value/angle.py,sha256=vNZfTE3WmbWPYBKSPt--wvTub5bgUhmKR7ao_dIlyBQ,3313
1095
1122
  cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1096
- cirq/value/classical_data.py,sha256=nJhGISrUyCi6poov3GTTNtyEaozVp0f0O5dUIF-YdQ4,11603
1123
+ cirq/value/classical_data.py,sha256=so7OCCfEGU2XU1yc5kWz2yhryK8s4FFChqi9GEV4hqE,11607
1097
1124
  cirq/value/classical_data_test.py,sha256=23ZraKZ-V3p-uux21bkcboQcEp81RW6VKnVIYPQc6_o,5231
1098
1125
  cirq/value/condition.py,sha256=QrxKBAox4C-z2pL2_xeKMvmfp0OP4tVFXJdPULx1pik,5900
1099
1126
  cirq/value/condition_test.py,sha256=FGnCFcpeIQFRbnszKsHKA5K7sderTz7kwS7zWbWwx64,4037
@@ -1116,7 +1143,7 @@ cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5
1116
1143
  cirq/value/timestamp.py,sha256=u0v5FmnSF_o3NE7aF-xIfQ5cDAVZzaUb-ZMdrxWYg2Y,3649
1117
1144
  cirq/value/timestamp_test.py,sha256=eZt9LLVK6TQy-2Bo1djitUD4at7i7M4lN60bLCx9UPs,4029
1118
1145
  cirq/value/type_alias.py,sha256=YD5m-77rx-hatIEVi5Q5j5tZ2Ji3Mmg4jUY9GT3LscM,1144
1119
- cirq/value/value_equality_attr.py,sha256=JX5urKm22YUi7xIc55foyhov8wSkHqwEHQh5sfbuAuw,10048
1146
+ cirq/value/value_equality_attr.py,sha256=VrSgnx8NLqIdXBSvZaf7V1NQ-zQO_BlM3CgxENNcEE8,10132
1120
1147
  cirq/value/value_equality_attr_test.py,sha256=k_nl5hWxo4yMO6WNu0wU68wyeb-RN9Ua_Ix7s9UTfOE,6412
1121
1148
  cirq/vis/__init__.py,sha256=e3Z1PI-Ay0hDHhIgFZEDwQIuO8C_aayNdL-EByF0J4o,1001
1122
1149
  cirq/vis/density_matrix.py,sha256=kMAPcRh6f0ghZKSe86nB_2iFngrDsw0pNael1EZ5BEw,4819
@@ -1144,12 +1171,12 @@ cirq/work/observable_settings.py,sha256=OsZS8XvHT2LCFGkzu-wh1WShOx93I1nZ2K7uce-i
1144
1171
  cirq/work/observable_settings_test.py,sha256=hV3g5ld5OZchTjVMVL_8cLXsbSBMz5DAsE4Vui2xTuk,4233
1145
1172
  cirq/work/pauli_sum_collector.py,sha256=N1IsIwudBi84XWP1x7LNE2uQ6DGR2LFIWPhGbdHxaA4,4230
1146
1173
  cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1147
- cirq/work/sampler.py,sha256=JVv1vvfa6EgFiR3UeDk44U186dCrioH2NZXueCgsb9w,19828
1148
- cirq/work/sampler_test.py,sha256=zo1Hj6sn6fLs_WZMxYRApBqgBsldmptn74NL0jhNukc,12325
1174
+ cirq/work/sampler.py,sha256=JEAeQQRF3bqlO9AkOf4XbrTATDI5f5JgyM_FAUCNxao,19751
1175
+ cirq/work/sampler_test.py,sha256=B2ZsuqGT854gQtBIAh8k0LiG9Vj5wSzcGvkxOUoTcW4,13217
1149
1176
  cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
1150
1177
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1151
- cirq_core-1.3.0.dev20231201164435.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1152
- cirq_core-1.3.0.dev20231201164435.dist-info/METADATA,sha256=MyTWIACn7XfgLriIXz8qXgcpGbd8xxRGJDK4HjvIIIQ,2075
1153
- cirq_core-1.3.0.dev20231201164435.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
1154
- cirq_core-1.3.0.dev20231201164435.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1155
- cirq_core-1.3.0.dev20231201164435.dist-info/RECORD,,
1178
+ cirq_core-1.4.0.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1179
+ cirq_core-1.4.0.dist-info/METADATA,sha256=rRtIG7Nw41oB0lCuRqA_jOIg6YYDuElv4OVm0tZ5dcc,1812
1180
+ cirq_core-1.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1181
+ cirq_core-1.4.0.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1182
+ cirq_core-1.4.0.dist-info/RECORD,,