cirq-core 1.6.0.dev20250529190123__py3-none-any.whl → 1.6.0.dev20250529194600__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.

cirq/_version.py CHANGED
@@ -28,4 +28,4 @@ if sys.version_info < (3, 11, 0): # pragma: no cover
28
28
  'of cirq (e.g. "python -m pip install cirq==1.5.0")'
29
29
  )
30
30
 
31
- __version__ = "1.6.0.dev20250529190123"
31
+ __version__ = "1.6.0.dev20250529194600"
cirq/_version_test.py CHANGED
@@ -3,4 +3,4 @@ import cirq
3
3
 
4
4
 
5
5
  def test_version() -> None:
6
- assert cirq.__version__ == "1.6.0.dev20250529190123"
6
+ assert cirq.__version__ == "1.6.0.dev20250529194600"
@@ -239,14 +239,14 @@ def test_sum_of_products_repr(data):
239
239
  def test_sum_of_products_validate():
240
240
  control_val = cirq.SumOfProducts(((1, 2), (0, 1)))
241
241
 
242
- _ = control_val.validate([2, 3])
242
+ control_val.validate([2, 3])
243
243
 
244
244
  with pytest.raises(ValueError):
245
- _ = control_val.validate([2, 2])
245
+ control_val.validate([2, 2])
246
246
 
247
247
  # number of qubits != number of control values.
248
248
  with pytest.raises(ValueError):
249
- _ = control_val.validate([2])
249
+ control_val.validate([2])
250
250
 
251
251
 
252
252
  @pytest.mark.parametrize('data', [((1,),), ((0, 1),), ((0, 0), (0, 1), (1, 0))])
@@ -116,6 +116,7 @@ def test_relative_index_consistency() -> None:
116
116
 
117
117
 
118
118
  def test_gt() -> None:
119
+ # pylint: disable=unnecessary-negation
119
120
  assert not cirq.X > cirq.X
120
121
  assert not cirq.X > cirq.Y
121
122
  assert cirq.X > cirq.Z
@@ -133,6 +134,7 @@ def test_gt_other_type() -> None:
133
134
 
134
135
 
135
136
  def test_lt() -> None:
137
+ # pylint: disable=unnecessary-negation
136
138
  assert not cirq.X < cirq.X
137
139
  assert cirq.X < cirq.Y
138
140
  assert not cirq.X < cirq.Z
@@ -79,6 +79,7 @@ def test_wrapped_qid():
79
79
  'dimension': 3,
80
80
  }
81
81
 
82
+ # pylint: disable=unnecessary-negation
82
83
  assert not ValidQubit('zz') == 4
83
84
  assert ValidQubit('zz') != 4
84
85
  assert ValidQubit('zz') > ValidQubit('aa')
@@ -124,6 +124,7 @@ def test_gate_error_handling() -> None:
124
124
 
125
125
 
126
126
  def test_equality_of_gates() -> None:
127
+ # pylint: disable=unnecessary-negation
127
128
  state = np.array([1, 0, 0, 0], dtype=np.complex64)
128
129
  gate_1 = cirq.StatePreparationChannel(state)
129
130
  gate_2 = cirq.StatePreparationChannel(state)
@@ -194,7 +194,7 @@ class CircuitDiagramInfoArgs:
194
194
  known_qubit_count: int | None,
195
195
  use_unicode_characters: bool,
196
196
  precision: int | None,
197
- label_map: dict[cirq.LabelEntity, int] | None,
197
+ label_map: dict[LabelEntity, int] | None,
198
198
  include_tags: bool = True,
199
199
  transpose: bool = False,
200
200
  ) -> None:
cirq/protocols/qasm.py CHANGED
@@ -64,7 +64,7 @@ class QasmArgs(string.Formatter):
64
64
  def _format_number(self, value) -> str:
65
65
  """OpenQASM 2.0 does not support '1e-5' and wants '1.0e-5'"""
66
66
  s = f'{value}'
67
- if 'e' in s and not '.' in s:
67
+ if 'e' in s and '.' not in s:
68
68
  return s.replace('e', '.0e')
69
69
  return s
70
70
 
@@ -570,7 +570,7 @@ def test_valid_apply_measurement():
570
570
  q0 = cirq.LineQubit(0)
571
571
  state = cirq.CliffordState(qubit_map={q0: 0}, initial_state=1)
572
572
  measurements = {}
