cirq-core 1.5.0.dev20250403161251__py3-none-any.whl → 1.5.0.dev20250404021339__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 (54) hide show
  1. cirq/_version.py +1 -1
  2. cirq/_version_test.py +1 -1
  3. cirq/circuits/circuit.py +144 -147
  4. cirq/circuits/circuit_operation.py +37 -34
  5. cirq/circuits/circuit_operation_test.py +1 -1
  6. cirq/circuits/circuit_test.py +4 -6
  7. cirq/circuits/frozen_circuit.py +30 -26
  8. cirq/circuits/moment.py +37 -37
  9. cirq/circuits/optimization_pass.py +11 -11
  10. cirq/circuits/optimization_pass_test.py +6 -8
  11. cirq/circuits/qasm_output.py +13 -11
  12. cirq/circuits/text_diagram_drawer.py +9 -7
  13. cirq/contrib/acquaintance/bipartite.py +7 -5
  14. cirq/contrib/acquaintance/devices.py +3 -1
  15. cirq/contrib/acquaintance/executor.py +14 -16
  16. cirq/contrib/acquaintance/gates.py +19 -21
  17. cirq/contrib/acquaintance/inspection_utils.py +8 -6
  18. cirq/contrib/acquaintance/mutation_utils.py +8 -6
  19. cirq/contrib/acquaintance/optimizers.py +5 -3
  20. cirq/contrib/acquaintance/permutation.py +19 -19
  21. cirq/contrib/acquaintance/shift.py +5 -3
  22. cirq/contrib/acquaintance/shift_swap_network.py +5 -3
  23. cirq/contrib/acquaintance/strategies/complete.py +4 -2
  24. cirq/contrib/acquaintance/strategies/cubic.py +4 -2
  25. cirq/contrib/acquaintance/strategies/quartic_paired.py +8 -6
  26. cirq/contrib/acquaintance/topological_sort.py +4 -2
  27. cirq/contrib/bayesian_network/bayesian_network_gate.py +4 -2
  28. cirq/contrib/circuitdag/circuit_dag.py +18 -16
  29. cirq/contrib/custom_simulators/custom_state_simulator.py +10 -8
  30. cirq/contrib/custom_simulators/custom_state_simulator_test.py +9 -7
  31. cirq/contrib/graph_device/graph_device.py +4 -2
  32. cirq/contrib/noise_models/noise_models.py +7 -5
  33. cirq/contrib/paulistring/clifford_target_gateset.py +11 -9
  34. cirq/contrib/qcircuit/qcircuit_diagram.py +5 -2
  35. cirq/contrib/quantum_volume/quantum_volume.py +4 -4
  36. cirq/contrib/quimb/mps_simulator.py +25 -26
  37. cirq/contrib/routing/greedy.py +5 -3
  38. cirq/contrib/routing/initialization.py +3 -1
  39. cirq/contrib/routing/swap_network.py +5 -5
  40. cirq/contrib/routing/utils.py +4 -2
  41. cirq/contrib/svg/svg.py +9 -6
  42. cirq/devices/device.py +11 -9
  43. cirq/devices/grid_device_metadata.py +14 -11
  44. cirq/devices/grid_qubit.py +17 -21
  45. cirq/devices/grid_qubit_test.py +1 -1
  46. cirq/devices/insertion_noise_model.py +5 -5
  47. cirq/devices/line_qubit.py +15 -17
  48. cirq/devices/named_topologies.py +6 -4
  49. cirq/devices/noise_model.py +27 -31
  50. {cirq_core-1.5.0.dev20250403161251.dist-info → cirq_core-1.5.0.dev20250404021339.dist-info}/METADATA +1 -1
  51. {cirq_core-1.5.0.dev20250403161251.dist-info → cirq_core-1.5.0.dev20250404021339.dist-info}/RECORD +54 -54
  52. {cirq_core-1.5.0.dev20250403161251.dist-info → cirq_core-1.5.0.dev20250404021339.dist-info}/LICENSE +0 -0
  53. {cirq_core-1.5.0.dev20250403161251.dist-info → cirq_core-1.5.0.dev20250404021339.dist-info}/WHEEL +0 -0
  54. {cirq_core-1.5.0.dev20250403161251.dist-info → cirq_core-1.5.0.dev20250404021339.dist-info}/top_level.txt +0 -0
@@ -12,6 +12,8 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
+ from __future__ import annotations
16
+
15
17
  from typing import Any, Callable, Dict, Iterable, Sequence, TYPE_CHECKING, Union
16
18
 
17
19
  from cirq import ops, protocols, value
@@ -41,7 +43,7 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
41
43
  """
42
44
 
43
45
  @classmethod
44
- def from_noise_model_like(cls, noise: 'cirq.NOISE_MODEL_LIKE') -> 'cirq.NoiseModel':
46
+ def from_noise_model_like(cls, noise: cirq.NOISE_MODEL_LIKE) -> cirq.NoiseModel:
45
47
  """Transforms an object into a noise model if unambiguously possible.
46
48
 
47
49
  Args:
@@ -76,7 +78,7 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
76
78
  f'or a single qubit gate). Got {noise!r}'
77
79
  )
78
80
 
79
- def is_virtual_moment(self, moment: 'cirq.Moment') -> bool:
81
+ def is_virtual_moment(self, moment: cirq.Moment) -> bool:
80
82
  """Returns true iff the given moment is non-empty and all of its
81
83
  operations are virtual.
82
84
 
@@ -95,16 +97,16 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
95
97
  return all(ops.VirtualTag() in op.tags for op in moment)
96
98
 
97
99
  def _noisy_moments_impl_moment(
98
- self, moments: Iterable['cirq.Moment'], system_qubits: Sequence['cirq.Qid']
99
- ) -> Sequence['cirq.OP_TREE']:
100
+ self, moments: Iterable[cirq.Moment], system_qubits: Sequence[cirq.Qid]
101
+ ) -> Sequence[cirq.OP_TREE]:
100
102
  result = []
101
103
  for moment in moments:
102
104
  result.append(self.noisy_moment(moment, system_qubits))
103
105
  return result
104
106
 
105
107
  def _noisy_moments_impl_operation(
106
- self, moments: Iterable['cirq.Moment'], system_qubits: Sequence['cirq.Qid']
107
- ) -> Sequence['cirq.OP_TREE']:
108
+ self, moments: Iterable[cirq.Moment], system_qubits: Sequence[cirq.Qid]
109
+ ) -> Sequence[cirq.OP_TREE]:
108
110
  result = []
109
111
  for moment in moments:
110
112
  result.append([self.noisy_operation(op) for op in moment])
@@ -113,8 +115,8 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
113
115
  @value.alternative(requires='noisy_moment', implementation=_noisy_moments_impl_moment)
114
116
  @value.alternative(requires='noisy_operation', implementation=_noisy_moments_impl_operation)
115
117
  def noisy_moments(
116
- self, moments: Iterable['cirq.Moment'], system_qubits: Sequence['cirq.Qid']
117
- ) -> Sequence['cirq.OP_TREE']:
118
+ self, moments: Iterable[cirq.Moment], system_qubits: Sequence[cirq.Qid]
119
+ ) -> Sequence[cirq.OP_TREE]:
118
120
  """Adds possibly stateful noise to a series of moments.
119
121
 
120
122
  Args:
@@ -128,20 +130,18 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
128
130
  raise NotImplementedError
129
131
 
130
132
  def _noisy_moment_impl_moments(
131
- self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']
132
- ) -> 'cirq.OP_TREE':
133
+ self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]
134
+ ) -> cirq.OP_TREE:
133
135
  return self.noisy_moments([moment], system_qubits)
134
136
 
135
137
  def _noisy_moment_impl_operation(
136
- self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']
137
- ) -> 'cirq.OP_TREE':
138
+ self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]
139
+ ) -> cirq.OP_TREE:
138
140
  return [self.noisy_operation(op) for op in moment]
139
141
 
140
142
  @value.alternative(requires='noisy_moments', implementation=_noisy_moment_impl_moments)
141
143
  @value.alternative(requires='noisy_operation', implementation=_noisy_moment_impl_operation)
142
- def noisy_moment(
143
- self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']
144
- ) -> 'cirq.OP_TREE':
144
+ def noisy_moment(self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]) -> cirq.OP_TREE:
145
145
  """Adds noise to the operations from a moment.
146
146
 
147
147
  Args:
@@ -153,15 +153,15 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
153
153
  """
154
154
  raise NotImplementedError
155
155
 
156
- def _noisy_operation_impl_moments(self, operation: 'cirq.Operation') -> 'cirq.OP_TREE':
156
+ def _noisy_operation_impl_moments(self, operation: cirq.Operation) -> cirq.OP_TREE:
157
157
  return self.noisy_moments([moment_module.Moment([operation])], operation.qubits)
158
158
 
159
- def _noisy_operation_impl_moment(self, operation: 'cirq.Operation') -> 'cirq.OP_TREE':
159
+ def _noisy_operation_impl_moment(self, operation: cirq.Operation) -> cirq.OP_TREE:
160
160
  return self.noisy_moment(moment_module.Moment([operation]), operation.qubits)
161
161
 
162
162
  @value.alternative(requires='noisy_moments', implementation=_noisy_operation_impl_moments)
163
163
  @value.alternative(requires='noisy_moment', implementation=_noisy_operation_impl_moment)
164
- def noisy_operation(self, operation: 'cirq.Operation') -> 'cirq.OP_TREE':
164
+ def noisy_operation(self, operation: cirq.Operation) -> cirq.OP_TREE:
165
165
  """Adds noise to an individual operation.
166
166
 
167
167
  Args:
@@ -178,15 +178,13 @@ class NoiseModel(metaclass=value.ABCMetaImplementAnyOneOf):
178
178
  class _NoNoiseModel(NoiseModel):
179
179
  """A default noise model that adds no noise."""
180
180
 
181
- def noisy_moments(self, moments: Iterable['cirq.Moment'], system_qubits: Sequence['cirq.Qid']):
181
+ def noisy_moments(self, moments: Iterable[cirq.Moment], system_qubits: Sequence[cirq.Qid]):
182
182
  return list(moments)
183
183
 
184
- def noisy_moment(
185
- self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']
186
- ) -> 'cirq.Moment':
184
+ def noisy_moment(self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]) -> cirq.Moment:
187
185
  return moment
188
186
 
189
- def noisy_operation(self, operation: 'cirq.Operation') -> 'cirq.Operation':
187
+ def noisy_operation(self, operation: cirq.Operation) -> cirq.Operation:
190
188
  return operation
191
189
 
192
190
  def _value_equality_values_(self) -> Any:
@@ -216,7 +214,7 @@ class ConstantQubitNoiseModel(NoiseModel):
216
214
  operation is given as "the noise to use" for a `NOISE_MODEL_LIKE` parameter.
217
215
  """