573
- _ = state.apply_measurement(
573
+ state.apply_measurement(
574
574
  cirq.measure(q0), measurements, np.random.RandomState(), collapse_state_vector=False
575
575
  )
576
576
  assert measurements == {'q(0)': [1]}
@@ -17,7 +17,7 @@
17
17
  from __future__ import annotations
18
18
 
19
19
  import abc
20
- from typing import Any, Generic, Sequence
20
+ from typing import Any, Generic, Iterator, Sequence
21
21
  from unittest import mock
22
22
 
23
23
  import duet
@@ -73,6 +73,11 @@ class SimulatesIntermediateStateImpl(
73
73
  ):
74
74
  """A SimulatesIntermediateState that uses the default SimulationTrialResult type."""
75
75
 
76
+ def _base_iterator(
77
+ self, circuit: cirq.AbstractCircuit, qubits: tuple[cirq.Qid, ...], initial_state: Any
78
+ ) -> Iterator[TStepResult]:
79
+ raise NotImplementedError
80
+
76
81
  def _create_simulator_trial_result(
77
82
  self,
78
83
  params: study.ParamResolver,
@@ -231,7 +231,7 @@ class TRANSFORMER(Protocol):
231
231
  >>> def convert_to_cz(
232
232
  ... circuit: cirq.AbstractCircuit,
233
233
  ... *,
234
- ... context: 'Optional[cirq.TransformerContext]' = None,
234
+ ... context: cirq.TransformerContext | None = None,
235
235
  ... atol: float = 1e-8,
236
236
  ... ) -> cirq.Circuit:
237
237
  ... ...
@@ -245,7 +245,7 @@ class TRANSFORMER(Protocol):
245
245
  ... self,
246
246
  ... circuit: cirq.AbstractCircuit,
247
247
  ... *,
248
- ... context: 'Optional[cirq.TransformerContext]' = None,
248
+ ... context: cirq.TransformerContext | None = None,
249
249
  ... ) -> cirq.AbstractCircuit:
250
250
  ... ...
251
251
  """
@@ -288,7 +288,7 @@ def transformer(cls_or_func: Any = None, *, add_deep_support: bool = False) -> A
288
288
 
289
289
  >>> @cirq.transformer
290
290
  ... def convert_to_cz(
291
- ... circuit: cirq.AbstractCircuit, *, context: 'Optional[cirq.TransformerContext]' = None
291
+ ... circuit: cirq.AbstractCircuit, *, context: cirq.TransformerContext | None = None
292
292
  ... ) -> cirq.Circuit:
293
293
  ... ...
294
294
 
@@ -302,7 +302,7 @@ def transformer(cls_or_func: Any = None, *, add_deep_support: bool = False) -> A
302
302
  ... self,
303
303
  ... circuit: cirq.AbstractCircuit,
304
304
  ... *,
305
- ... context: 'Optional[cirq.TransformerContext]' = None,
305
+ ... context: cirq.TransformerContext | None = None,
306
306
  ... ) -> cirq.Circuit:
307
307
  ... ...
308
308
 
@@ -313,7 +313,7 @@ def transformer(cls_or_func: Any = None, *, add_deep_support: bool = False) -> A
313
313
  ... def convert_to_sqrt_iswap(
314
314
  ... circuit: cirq.AbstractCircuit,
315
315
  ... *,
316
- ... context: 'Optional[cirq.TransformerContext]' = None,
316
+ ... context: cirq.TransformerContext | None = None,
317
317
  ... atol: float = 1e-8,
318
318
  ... sqrt_iswap_gate: cirq.ISwapPowGate = cirq.SQRT_ISWAP_INV,
319
319
  ... cleanup_operations: bool = True,
cirq/value/abc_alt.py CHANGED
@@ -82,8 +82,8 @@ class ABCMetaImplementAnyOneOf(abc.ABCMeta):
82
82
  `@alternative(...)` may be used.
83
83
  """
84
84
 
85
- def __new__(mcls, name, bases, namespace, **kwargs):
86
- cls = super().__new__(mcls, name, bases, namespace, **kwargs)
85
+ def __new__(mcs, name, bases, namespace, **kwargs):
86
+ cls = super().__new__(mcs, name, bases, namespace, **kwargs)
87
87
  implemented_by = {}
88
88
 
89
89
  def has_some_implementation(name: str) -> bool:
@@ -29,7 +29,7 @@ def test_empty_init():
29
29
 
30
30
  sym = sympy.Symbol('sym')
31
31
  expr = sym * -(2 + 3j)
32
- symval = expr.subs({'sym': 5})
32
+ symval = expr.subs({'sym': 5}) # pylint: disable=assignment-from-no-return
33
33
  symvalresolved = -10 - 15j
34
34
 
35
35
 
@@ -433,6 +433,7 @@ def test_bool(terms, bool_value):
433
433
  ),
434
434
  )
435
435
  def test_equal(terms_1, terms_2):
436
+ # pylint: disable=unnecessary-negation
436
437
  linear_dict_1 = cirq.LinearDict(terms_1)
437
438
  linear_dict_2 = cirq.LinearDict(terms_2)
438
439
  assert linear_dict_1 == linear_dict_2
@@ -452,6 +453,7 @@ def test_equal(terms_1, terms_2):
452
453
  ),
453
454
  )
454
455
  def test_unequal(terms_1, terms_2):
456
+ # pylint: disable=unnecessary-negation
455
457
  linear_dict_1 = cirq.LinearDict(terms_1)
456
458
  linear_dict_2 = cirq.LinearDict(terms_2)
457
459
  assert linear_dict_1 != linear_dict_2
@@ -103,6 +103,7 @@ def test_with_measurement_key_mapping():
103
103
 
104
104
 
105
105
  def test_compare():
106
+ # pylint: disable=unnecessary-negation
106
107
  assert cirq.MeasurementKey('a') < cirq.MeasurementKey('b')
107
108
  assert cirq.MeasurementKey('a') <= cirq.MeasurementKey('b')
108
109
  assert cirq.MeasurementKey('a') <= cirq.MeasurementKey('a')
@@ -77,6 +77,7 @@ def test_cmp() -> None:
77
77
  assert (i >= j) == (a >= b)
78
78
  assert (i > j) == (a > b)
79
79
 
80
+ # pylint: disable=unnecessary-negation
80
81
  assert not (Timestamp() == 0)
81
82
  assert Timestamp() != 0
82
83
  assert not (Timestamp() == Duration())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250529190123
3
+ Version: 1.6.0.dev20250529194600
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=ZSmenkbqEfRJpGsvutmV8vgIlfZCWj8GAVgi3t5YRso,34635
4
4
  cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
5
5
  cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
6
6
  cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
- cirq/_version.py,sha256=fNHxcyd8CG5oEq8x4pKJbXSIQrrec6qQx_Jrsb-JX_Y,1206
8
- cirq/_version_test.py,sha256=X0hy92e8MOt0V9Iw-PjI6Rzu-BXkoqzc8pD8tV7px2E,155
7
+ cirq/_version.py,sha256=L1WAh-FUmPR9ObcD3XcJ8rstjzoH3CGj_dQ3dCDsbow,1206
8
+ cirq/_version_test.py,sha256=1QucgmAgrsbIpZqaQZI_dpGGFdPo4wdHaJMIbf7m--k,155
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
10
  cirq/json_resolver_cache.py,sha256=S-zUVI4D_XnAxyR6z7WHDImCVmB_awJp6EStD1-CNPU,13621
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -286,7 +286,7 @@ cirq/ops/common_gate_families_test.py,sha256=uePsNHQJG7zr28P5KYBBiRQHtl5nYl3tYPV
286
286
  cirq/ops/common_gates.py,sha256=uNDMUj3mru-WsfLPJrxtiXfKfsZ5y8y3Ngha0AsZaXs,56206
287
287
  cirq/ops/common_gates_test.py,sha256=Yan_k_H8xBmBWAWpKdB-gZIbhlA6vo0EpTjCKMJgt1Q,47367
288
288
  cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
289
- cirq/ops/control_values_test.py,sha256=JYaFLJSIqZSaQ94y0kyWRRVzcQ9mgc6-s1ws2q4EiAg,12943
289
+ cirq/ops/control_values_test.py,sha256=680eWVe4PpecDQs5DcS0Qa_TbAUb0NSyNkskkZqKVbk,12931
290
290
  cirq/ops/controlled_gate.py,sha256=WaimPh4J5tNGf65t6LLylx8l_RBCnqgQhz8DmUPCN5I,15077
291
291
  cirq/ops/controlled_gate_test.py,sha256=8clPcyiE0hCSIqWYpqm6Kw4R_oORf-G0hVetrJqavOc,27847