218
216
 
219
- def __init__(self, qubit_noise_gate: 'cirq.Gate', prepend: bool = False):
217
+ def __init__(self, qubit_noise_gate: cirq.Gate, prepend: bool = False):
220
218
  """Noise model which applies a specific gate as noise to all gates.
221
219
 
222
220
  Args:
@@ -237,7 +235,7 @@ class ConstantQubitNoiseModel(NoiseModel):
237
235
  def __repr__(self) -> str:
238
236
  return f'cirq.ConstantQubitNoiseModel({self.qubit_noise_gate!r})'
239
237
 
240
- def noisy_moment(self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']):
238
+ def noisy_moment(self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]):
241
239
  # Noise should not be appended to previously-added noise.
242
240
  if self.is_virtual_moment(moment):
243
241
  return moment
@@ -260,7 +258,7 @@ class ConstantQubitNoiseModel(NoiseModel):
260
258
 
261
259
 
262
260
  class GateSubstitutionNoiseModel(NoiseModel):
263
- def __init__(self, substitution_func: Callable[['cirq.Operation'], 'cirq.Operation']):
261
+ def __init__(self, substitution_func: Callable[[cirq.Operation], cirq.Operation]):
264
262
  """Noise model which replaces operations using a substitution function.
265
263
 
266
264
  Args:
@@ -268,13 +266,11 @@ class GateSubstitutionNoiseModel(NoiseModel):
268
266
  """
269
267
  self.substitution_func = substitution_func
270
268
 
271
- def noisy_moment(
272
- self, moment: 'cirq.Moment', system_qubits: Sequence['cirq.Qid']
273
- ) -> 'cirq.OP_TREE':
269
+ def noisy_moment(self, moment: cirq.Moment, system_qubits: Sequence[cirq.Qid]) -> cirq.OP_TREE:
274
270
  return moment_module.Moment([self.substitution_func(op) for op in moment.operations])
275
271
 
276
272
 
277
- NO_NOISE: 'cirq.NoiseModel' = _NoNoiseModel()
273
+ NO_NOISE: cirq.NoiseModel = _NoNoiseModel()
278
274
  document(
279
275
  NO_NOISE,
280
276
  """The trivial noise model with no effects.
@@ -298,7 +294,7 @@ document(
298
294
  )
299
295
 
300
296
 