292
292
  cirq/ops/controlled_operation.py,sha256=l0pjUfru39HBuAbBkRCqJmrJDxah0JOFxXXILcUt0v8,13978
@@ -334,7 +334,7 @@ cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJ
334
334
  cirq/ops/parity_gates.py,sha256=hcF2jtrX-ay46UyiXpH9DT-5ihWhGkhN6fH5454FmKA,14289
335
335
  cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
336
336
  cirq/ops/pauli_gates.py,sha256=06NzsMKEjBPFUOK6uAKBF5M9vfLOS1owaF7RV_R2Cek,6769
337
- cirq/ops/pauli_gates_test.py,sha256=fJiB-rqVTu7t9Vxu3QdnvEMJYDgmz5I9xyoFdIhNIco,7949
337
+ cirq/ops/pauli_gates_test.py,sha256=yotABJBrDgn83VeVOFIRarqU3FKvAWpZ90rqmgEpyPQ,8035
338
338
  cirq/ops/pauli_interaction_gate.py,sha256=1drxD57PLCmp7dI9p5oDX2HPzsqwh0rrqHltUjtbWZU,5539
339
339
  cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
340
340
  cirq/ops/pauli_measurement_gate.py,sha256=OzbQeMzr9cHQsai8K-usg3Il74o8gdXZLksLuYr8RcU,7113
@@ -367,9 +367,9 @@ cirq/ops/qubit_order_test.py,sha256=e8gBGSCHyKu9nJHPwEPVO060uDpJCpO0ok5n6toR0PU,
367
367
  cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
368
368
  cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
369
369
  cirq/ops/raw_types.py,sha256=IAMUkEn0lFrvlr0Ay_B-C0aZN2_azuUGk6HLzkLYl5E,43579
370
- cirq/ops/raw_types_test.py,sha256=YyyR1UDyW4Vail8Zsvz-nCLlqRsnjCnuzQEBn2oEZyM,34751
370
+ cirq/ops/raw_types_test.py,sha256=nEsOveDtHkIoZorENjSbc7q8VyyJXIpR6WLPepPJaaY,34794
371
371
  cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
372
- cirq/ops/state_preparation_channel_test.py,sha256=Seis5RvdCCSgMlED9JYKZIfAElJdtoUHSPgoYTiMEnU,6023
372
+ cirq/ops/state_preparation_channel_test.py,sha256=k26honDLgGWu4eQG_xaZSmT36mUKLGDbEARVX7958Cc,6066
373
373
  cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
374
374
  cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
375
375
  cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
@@ -393,7 +393,7 @@ cirq/protocols/apply_unitary_protocol.py,sha256=bvqGe_Yt_pnJiVRlj9Kq0_sf557BrA1i
393
393
  cirq/protocols/apply_unitary_protocol_test.py,sha256=po1z7a-r4kbfLg7_7XKgFMrsFIzQCFgceCwn-lyBEOA,26172
394
394
  cirq/protocols/approximate_equality_protocol.py,sha256=DZ4eNCSwl_MI1LIo6tosFFqw0Gl9snM51C2vR5X1mdA,6293
395
395
  cirq/protocols/approximate_equality_protocol_test.py,sha256=qVw2TzKRTZC7fDg6DK_fVEvJzJGmlzBi6JidlJrR_Fc,9212
396
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=k51JomkuqoW530Gzj3zNXzP1Sc6aEVKMH4KdZJ3Ln8E,15901
396
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=J5BYgK29w-8ASryAEQrA6gRmiQEM9VfctJYTPvOzpmM,15896
397
397
  cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=sjXD0_EDNhKpDUBC1f-0vu8S4jyFz0Qtb2xRAEozXZg,10774
398
398
  cirq/protocols/commutes_protocol.py,sha256=6cJNba3aEsCh_XHIeNTHb0LRzws6ZbxOrKL_rieqU6k,7397
399
399
  cirq/protocols/commutes_protocol_test.py,sha256=9YhBFYAwc-XpU7HrQp-GarKwmwmbgyadUYqlkiG10A8,5885
@@ -426,7 +426,7 @@ cirq/protocols/phase_protocol.py,sha256=e_xsYDgs4K5poWcTBipziiz3Asuc7tGiVSBgD__M
426
426
  cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
427
427
  cirq/protocols/pow_protocol.py,sha256=OVVkoIpbxGAx2Ima8OlQUSrKqWNouEyUjQpubiYRJIU,3262
428
428
  cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
429
- cirq/protocols/qasm.py,sha256=3hE-z8TzXH1-EV7lV9_Ti8sGR6Qpu_93bSwbP0i8II4,7356
429
+ cirq/protocols/qasm.py,sha256=uTGHzfwCGBOBzLIV2Gae8kQLbMuSYIj3F8eXlI2nEj8,7356
430
430
  cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
431
431
  cirq/protocols/qid_shape_protocol.py,sha256=YrJpUDviSCbgH7n0yYYxaV6hh5nKTqWjAXJ2HenLzmA,7682
432
432
  cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
@@ -938,7 +938,7 @@ cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUy
938
938
  cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
939
939
  cirq/sim/simulator_base.py,sha256=F3qx41bjiixBnz-ML37frDXMLtw_SB8sTFCs6DBp708,18056
940
940
  cirq/sim/simulator_base_test.py,sha256=agR_nrIS7hqY_Z_GRw_kXfYLW76LjJ6N2nW4SpM_lf4,14951
941
- cirq/sim/simulator_test.py,sha256=oFs-QGRQ5gfDDlJnVDPdHpV9BEz8qPWy69QEAVQ4L6Q,18604
941
+ cirq/sim/simulator_test.py,sha256=bPcjADGo1AzA5m_zvaap38NJ6n-IGKBRSAVgFmu8-ek,18799
942
942
  cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
943
943
  cirq/sim/sparse_simulator_test.py,sha256=s-b1jSn1Eztt9e-f3SfGTOhhfKUlMC0LZSiUt1glmvM,53806
944
944
  cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
@@ -949,7 +949,7 @@ cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFP
949
949
  cirq/sim/state_vector_test.py,sha256=ZxJ3WjEdfI0guBlQs0JfhK05qAKQefvtpfuLjM3vR-M,16607
950
950
  cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
951
951
  cirq/sim/clifford/clifford_simulator.py,sha256=zld4rZYuq8_m7C_m9n6WPhtxLrGKVMHT3vQI942a85Y,9828
952
- cirq/sim/clifford/clifford_simulator_test.py,sha256=szpXWjuwgAN6O4DJ13MeF-Df3C2yZxqqjr32ve5eUpU,21418
952
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=HEfF_YMt76HSWZJuWPyIAjU3zf9ULmZg67BVmr3QINM,21414
953
953
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=0T0ckoRzm-pdQuu9gwFlJe2wOqzf772QDHY7yLLoY9U,2173
954
954
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
955
955
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=c0AiqB_CMW9DzAJWRRe86-LJAPIaRQai7JOm7Gco6Pw,3030
@@ -1089,7 +1089,7 @@ cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdr
1089
1089
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
1090
1090
  cirq/transformers/tag_transformers.py,sha256=s0146ylk0Kxh8NULQhRy7PAzCSRNYVPyEnuMYUxWxWw,3504
1091
1091
  cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zKDCZ_Gwtnykkt4,3439
1092
- cirq/transformers/transformer_api.py,sha256=A9ZxTre3dGVhv9x0wxRG0xqCDRNG5nB3nzBce68hZZ8,16851
1092
+ cirq/transformers/transformer_api.py,sha256=Jv1bcAjBlJz36Pu-6Ye8kIQ_gVjEkpjMoVvLWjcrenk,16826
1093
1093
  cirq/transformers/transformer_api_test.py,sha256=vz_zTDPJIfjfqORGKCxeAs3U1F3X2dFNbe50o79uY-4,13273
1094
1094
  cirq/transformers/transformer_primitives.py,sha256=sNEWuWpCwtKVphdzQdgOKg9aLUGkNO7389Pc9OY4lOg,36522
1095
1095
  cirq/transformers/transformer_primitives_test.py,sha256=qcd4Tywr4BhEpMcT12vZtTJjIq0R3PJm2Knit1hNk8k,41779
@@ -1161,7 +1161,7 @@ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=xdcvqpaHyU2Z_-yqIwEG
1161
1161
  cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=ToMXP1uCSb1PulzOWEyujXD-HEHdHlviLoDETiTV2K8,6273
1162
1162
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=lH7xYm_qkgi_MegqvvxNMQvWnAReUskCXaKpCsIQppY,14580
1163
1163
  cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1164