301
- def validate_all_measurements(moment: 'cirq.Moment') -> bool:
297
+ def validate_all_measurements(moment: cirq.Moment) -> bool:
302
298
  """Ensures that the moment is homogenous and returns whether all ops are measurement gates.
303
299
 
304
300
  Args:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cirq-core
3
- Version: 1.5.0.dev20250403161251
3
+ Version: 1.5.0.dev20250404021339
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=0m3sYIyxRNv9jvAo6rzJ-cnbpny3KGnAByrbU7bApgQ,34720
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
5
  cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=j-fCpPvtBglIFUo8ATvJCI4xENyO73P55NP5YmIpS44,1206
8
- cirq/_version_test.py,sha256=kn0qsgomvRNSWbU7t_oRQLZEbf8eAhXInRTj2hayBY4,147
7
+ cirq/_version.py,sha256=tJqrXyCijjlfc105MbHDLiK4zbOa_uLQ_0LSBMOYxzk,1206
8
+ cirq/_version_test.py,sha256=dY_9lpuzH3mNn9CoDRaOZx8oO79-7aWE3WD1CAZi5wI,147
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
10
  cirq/json_resolver_cache.py,sha256=YVamU72nCUT5dG0bhAvRKVX5lXcZMNTwP3H36v-cYag,13615
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -16,66 +16,66 @@ cirq/circuits/_box_drawing_character_data.py,sha256=5Ldk4XlJRacmyvsfcl2KhlMdXqO1
16
16
  cirq/circuits/_box_drawing_character_data_test.py,sha256=b3BN-iVUkQENi2Ja-RYQ_-_lNcKgwV1F9DyalXxiI10,1624
17
17
  cirq/circuits/_bucket_priority_queue.py,sha256=ml98_VAwGXzASUS0hE7lT7PeA0Hugz-qAZtjtAdBsvw,6744
18
18
  cirq/circuits/_bucket_priority_queue_test.py,sha256=1FnB39rJKODvXP3SpSD6B8Tu02yQWCWOUQSPmR-22Pw,5288
19
- cirq/circuits/circuit.py,sha256=XXyjI_qPkH5lYROVZsargpFk0-a5YO88plG_D5Xpebo,119484
20
- cirq/circuits/circuit_operation.py,sha256=1hnNilAMeLfPIXjmIofzHeJ5MDucjmOl7LB6mPq8J5U,36438
21
- cirq/circuits/circuit_operation_test.py,sha256=SFyM12Ky7-OVwl-jK3OTMMN0DD5hR6tWfx_v7m6HUMo,48866
22
- cirq/circuits/circuit_test.py,sha256=FoGpOv8qBjNaMkSPdO8EKldLXEcDgUhM9bk2mf-dH3A,162812
23
- cirq/circuits/frozen_circuit.py,sha256=FrCdTS7kNqd9t3WtwzNLxL-kO6ei7w-h4MwNZfZJhRo,9252
19
+ cirq/circuits/circuit.py,sha256=reDLqLMj3SZM-z-7vLZhvy4XRTnmkK0HigbknFtMDLA,119141
20
+ cirq/circuits/circuit_operation.py,sha256=8zeK57Xjkavt_ur9ESqocMURTcqD-f2T3hAe95gVB-g,36395
21
+ cirq/circuits/circuit_operation_test.py,sha256=CcIX8n_aASmKR2iqWKyoCbyarEVN9WAl5VSHdBVznKg,48862
22
+ cirq/circuits/circuit_test.py,sha256=KjRYRwUgC65vxf_3hdZLgid7sNm5Fn_lcIp15Q4yWyk,162757
23
+ cirq/circuits/frozen_circuit.py,sha256=TLjw_UmbnV-Lhtn63RqTnCBbQiZPvsJdS-s99-aMRGI,9232
24
24
  cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
25
25
  cirq/circuits/insert_strategy.py,sha256=JU_KPe74P3OpbVQei5iDPgEpOjpts5JFKXU5Xy1QYHE,3211
26
26
  cirq/circuits/insert_strategy_test.py,sha256=ttqhNP1G1jrtwFd0KIlqkTj_1C8F1K7Jqnaz0rEWAiE,1185
27
- cirq/circuits/moment.py,sha256=YayXeFGm5eU5m0yGFah8tf9XrgoFZbBZ6yPb6u-KJjU,25996
27
+ cirq/circuits/moment.py,sha256=g6gPgOvRx7sVcxlmjzPvd7UkdFlElCw7bHrahWhrK5M,25924
28
28
  cirq/circuits/moment_test.py,sha256=672QcwLSTuuJzXIISH9UyMIOX89aYZZD3odvhyzhxLo,31116
29
- cirq/circuits/optimization_pass.py,sha256=7-5e48vhKLdZSzeucUeJ15wkQu28Kh1lyV9NIHeuAtQ,6528
30
- cirq/circuits/optimization_pass_test.py,sha256=jN7A05bLY7jIfGy_OuAg56ZpLiFtMDbCucawhgyS8-M,5948
31
- cirq/circuits/qasm_output.py,sha256=dHS4oJyocfrq_txxPj1gCsoSyElWcGkLKp_XSEnRq7Y,13110
29
+ cirq/circuits/optimization_pass.py,sha256=8R3AqhL55giV4JPAX052r5hY-erG562Uv_SoNHHXeQU,6499
30
+ cirq/circuits/optimization_pass_test.py,sha256=F1FB2_Jx5ZtwSyxMl2Y5ihA2L-ik60kjjQ4Ou8ebWX8,5887
31
+ cirq/circuits/qasm_output.py,sha256=Kp0BWiMpCUxt5zXcE-tynU7R8U7hwCHG-hnjzfzeBiM,13120
32
32
  cirq/circuits/qasm_output_test.py,sha256=o4A24t-gcQF6EptY5zQE4SoGjycSQAyMJux1no7FPsk,13840
33
- cirq/circuits/text_diagram_drawer.py,sha256=y3hKVR6yYM_yneUzL94072RH30Ny5YN-8sq96gFkmtc,16592
33
+ cirq/circuits/text_diagram_drawer.py,sha256=EGnSC4lB12NdgAPeKWc6yaBUr1_bbcd1hhff4zm1GZM,16610
34
34
  cirq/circuits/text_diagram_drawer_test.py,sha256=CAp28ZagRpOZjRJ35uGQR7QmKxSLl65lgq8Vx8GKsjg,10751
35
35
  cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
36
  cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
37
37
  cirq/contrib/json_test.py,sha256=GKP_XKouLW1WPotgUDyHvdaOagrHnwdq2MVbhaseeQw,1117
38
38
  cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
- cirq/contrib/acquaintance/bipartite.py,sha256=JvWXCADkdHjsVOkdlAoPniffjFWz1noWO3KeQJ3QLkE,6525
39
+ cirq/contrib/acquaintance/bipartite.py,sha256=8PsPAo2POlrQ4sw6pnUu_WOiGL9VD1ASCy8rkpm2XnI,6545
40
40
  cirq/contrib/acquaintance/bipartite_test.py,sha256=_Sx75GV9DEbyZB-zQ9mCj--SCr0aGVBFzo-YIwq1E6I,16064
41
- cirq/contrib/acquaintance/devices.py,sha256=rk04cWBdOcbV05MPzBaVCBCMDkzFaHs-fzZCCphPSgQ,3030
41
+ cirq/contrib/acquaintance/devices.py,sha256=5wnuG4IFrva4J3muqf81iOS3zlxuEZ81V2UA06PeB6s,3064
42
42
  cirq/contrib/acquaintance/devices_test.py,sha256=RnNwPp1PHNrcygibMdrJEMViBCm4eTXZgI0PUqAeoCM,1207
43
- cirq/contrib/acquaintance/executor.py,sha256=N96PewFMtjmNnV6e7OmZv_BG4_RXTOQKXfnvdVwk050,8679
43
+ cirq/contrib/acquaintance/executor.py,sha256=a6SIaykIfZaIlxHxlgpwzqfvUb46O2V2i_qEJsEGlcI,8661
44
44
  cirq/contrib/acquaintance/executor_test.py,sha256=VxmGijgjAjuy6s-H5L9Ynu4CxYXFr9rPc2FfuoQjdXs,7903
45
- cirq/contrib/acquaintance/gates.py,sha256=F-B4Rmn4jjjTWkVyKy8jQBkBerf4VDuATxutIrjdtOg,13576
45
+ cirq/contrib/acquaintance/gates.py,sha256=WiIbIEvzIsw4ny9PMaL0yMSu9JSCJXq9TarWGpq41zs,13542
46
46
  cirq/contrib/acquaintance/gates_test.py,sha256=m_QMKqElKXqDbtviwJcgwYf8E1ZM7jcFmb2iPbAIrGM,15010
47
- cirq/contrib/acquaintance/inspection_utils.py,sha256=n4IUZ9Kl64jU1HsDvs8A-u4wyfFAzrdSa7V7ATq2te0,2606
47
+ cirq/contrib/acquaintance/inspection_utils.py,sha256=yTJ-ferTfvLst8Lm6mchsQV5qgFI-D6LtnQD_dG-B9Q,2636
48
48
  cirq/contrib/acquaintance/inspection_utils_test.py,sha256=_ksOZ1fBkRsylRWKHWa2-sNgqJdlQK5mb5xZx57--dI,1426
49
- cirq/contrib/acquaintance/mutation_utils.py,sha256=I2qra9c1_yxt8rM_hZt7rKx__MlWoJZ-ydVomcqe5Aw,4730
49
+ cirq/contrib/acquaintance/mutation_utils.py,sha256=q-aikSKFLGISgTNXYDGinFUW30mNLPjqTj00-SeDU80,4754
50
50
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=r_0IdvjSqres1KWs4o4HEb8a5WATovIBOUIAjVeIzns,7848
51
- cirq/contrib/acquaintance/optimizers.py,sha256=YsIuyrXu99aFaSwEtmHdE1D8SRvKQUbCCZA9n2tGxec,2091
51
+ cirq/contrib/acquaintance/optimizers.py,sha256=ZPsZW-ZakNcLMRATpVkNuBT7vBd55XqHUU3dtzMO0rw,2121
52
52
  cirq/contrib/acquaintance/optimizers_test.py,sha256=R_r_G7bBPBo_8qOjKgZsEBLMihZO6jlZ0yor-U25vBE,2455
53
- cirq/contrib/acquaintance/permutation.py,sha256=hZKa9E2MATubm-14mHGhlm5h19EzwFD22jMV8HHBOVU,11854
53
+ cirq/contrib/acquaintance/permutation.py,sha256=S9ngL-kIkTle0gBYbp-OzIxTUQl7Hp5C_w4UVd5apUg,11832
54
54
  cirq/contrib/acquaintance/permutation_test.py,sha256=6Q9s-qvEoLbDEmoPrtyXv_57uIDzggooJEcqY3mRzZg,11503
55
- cirq/contrib/acquaintance/shift.py,sha256=KGQ5gjEFgUTyVdh9E_uQvHjEpAunySjkMEN2IkjnIV8,3079
56
- cirq/contrib/acquaintance/shift_swap_network.py,sha256=XQaF8akqi4F_zb1_dYmV3u_T9Yumnene36AtkqcEtQo,5283
55
+ cirq/contrib/acquaintance/shift.py,sha256=ZZ5Krvgx5OOLhr5qLOVvP0G_dvGMgy-fIrJPxIgY10U,3107
56
+ cirq/contrib/acquaintance/shift_swap_network.py,sha256=WNWUZtUmyzzt3xZg6g_FgmbTNON5gtU9uKWXjWhB9YU,5311
57
57
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
58
58
  cirq/contrib/acquaintance/shift_test.py,sha256=FnY-D0i4CZsE0v1GLf30u_JyIYDtzV06O-Hd0tDnuXc,4555
59
59
  cirq/contrib/acquaintance/testing.py,sha256=auzzDDTTBiE6-0PGnJs-etYwozGqBoJ7JVlPuXcky-E,1582
60
- cirq/contrib/acquaintance/topological_sort.py,sha256=PjMABmMCG_hoD1pHHeQ_xEGA8zbt5_Cpz7Ld0uyBDnQ,2944
60
+ cirq/contrib/acquaintance/topological_sort.py,sha256=u57w5NVj3dddXMUO9N_WcOl0CaDA2nXS3SZtrlLEFCo,2976
61
61
  cirq/contrib/acquaintance/topological_sort_test.py,sha256=rW4Oa3A92kQfw2GQSxSXPIJfhftuh7eaAPJX8nUwcSQ,1672
62
62
  cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
63
- cirq/contrib/acquaintance/strategies/complete.py,sha256=CODbiwmxU_HnYZxp57btavZmgflgTPD9_OhuiFVgK2U,2164
64
- cirq/contrib/acquaintance/strategies/cubic.py,sha256=jUKl8kvPSerdMh1ZGeH_oZej0OjTnIf1cwPj1FQAAis,3150
63
+ cirq/contrib/acquaintance/strategies/complete.py,sha256=Ty3ua6PC80y_J1lyCOmzoRmMmbv-lnjhS00uxChR8to,2194
64
+ cirq/contrib/acquaintance/strategies/cubic.py,sha256=9ynZcuGJxG6eH3XZn_8hrDTGPzoWgbaeT7Z2a5wOHvA,3180
65
65
  cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=0ZgDl8uNv9lG1TxQSaCEjNGgRFMeaoETzKSpnhBlR8Y,1547
66
- cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=LGOa-E-v2RjK2QIEqbF2UffrAvVFsdzbr-NSm2W81u4,2560
66
+ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=Cr7VeT4k8SUoZGdLtw9uw355uQV1fFT161rAscjZDDE,2583
67
67
  cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=zIMocEKc6rcCSJlyBsI2EJqiNY_iLVrNqruzqiQFDMk,2129
68
68
  cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
- cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=WchaOQe6zPQe72I1UA2o5plnnckoyyp3VU5rvUQ7ono,9157
69
+ cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=6MKRJLzXWTSUBQ3PPIxYY5ikBwH7MVu7DBAADgY0o-Y,9182
70
70
  cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=d263Wm3yGedN87SraSlea9OMb0yy3ZkNRnaEYZd8AcU,5876
71
71
  cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
- cirq/contrib/circuitdag/circuit_dag.py,sha256=w5e3zImaCV9stX9GC9wPN0ricafloO0zqJQ3g68TNUI,6894
72
+ cirq/contrib/circuitdag/circuit_dag.py,sha256=chqf4O67gSq56uCSVMj8-n6eHGBP6NYZN9oYNI29p9U,6888
73
73
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=Daj480Yk0eisOsQXvYITy2kyLSQJ7g5AHirZzNs_dYw,8222
74
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=xSQLAyAQSghi5nbrGbJqoBnDKC2twBidpf77F1PUuss,3198
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=7wyFF6-d9SKnIbIQN2sfhX8NUCXxU0xh-485fSyqEfA,7788
75
+ cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=VMF_A0_2FYTR89PwgQl-l77U3e0n6PCyjLD-YA5g0NM,3218
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=AJgs1HIkXQvoJ2_ll4oSrT2dwzqFlP4By5B-nYHqUDg,7806
77
77
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
- cirq/contrib/graph_device/graph_device.py,sha256=kQ-P-xSkXTLJFmfS2IHE4dkTjKhBeWS0nvotZBPGnc0,7910
78
+ cirq/contrib/graph_device/graph_device.py,sha256=Hi7KZnV_lY_qNhPFyrzdbqvpTHYu7XNc2RC0w96KdV0,7942
79
79
  cirq/contrib/graph_device/graph_device_test.py,sha256=2Z0jTprCZL4V5-gnOblOpz3p6IRsei1VCNxqLWoWnSo,7203
80
80
  cirq/contrib/graph_device/hypergraph.py,sha256=6hdKri90qqU6ujmR2y8nVyk2pr5wHvFhHAhLYbg5T7o,4716
81
81
  cirq/contrib/graph_device/hypergraph_test.py,sha256=ccwPqqHOWq-ZJ4abhyDrCjXQdrmY1Nb6lP9G_jdi6pw,3769
@@ -85,12 +85,12 @@ cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUY
85
85
  cirq/contrib/hacks/disable_validation.py,sha256=wJEzMoK3qDzhIFDUOIgdKqNDcHl74MJAi0OJuCjl82k,1419
86
86
  cirq/contrib/hacks/disable_validation_test.py,sha256=nuDfktj3bD7oFlae3R0Jf_qcAo87Z9CphYxi9lFQ1J4,1711
87
87
  cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
88
- cirq/contrib/noise_models/noise_models.py,sha256=1aIV0_52bVe5elt_NCSE4yEbHwP9DES1yL9mJhsXayw,7658
88
+ cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCYgow7tl8Pjf5Q,7674
89
89
  cirq/contrib/noise_models/noise_models_test.py,sha256=nELHWYWbRp6RCurjTSEAumpZPMY2gNN3S4Mhho3pwJ0,10488
90
90
  cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
91
  cirq/contrib/paulistring/clifford_optimize.py,sha256=zeap55snqMQZL7GiDHCdQztgsRlVYlEsAFYmPtrEBwo,7849
92
92
  cirq/contrib/paulistring/clifford_optimize_test.py,sha256=Q8REpwDRNEHVYl3yxfzxN7c5dsQLhZSkk842xaKvFrw,3889
93
- cirq/contrib/paulistring/clifford_target_gateset.py,sha256=zrYW6BVFeB_CgwsfZx_IKwpj4nWedXAlOkcmWln-PWw,6353
93
+ cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7TyfG3ieJluz8AziQKFCT1EgRKLzWu2aoUGAEcLblGw,6369
94
94
  cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=Q_Zqbfp6yVzLabpKLnhIFCnGBaCgsgiABXCuAixwySQ,8668
95
95
  cirq/contrib/paulistring/optimize.py,sha256=ArUWzXYpHq9SE7K9FdqsJ5WJg1ZvHs8DP6zHeJMlp18,2707
96
96
  cirq/contrib/paulistring/optimize_test.py,sha256=jdZBpXIialcHQGsp8LIuIpU9M5wBQX9HgnqqiMv5l8U,3559
@@ -113,21 +113,21 @@ cirq/contrib/qasm_import/exception.py,sha256=Wm6cwUPIkNMPjkv-ELpQ-zSoXaiLOddOQ4i
113
113
  cirq/contrib/qasm_import/qasm.py,sha256=CP444IWCw4zlDNA7HxsTJ2xIak4mZhQv62ZiLlUc2zo,914
114
114
  cirq/contrib/qasm_import/qasm_test.py,sha256=Co2ksl14dBvYtBUB9-9DONjjyV7uTdZqNP8k8dBLS-Y,1861
115
115
  cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
- cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_q9V9GFeQ_n0I,2749
116
+ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
118
118
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
119
119
  cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=VjE0vJOGtfR9gIFUNeOPBg9gJCCnLrgNpAg2v65_sVM,2603
120
120
  cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=ICKNgx-sxj9TQxuixhYX6n7MJ4a0YI1D_CqyHOMkvH0,873
121
121
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=g6lbhtkq85hKAwp1-dcU73LpAt0_RcmPKMApxd6X_6E,6041
122
122
  cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
123
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=_1jH4TCTBiHzQU04DH7sWqR4ojiIwsRACS6rJIiDG48,19397
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=x1nmPFHlp1ZAQC41aYZsHzvBvTRzNZ0azXb-a62ylsQ,19389
124
124
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=hVwInjcdS9jKPKeDoQ8EnxjwESC_QLvgEOaykwk27rI,12400
125
125
  cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
126
126
  cirq/contrib/quimb/density_matrix.py,sha256=Q1MOZYFsymYwx5QIi89ydzctO3mj2Hb5fpHujubykHA,8637
127
127
  cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
128
128
  cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
129
129
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
130
- cirq/contrib/quimb/mps_simulator.py,sha256=70DpXBhQJMZxMqn7nTcFBgdto_-4G1ivntRP_QBq7ug,24745
130
+ cirq/contrib/quimb/mps_simulator.py,sha256=xEtLqkAHNavyUr8IuBJ-RHi_O4qK9DoIbNSOfZyR8u0,24710
131
131
  cirq/contrib/quimb/mps_simulator_test.py,sha256=sg1l7mtJh3HrUQkS3cRv5M0LAQG2RUR0Tr2osjjXG0k,17142
132
132
  cirq/contrib/quimb/state_vector.py,sha256=wc4-d6ZH-Mjqhb6vfftaV-YDoMJqJPNqQcNjfGcQTAw,6686
133
133
  cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
@@ -139,36 +139,36 @@ cirq/contrib/quirk/quirk_gate.py,sha256=aQkCCrMIlShNhKKWWY9rSSknPUVP_XSEmjHqZt1y
139
139
  cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
140
140
  cirq/contrib/routing/device.py,sha256=bj0AdDB9xnXqzrsSy2C3puVOza0bU-GhImoEr1IBZDw,2889
141
141
  cirq/contrib/routing/device_test.py,sha256=fGGN9agUEEusrzCaodsmCWMJE7LBF4Vc9JQ9KL_7b9A,1926
142
- cirq/contrib/routing/greedy.py,sha256=M6ywWixJAna1Ce4PMxhqf5zDk5PBWEEVkfoN7gvsMl8,13899
142
+ cirq/contrib/routing/greedy.py,sha256=TBkt0z76Fefs_6rlKE3sQXGqo_96GYsVDixrMiz9Oaw,13929
143
143
  cirq/contrib/routing/greedy_test.py,sha256=e658tKz2SSqIUah6r9EMup2yxaaLBz0dz6xRryV_jDE,2238
144
- cirq/contrib/routing/initialization.py,sha256=nlEPDO11a6OVbqrSyHjRb2HGbo-ATE93au-eXjC1F_4,3699
144
+ cirq/contrib/routing/initialization.py,sha256=M6z2eSiFaoZutZFQXhTJrQKdNVp2TEBtEPfmwGUlZAk,3733
145
145
  cirq/contrib/routing/initialization_test.py,sha256=_-nePdUmoE3IdW240GEMBCm0P8rlOWF_ENXb196LlQo,2473
146
146
  cirq/contrib/routing/router.py,sha256=KK4b8eZGxz3OrJVOaj9DnGONLXNGrOv1SBgMWcaa7tQ,2529
147
147
  cirq/contrib/routing/router_test.py,sha256=eIoKRCOMgXdAbxKURgD2rBhlz47AQXqDMbwyqKTz-ng,6330
148
- cirq/contrib/routing/swap_network.py,sha256=F9zOTMEwQZbJk1GU_bcfx89qQ68zNrP4Kc43ej2aXW4,2375
148
+ cirq/contrib/routing/swap_network.py,sha256=3isu0X6KZS6Fkp6ZdZcSNpqP4IJVjxfY818GCI_kQlk,2385
149
149
  cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98Ty2TtOI1zXzU,4816
150
- cirq/contrib/routing/utils.py,sha256=fYv26JNCQKAo6UoiwmHWG9uArf7WyaacfbOo5KIBDXU,3761
150
+ cirq/contrib/routing/utils.py,sha256=8fhDAqpYI8Tn12aTAOHjThzlv7QM0fbVrUWIUXgM9sg,3786
151
151
  cirq/contrib/routing/utils_test.py,sha256=WzOWrun1hnvSI6A4pA0jHRzSsiLCjZBa6ARGkYoBK9Y,2020
152
152
  cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
153
153
  cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=d7tW83RW5RW3s5NUTXSPlw1-KAk7mll3wrkJkuJXlcI,10844
154
154
  cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=TaO33Z5IYLQcFxpaYXbCiTjQdtgeBwL5qhT2TjbHpDA,13847
155
155
  cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
156
- cirq/contrib/svg/svg.py,sha256=7SkOG1C8vxX2a4bke9aLe27c5QcnrcnSZC1wBopjGos,9385
156
+ cirq/contrib/svg/svg.py,sha256=QQs--lyGCOY8ynbUIxdJf-i-8X_fU8NRjPIn8ELUnIk,9410
157
157
  cirq/contrib/svg/svg_test.py,sha256=VUuaQGu0ZxnWXgbh7BgZYQK4zyaxdPfBrX9ifJ7quUc,2430
158
158
  cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
159
- cirq/devices/device.py,sha256=9WCe_d-ahPWVk4sSijhUiQGmAK1sCQQ73jOeIN6LOyU,5363
159
+ cirq/devices/device.py,sha256=wLHSXdB9VuPCKnjBIoioE03zt6PzTAwrULE2_-rmOBQ,5377
160
160
  cirq/devices/device_test.py,sha256=9MDFBoTA2AwjhR65Dzmibohecah82yEM7d6w_ujWiSc,1125
161
- cirq/devices/grid_device_metadata.py,sha256=ycDRdew-W0k5uEvmkSsLUuv7ebnYJv7LGxRXe6Nw22g,8630
161
+ cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
162
162
  cirq/devices/grid_device_metadata_test.py,sha256=jUnuBRH_ufJUIp4fA70z7IOXCbIxYAbgfHwYbC-nTJ8,8593
163
- cirq/devices/grid_qubit.py,sha256=l3K4etDSavg_Q_80Om3RDE9bTcW_yyg3NKYge2_al34,18859
164
- cirq/devices/grid_qubit_test.py,sha256=Mf1AfjvcpKPHeg-2GWDZaKPUsXGn8wvidIbwu_3rZu4,15015
165
- cirq/devices/insertion_noise_model.py,sha256=OsDQgEmZmU3nYNW0SpB7MbAeX-FsIVDg5kwnpsxzLQ4,3614
163
+ cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
164
+ cirq/devices/grid_qubit_test.py,sha256=3-H-xzJre0H36J83vF3U2oK1cojZKyv2oJ6UeD57roA,15011
165
+ cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
166
166
  cirq/devices/insertion_noise_model_test.py,sha256=YtKV1tI57ux_mXJbAF98TuTk2kpGeBxBQjzWWmkVtY8,3992
167
- cirq/devices/line_qubit.py,sha256=PMWGx9d4HK1hpdQL-IV40RIW7kEq-ArLPnGY-7NQVlY,11851
167
+ cirq/devices/line_qubit.py,sha256=nZOtTehJq2JuKP4evGQkR-ktMWNizkDPtUQhU1A4u-s,11829
168
168
  cirq/devices/line_qubit_test.py,sha256=eu47MSzy5eymIccIuHct8Z_WJeHhZYEARR3yB3NXyO8,10287
169
- cirq/devices/named_topologies.py,sha256=5qalcd1JR649O-hBVWq2tzUew_UlDsTfTzt44T9-xcA,15790
169
+ cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
170
170
  cirq/devices/named_topologies_test.py,sha256=4YURaPFHN7CAxl9Tve_kysJuEY4O1PPywEMkGGr12m0,4737
171
- cirq/devices/noise_model.py,sha256=hUCOwOhjGC3BpIfMiaEhEP-zCWWZLG_aMIK2NpkCDO8,11339
171
+ cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
172
172
  cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
173
173
  cirq/devices/noise_properties.py,sha256=-OLtCTkLzD7w4HcwufftE9iTOkuC9Z9lNZQXXr4Dqxk,5085
174
174
  cirq/devices/noise_properties_test.py,sha256=0s8ROjcRyfXeExxGz4gyA79pZARXwHanzOpDpcXEmcM,2341
@@ -1209,8 +1209,8 @@ cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
1209
1209
  cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
1210
1210
  cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
1211
1211
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1212
- cirq_core-1.5.0.dev20250403161251.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
- cirq_core-1.5.0.dev20250403161251.dist-info/METADATA,sha256=Q-H7hBI3jeiR67pxqiGGU-PzcJoAIEDwMhSyZDyovW8,4584
1214
- cirq_core-1.5.0.dev20250403161251.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1215
- cirq_core-1.5.0.dev20250403161251.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
- cirq_core-1.5.0.dev20250403161251.dist-info/RECORD,,
1212
+ cirq_core-1.5.0.dev20250404021339.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
+ cirq_core-1.5.0.dev20250404021339.dist-info/METADATA,sha256=n3JnYEY14pICdHhkQtkld9UKit8tns-ikYonB5NaIJk,4584
1214
+ cirq_core-1.5.0.dev20250404021339.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1215
+ cirq_core-1.5.0.dev20250404021339.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
+ cirq_core-1.5.0.dev20250404021339.dist-info/RECORD,,