- cirq/value/abc_alt.py,sha256=LEK50VlLDeA7OG3n00c4Gj9KSPAjdFwpFHVs7-xQobY,6028
1164
+ cirq/value/abc_alt.py,sha256=ZNHskvHpu3KOhMpIo0C5MBEbEpWFQ2WPiNdstppwZ7E,6026
1165
1165
  cirq/value/abc_alt_test.py,sha256=3ryHzM0B2uxFw3ZP_BIj0FWg4gXKNPLfeQOJMPVL1FQ,9033
1166
1166
  cirq/value/angle.py,sha256=NdYVT5Fwe9nuEHk_5WEf-K-c1SLgJYKvxHdrOumjykA,3360
1167
1167
  cirq/value/angle_test.py,sha256=jKLd1hkY-Tb22krD-WkJjfqFy9EJIIZCAL57__FgW_c,3608
@@ -1174,9 +1174,9 @@ cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,384
1174
1174
  cirq/value/duration.py,sha256=IeksE1RXxY7Uik0tU-gPldV6PJD0UQnL_iFDiQqTBi0,10383
1175
1175
  cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
1176
1176
  cirq/value/linear_dict.py,sha256=X3nSifOq49ryItORI56sRwcYND5uojAI3ni5zRuP98U,12664
1177
- cirq/value/linear_dict_test.py,sha256=8lPAKGxdhm6fAknRw5pacjI5EPXggqzEYpghEOp5As4,19936
1177
+ cirq/value/linear_dict_test.py,sha256=l07YeEb-i9TU4smXcVzQAGVkhPsN8Q-kFjcmQzPQ4vE,20067
1178
1178
  cirq/value/measurement_key.py,sha256=tgKhfa6UUPMP3azlF_yuARqg31T-lAAMhoTK6OtUEeQ,5175
1179
- cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
1179
+ cirq/value/measurement_key_test.py,sha256=8p7dm5zYKkvykT1F-IaEOMJDTGeqZCfUsWuvqKDLAxc,4545
1180
1180
  cirq/value/periodic_value.py,sha256=QAIEt2Ls9ZTumQg913anBjehBidrrk6ULkQNSk4Qu-s,3936
1181
1181
  cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLlOYUk,4572
1182
1182
  cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
@@ -1186,7 +1186,7 @@ cirq/value/product_state_test.py,sha256=PqIONpf7Eo2tbk-_BF_Eb_P47ui8nUO0dfz9CN-2
1186
1186
  cirq/value/random_state.py,sha256=Kv3dcVif6ltJSI0RT9kSI1XeofW16jdtmo5T3pD4m9w,2099
1187
1187
  cirq/value/random_state_test.py,sha256=AfzX82WsyyuLYnoakNOTj2PPL1fYRH5ZaH84uO-6Cvg,1394
1188
1188
  cirq/value/timestamp.py,sha256=KhQhHY9cSryyUo9QCA5li8OCvUKWuy64rphhUVQK6eE,3715
1189
- cirq/value/timestamp_test.py,sha256=2MRVNglCMjqxP0sRVxQO2a72Q6UrgyRmTc6RxLploiU,4182
1189
+ cirq/value/timestamp_test.py,sha256=iMc7cREwhDPu7QDkP9bsWxDiGPtXJ2n_JpNpoUgsXmM,4225
1190
1190
  cirq/value/type_alias.py,sha256=64tVzxOqzwtKTwuqXan-PeTyjy7i6J928FCg5NtMcw4,1121
1191
1191
  cirq/value/value_equality_attr.py,sha256=8UfXZ-1y8ocBkysY9_ma3vN06aOz1iBN6pEQptxT6Xk,10550
1192
1192
  cirq/value/value_equality_attr_test.py,sha256=ZWsjAlJd9M_-HONqTXcdjpIaFCilLcelyodZl1fIu2Y,6557
@@ -1220,8 +1220,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
1220
1220
  cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1221
1221
  cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
1222
1222
  cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1223
- cirq_core-1.6.0.dev20250529190123.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250529190123.dist-info/METADATA,sha256=jRLpbJ1uUvMKCaVete9oUZhe5M26oRS4n9Xjv_XPfFE,4857
1225
- cirq_core-1.6.0.dev20250529190123.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250529190123.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250529190123.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250529194600.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250529194600.dist-info/METADATA,sha256=zt9xx_3udCmVmNO_3YjIkElewGEnPvhhgqsDmJhwYAw,4857
1225
+ cirq_core-1.6.0.dev20250529194600.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250529194600.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250529194600.dist-info/RECORD,,