cirq-core 1.6.0.dev20250529190313__py3-none-any.whl → 1.6.0.dev20250530174306__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 (52) hide show
  1. cirq/_version.py +1 -1
  2. cirq/_version_test.py +1 -1
  3. cirq/circuits/_bucket_priority_queue_test.py +20 -20
  4. cirq/circuits/circuit_operation_test.py +58 -56
  5. cirq/circuits/frozen_circuit_test.py +6 -5
  6. cirq/circuits/qasm_output_test.py +22 -22
  7. cirq/circuits/text_diagram_drawer_test.py +17 -17
  8. cirq/contrib/custom_simulators/custom_state_simulator_test.py +11 -10
  9. cirq/contrib/qasm_import/_lexer_test.py +47 -13
  10. cirq/contrib/qasm_import/_parser_test.py +5 -5
  11. cirq/contrib/qasm_import/qasm_test.py +4 -4
  12. cirq/contrib/quirk/export_to_quirk_test.py +16 -16
  13. cirq/devices/insertion_noise_model.py +2 -2
  14. cirq/linalg/transformations_test.py +71 -43
  15. cirq/ops/boolean_hamiltonian_test.py +8 -8
  16. cirq/ops/classically_controlled_operation_test.py +51 -51
  17. cirq/ops/clifford_gate_test.py +58 -54
  18. cirq/ops/common_gate_families_test.py +9 -7
  19. cirq/ops/common_gates_test.py +81 -81
  20. cirq/ops/control_values_test.py +17 -17
  21. cirq/ops/controlled_gate_test.py +34 -32
  22. cirq/ops/diagonal_gate_test.py +11 -11
  23. cirq/ops/eigen_gate_test.py +28 -20
  24. cirq/ops/fourier_transform.py +1 -3
  25. cirq/ops/fourier_transform_test.py +13 -12
  26. cirq/ops/gate_operation_test.py +43 -42
  27. cirq/ops/global_phase_op_test.py +22 -20
  28. cirq/ops/identity_test.py +21 -20
  29. cirq/ops/kraus_channel_test.py +11 -11
  30. cirq/ops/named_qubit_test.py +13 -13
  31. cirq/ops/op_tree_test.py +19 -19
  32. cirq/ops/phased_x_gate_test.py +16 -16
  33. cirq/ops/phased_x_z_gate_test.py +14 -11
  34. cirq/ops/projector_test.py +16 -16
  35. cirq/ops/qubit_order_test.py +10 -10
  36. cirq/ops/raw_types.py +2 -2
  37. cirq/ops/raw_types_test.py +51 -49
  38. cirq/ops/wait_gate.py +1 -1
  39. cirq/ops/wait_gate_test.py +6 -6
  40. cirq/protocols/circuit_diagram_info_protocol.py +1 -1
  41. cirq/protocols/qasm.py +2 -2
  42. cirq/qis/entropy_test.py +1 -1
  43. cirq/testing/consistent_protocols.py +1 -3
  44. cirq/testing/consistent_protocols_test.py +3 -3
  45. cirq/transformers/transformer_api.py +5 -5
  46. cirq/value/digits.py +5 -0
  47. cirq/value/duration.py +1 -1
  48. {cirq_core-1.6.0.dev20250529190313.dist-info → cirq_core-1.6.0.dev20250530174306.dist-info}/METADATA +1 -1
  49. {cirq_core-1.6.0.dev20250529190313.dist-info → cirq_core-1.6.0.dev20250530174306.dist-info}/RECORD +52 -52
  50. {cirq_core-1.6.0.dev20250529190313.dist-info → cirq_core-1.6.0.dev20250530174306.dist-info}/WHEEL +0 -0
  51. {cirq_core-1.6.0.dev20250529190313.dist-info → cirq_core-1.6.0.dev20250530174306.dist-info}/licenses/LICENSE +0 -0
  52. {cirq_core-1.6.0.dev20250529190313.dist-info → cirq_core-1.6.0.dev20250530174306.dist-info}/top_level.txt +0 -0
cirq/protocols/qasm.py CHANGED
@@ -16,7 +16,7 @@ from __future__ import annotations
16
16
 
17
17
  import string
18
18
  from types import NotImplementedType
19
- from typing import Any, Iterable, TYPE_CHECKING, TypeVar
19
+ from typing import Any, Iterable, Mapping, TYPE_CHECKING, TypeVar
20
20
 
21
21
  from typing_extensions import Protocol
22
22
 
@@ -38,7 +38,7 @@ class QasmArgs(string.Formatter):
38
38
  self,
39
39
  precision: int = 10,
40
40
  version: str = '2.0',
41
- qubit_id_map: dict[cirq.Qid, str] | None = None,
41
+ qubit_id_map: Mapping[cirq.Qid, str] | None = None,
42
42
  meas_key_id_map: dict[str, str] | None = None,
43
43
  meas_key_bitcount: dict[str, int] | None = None,
44
44
  ) -> None:
cirq/qis/entropy_test.py CHANGED
@@ -38,7 +38,7 @@ def test_process_renyi_entropy_from_bitstrings(pool):
38
38
  assert entropy == 0.5145731728297583
39
39
 
40
40
 
41
- def test_process_renyi_entropy_from_bitstrings_safeguards_against_divide_by_0_error():
41
+ def test_process_renyi_entropy_from_bitstrings_safeguards_against_divide_by_0_error() -> None:
42
42
  bitstrings = np.array([[[0, 1, 1, 0]], [[0, 1, 1, 0]], [[0, 0, 1, 1]]])
43
43
 
44
44
  entropy = process_renyi_entropy_from_bitstrings(bitstrings)
@@ -176,9 +176,7 @@ def _assert_meets_standards_helper(
176
176
  assert_controlled_unitary_consistent(val)
177
177
 
178
178
 
179
- def assert_commutes_magic_method_consistent_with_unitaries(
180
- *vals: Sequence[Any], atol: float = 1e-8
181
- ) -> None:
179
+ def assert_commutes_magic_method_consistent_with_unitaries(*vals: Any, atol: float = 1e-8) -> None:
182
180
  if any(isinstance(val, ops.Operation) for val in vals):
183
181
  raise TypeError('`_commutes_` need not be consistent with unitaries for `Operation`.')
184
182
  unitaries = [protocols.unitary(val, None) for val in vals]
@@ -201,7 +201,7 @@ class BadEigenGate(GoodEigenGate):
201
201
  )
202
202
 
203
203
 
204
- def test_assert_implements_consistent_protocols():
204
+ def test_assert_implements_consistent_protocols() -> None:
205
205
  cirq.testing.assert_implements_consistent_protocols(
206
206
  GoodGate(phase_exponent=0.0), global_vals={'GoodGate': GoodGate}
207
207
  )
@@ -249,7 +249,7 @@ def test_assert_implements_consistent_protocols():
249
249
  cirq.testing.assert_implements_consistent_protocols(controlled_gate_op_test.BadGate())
250
250
 
251
251
 
252
- def test_assert_eigengate_implements_consistent_protocols():
252
+ def test_assert_eigengate_implements_consistent_protocols() -> None:
253
253
  cirq.testing.assert_eigengate_implements_consistent_protocols(
254
254
  GoodEigenGate,
255
255
  global_vals={'GoodEigenGate': GoodEigenGate},
@@ -264,7 +264,7 @@ def test_assert_eigengate_implements_consistent_protocols():
264
264
  )
265
265
 
266
266
 
267
- def test_assert_commutes_magic_method_consistent_with_unitaries():
267
+ def test_assert_commutes_magic_method_consistent_with_unitaries() -> None:
268
268
  gate_op = cirq.CNOT(*cirq.LineQubit.range(2))
269
269
  with pytest.raises(TypeError):
270
270
  cirq.testing.assert_commutes_magic_method_consistent_with_unitaries(gate_op)
@@ -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/digits.py CHANGED
@@ -126,6 +126,11 @@ def big_endian_int_to_digits(val: int, *, digit_count: int, base: int) -> list[i
126
126
  pass
127
127
 
128
128
 
129
+ @overload
130
+ def big_endian_int_to_digits(val: int, *, digit_count: int, base: Iterable[int]) -> list[int]:
131
+ pass
132
+
133
+
129
134
  @overload
130
135
  def big_endian_int_to_digits(val: int, *, base: Iterable[int]) -> list[int]:
131
136
  pass
cirq/value/duration.py CHANGED
@@ -54,7 +54,7 @@ class Duration:
54
54
 
55
55
  def __init__(
56
56
  self,
57
- value: DURATION_LIKE = None,
57
+ value: DURATION_LIKE | int = None,
58
58
  *, # Force keyword args.
59
59
  picos: _NUMERIC_INPUT_TYPE = 0,
60
60
  nanos: _NUMERIC_INPUT_TYPE = 0,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250529190313
3
+ Version: 1.6.0.dev20250530174306
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=9UdM9t9E8CCm-oONccE4xwYQ2h6Rk2FhGAecIqYSPgA,1206
8
- cirq/_version_test.py,sha256=pw-iU5Ck1PDY4dFpD0ZrbX3x53k1NcYmAsv1PzBk2Ic,155
7
+ cirq/_version.py,sha256=BT0lzLORd5vsYRQHMFPr1iy4dmlU4xvTDHOVYgWpK9w,1206
8
+ cirq/_version_test.py,sha256=oB56Weo3L-3OXqsRvBgzJ3c02mL4MqWIBAshsJDQFNs,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
@@ -15,13 +15,13 @@ cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU
15
15
  cirq/circuits/_box_drawing_character_data.py,sha256=hExbMJHm9LGORhlhNiUvPiHquv4pJqIgJqJCivW4dbM,12109
16
16
  cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
17
17
  cirq/circuits/_bucket_priority_queue.py,sha256=U564r2mou4aZsOlpVYiZCgirqS6mVznG3ESyawBt4gE,6749
18
- cirq/circuits/_bucket_priority_queue_test.py,sha256=7XXeGMhz-dyfo9xeqbBKSxJ0hHVuakGMR45Zp7she88,5324
18
+ cirq/circuits/_bucket_priority_queue_test.py,sha256=MOby-UKYZQMe2n4KhqkfDCPrz-T_3eBbWDEa0_nadJQ,5627
19
19
  cirq/circuits/circuit.py,sha256=om-XK7MQzTXssrKf8KOA4OPCZwOUQ4FWfVmFlV-6ctk,118908
20
20
  cirq/circuits/circuit_operation.py,sha256=5LN0vXQT8hoUP8Vhkozm3d6hPqw0BUX5WBhKMr5qOng,36252
21
- cirq/circuits/circuit_operation_test.py,sha256=hSwtOjX_GVnYtFXBVPVu_LjY12CPLWx8r8Y6Vz42v-I,48868
21
+ cirq/circuits/circuit_operation_test.py,sha256=vMSqpBQQSDlfsWtdERNueDnGhVE7_F3uhmgsl_2qfLo,49397
22
22
  cirq/circuits/circuit_test.py,sha256=8lOt-U48Taxa2DzGG0XP0uXgzA0mAJAKaVpkXDzmJ98,162773
23
23
  cirq/circuits/frozen_circuit.py,sha256=CwlREZbCCrHJ6zTLLEbER_M7P4IsBEADhM5dbDBTvvM,9152
24
- cirq/circuits/frozen_circuit_test.py,sha256=WBG2tc3VHYNxZV-FpL-opgsgUOZCCFqyrClt4fMDMrg,4169
24
+ cirq/circuits/frozen_circuit_test.py,sha256=b-SQdV7KFLt3KCo50eBkGs8q29B2H5PmMevVGk8UCN4,4294
25
25
  cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
26
26
  cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
27
27
  cirq/circuits/moment.py,sha256=5yQOqFI-_ow7O0PX0ToulzpsJq8J8AUVCIJg-Oeqaqc,25826
@@ -29,9 +29,9 @@ cirq/circuits/moment_test.py,sha256=kfPObC2xXlulWV7exXt6a6wraXrdZJiAV4xTGwXFc5Y,
29
29
  cirq/circuits/optimization_pass.py,sha256=r_elKwotCt8QDz_7meQQxHW4b8mCN7zFZOlmXTsDE54,6473
30
30
  cirq/circuits/optimization_pass_test.py,sha256=FvCCOZrqVQLYrf_BUAZ6M-sm6dMv00_xsvpN25Op1BA,5914
31
31
  cirq/circuits/qasm_output.py,sha256=qclnyiEnRzkcr0JqzzABuiHD3INkiALmhl1jCW0AYNk,13079
32
- cirq/circuits/qasm_output_test.py,sha256=YC0LxqLycNgw8Ozd3Q9_DAH-p7TsMLPYiH2pnKLEkks,13877
32
+ cirq/circuits/qasm_output_test.py,sha256=e2TsMMVZLzyCYh6U3umPtusxmeiLJDunmsgFRa5p7E0,14048
33
33
  cirq/circuits/text_diagram_drawer.py,sha256=qqjzbswwRfXCRfJXyTIdCrj_zkUgDW5A-ctEXDRVRhk,16451
34
- cirq/circuits/text_diagram_drawer_test.py,sha256=iaK7AzVlS4iMAg53YlqaYiJTaMqfhA-noLUBapG7yg4,10787
34
+ cirq/circuits/text_diagram_drawer_test.py,sha256=YBe8zT7BDENoR-gA3l77mtRj6vxY3kVVZ4FqBO_WwsY,11031
35
35
  cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
36
  cirq/contrib/json.py,sha256=ITiaznB1mndxtasVO5QTeu-31h3vgGTBCGFzousOxHE,788
37
37
  cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
@@ -73,7 +73,7 @@ cirq/contrib/circuitdag/circuit_dag.py,sha256=4ijaMjfzyBHY3rUrGnsM4K0hb30_qJywnt
73
73
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=0qn0Bwy48QI_TQzlxF0lmvz22llrSpRbj5F2RQzGmnc,8258
74
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=dSTlTiFwXicJxQA4yHREGF7aJnkafNVrf74w9hkMsYQ,3210
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=8IB03E_v3sWPDmnymWgJ0VCUHYl-iO0B6-VKaluLLKw,7793
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=O_fQ267wPDZQVo8cBSwtLVTgqcYsfygdC2rYW7LwKXg,7948
77
77
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
78
  cirq/contrib/graph_device/graph_device.py,sha256=DLqi-88Zj4P4QyYvi_uAiivDEuDcq98Qp8CVEtff3rQ,7919
79
79
  cirq/contrib/graph_device/graph_device_test.py,sha256=BM4BsDDofCyOtChTQFX7SBLgGv4lgA0Yl6BKmTqzBwI,7239
@@ -106,12 +106,12 @@ cirq/contrib/paulistring/separate.py,sha256=h3UHkJp2dAQn9wrW57Z2s6GvfnPZwRMzTHUL
106
106
  cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
107
107
  cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
108
108
  cirq/contrib/qasm_import/_lexer.py,sha256=ZCS3aEwJ5tW3FndBAhQfG65U6McCfF_z_3-hxoH6zmk,2934
109
- cirq/contrib/qasm_import/_lexer_test.py,sha256=L1Deb3FO5urHnXN-nb4FRKpaDTqITTMLBeUu3JFeWaA,6254
109
+ cirq/contrib/qasm_import/_lexer_test.py,sha256=ZSqML1jhT5EgGK3HXwcqZYaJcNlB2gPLXOQiSG8OyfE,7333
110
110
  cirq/contrib/qasm_import/_parser.py,sha256=Kl6xK6FqHnIyFQToIn4-0ClHgXEvUXJ1ISuDKw-cjI0,27138
111
- cirq/contrib/qasm_import/_parser_test.py,sha256=D1AhyV9r4XOXjfllCFlnSC8LkEIvqXvnkUOraYHYG40,44355
111
+ cirq/contrib/qasm_import/_parser_test.py,sha256=z__TB9XoZ8USLhE5frDIALOTQjEe7v57SKcXQ_IknUQ,44395
112
112
  cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
113
113
  cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
114
- cirq/contrib/qasm_import/qasm_test.py,sha256=NhGf4U_xYgJ4ZQmkS-5GoLWpJRweT1R38OcgHcau328,1898
114
+ cirq/contrib/qasm_import/qasm_test.py,sha256=mwgl7dIOt50hvxTVTiy1HpVxAjyBSb59R3_Hi-5LUIU,1906
115
115
  cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
116
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=iseXGluQb8lWQ9L9mF9uJQMhInFaPWXDOBumX_fj34E,4551
@@ -133,7 +133,7 @@ cirq/contrib/quimb/state_vector.py,sha256=8CvClbDRr4rLSApbIAVYzDs3zMZ9e3a_VW7VEr
133
133
  cirq/contrib/quimb/state_vector_test.py,sha256=l1soE2DqwBkPcinSFRRsmG36ukJ5Bahrin7SfIq4W34,5837
134
134
  cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
135
135
  cirq/contrib/quirk/export_to_quirk.py,sha256=vbzG3LzqlZfRxdqVIdYoqFalBfkFHUtE762rCVTYNqs,3860
136
- cirq/contrib/quirk/export_to_quirk_test.py,sha256=HVIvNP8pSx7gmpTZ6TAf2YZGs--bPK0DVcfjX-xjHbI,12022
136
+ cirq/contrib/quirk/export_to_quirk_test.py,sha256=WaPfHVrC06yzIsJ91M0vR18D9dL0RpXuJcZ5Xz4-KQY,12149
137
137
  cirq/contrib/quirk/linearize_circuit.py,sha256=ackWBymRhMLOL9MBvPkamXLfOQG0xDKOHhP01_l1G9Y,1581
138
138
  cirq/contrib/quirk/quirk_gate.py,sha256=mldzqkKYD_KlY3gkI4ujrHn3Xlp1L2ODHKyQr6eL8Gk,7232
139
139
  cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
@@ -162,7 +162,7 @@ cirq/devices/grid_device_metadata.py,sha256=pgh2wu33i9rWOqqYgsTMtLuB2k4L8EAD6tMx
162
162
  cirq/devices/grid_device_metadata_test.py,sha256=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
163
163
  cirq/devices/grid_qubit.py,sha256=lY3YZV4w16nABywVsrq1GzEw4h3DyRMaxxZwsTFbvKA,18760
164
164
  cirq/devices/grid_qubit_test.py,sha256=aRSoRL-L-LaXCgBOzaMvVDwdP0kGN0Oc1yIYaRlNYk0,15048
165
- cirq/devices/insertion_noise_model.py,sha256=HpWosP7VmaGg4B9bA_v-vWwMifjvh7mMS489xRH868U,3601
165
+ cirq/devices/insertion_noise_model.py,sha256=6y1rpIupS9fj0zdtaYAaQXsx0dzxy5SnH9Sq3izAWQo,3613
166
166
  cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
167
167
  cirq/devices/line_qubit.py,sha256=Bwr4KM7F9o5n_ChYtkH5uSaRUqMqAQaRAsVF7yl4bkM,11773
168
168
  cirq/devices/line_qubit_test.py,sha256=ZJjt3iWXxmFqpBypDvFKQhTFb_lvVp8aokbFG5iNfDc,10323
@@ -265,7 +265,7 @@ cirq/linalg/predicates_test.py,sha256=lNtaVVbPhDFD1yXWZb2Ncz5ZsgSdkVxv-prBBXsvk0
265
265
  cirq/linalg/tolerance.py,sha256=4TZ_BjldOhPuP2CwYvMdzHCc9Lzfwi9ZkndSKObyyBg,1893
266
266
  cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
267
267
  cirq/linalg/transformations.py,sha256=YiQdLe2BNHupPxV9Gxt3VRSWKTRmqt4yObV0Wwij2Dw,32526
268
- cirq/linalg/transformations_test.py,sha256=KcBgeNwiNms30qT5nAHhtASHbD0wIQDMaPEoXZVlxag,25672
268
+ cirq/linalg/transformations_test.py,sha256=2HdnYDzNDq7djdPByQmRphKkpy6k3rK9nC8uZfDlSZs,26462
269
269
  cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
270
270
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
271
271
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
@@ -274,47 +274,47 @@ cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
274
274
  cirq/ops/arithmetic_operation.py,sha256=FO2ne5ZHIcUCJySgOC60UApfDtfVBaZqlrhM46f7-34,10051
275
275
  cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
276
276
  cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
277
- cirq/ops/boolean_hamiltonian_test.py,sha256=g99wUCiC_fap2UCkO7StpwKzR3GomESwbLXLL785VOY,8577
277
+ cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
278
278
  cirq/ops/classically_controlled_operation.py,sha256=P3VG5GT991vQTHIkcvOZR3L-Ene0neUJL4I-CJqKrgA,10260
279
- cirq/ops/classically_controlled_operation_test.py,sha256=GexXZ4aWrWL-okRRaDUlAnMXarydNCP-7fv2xZTxlqo,50245
279
+ cirq/ops/classically_controlled_operation_test.py,sha256=YA6t7cqFAG7UDIHftZ46gmMKMv-1XxLnKYUMozJjGc4,50653
280
280
  cirq/ops/clifford_gate.py,sha256=vdN41tYaijabnDtFFOz-4Lx1uOt7ycnY5d1iO-IdZX4,40156
281
- cirq/ops/clifford_gate_test.py,sha256=u1PlNWC24sCrxDq5IzKw4EUMJ2-0VCjjksJMF01Nhcw,40779
281
+ cirq/ops/clifford_gate_test.py,sha256=63NR6oLpx9hn21-0b_YpYLk32GIsd_P0k0A_4EJxxAE,41313
282
282
  cirq/ops/common_channels.py,sha256=BD8-qJDGITOSP0bJVcWGgjbI5dj2dwFkSzzWb-qgfcc,37026
283
283
  cirq/ops/common_channels_test.py,sha256=Qzw7nDrWgO1GDB7qkN2YUZi3NDswvvBJ9TEnSNakJX4,30755
284
284
  cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
285
- cirq/ops/common_gate_families_test.py,sha256=uePsNHQJG7zr28P5KYBBiRQHtl5nYl3tYPVjl5jH4mM,5312
285
+ cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
286
286
  cirq/ops/common_gates.py,sha256=uNDMUj3mru-WsfLPJrxtiXfKfsZ5y8y3Ngha0AsZaXs,56206
287
- cirq/ops/common_gates_test.py,sha256=Yan_k_H8xBmBWAWpKdB-gZIbhlA6vo0EpTjCKMJgt1Q,47367
287
+ cirq/ops/common_gates_test.py,sha256=sTkAbPvfVf9p3N1lqnwkI9gJmTwQfIXPAbyVXFTP0NM,47979
288
288
  cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
289
- cirq/ops/control_values_test.py,sha256=680eWVe4PpecDQs5DcS0Qa_TbAUb0NSyNkskkZqKVbk,12931
289
+ cirq/ops/control_values_test.py,sha256=Wyn0nwtcpnJvcPVRHmFGb3PtYxvsbpluA5UbPrG7tIo,13067
290
290
  cirq/ops/controlled_gate.py,sha256=WaimPh4J5tNGf65t6LLylx8l_RBCnqgQhz8DmUPCN5I,15077
291
- cirq/ops/controlled_gate_test.py,sha256=8clPcyiE0hCSIqWYpqm6Kw4R_oORf-G0hVetrJqavOc,27847
291
+ cirq/ops/controlled_gate_test.py,sha256=_iXDPtWdRkpTi_zgcY9J9c0gDx35pOmlW7HmT6DSzSw,28039
292
292
  cirq/ops/controlled_operation.py,sha256=l0pjUfru39HBuAbBkRCqJmrJDxah0JOFxXXILcUt0v8,13978
293
293
  cirq/ops/controlled_operation_test.py,sha256=qXpnUoeWmOQaTMZPAuuICtX9Idf-JWtdARTsTENv54g,16546
294
294
  cirq/ops/dense_pauli_string.py,sha256=1TijNu1D2HIbbnwLbT_f546R2L4OCQtm1bKjqhno1Kg,24234
295
295
  cirq/ops/dense_pauli_string_test.py,sha256=JLfTLO13Qnr9c5jZOPBTJWD4409vm7uV6vi8R7m1kOg,21517
296
296
  cirq/ops/diagonal_gate.py,sha256=HNMxcgKgfZ2ZcXGaPhcBp6yOwu_stpSN3_GtNeWnR5s,8909
297
- cirq/ops/diagonal_gate_test.py,sha256=b3j6mE5zkkKs3Qsv0YKXVS8b4qPnEC_CDR4aZY8nfLc,6235
297
+ cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
298
298
  cirq/ops/eigen_gate.py,sha256=DMDlLJLSSxYD22CTvvx8hQNQyGSzF4bBysDKMjg1DbE,17407
299
- cirq/ops/eigen_gate_test.py,sha256=6Rj4UTBO8y91-2U_MaWteC8iSypCRYaGCPVsawSLgbY,16143
300
- cirq/ops/fourier_transform.py,sha256=CE8iw_Nn64ZaQ_wMJNHChAIHF1ufbeo7r3lNq6VY2BA,7472
301
- cirq/ops/fourier_transform_test.py,sha256=F4n0zcV0cH7enbLyx6bd35cu0fJ_WDm9Z1FILO0cNE0,6262
299
+ cirq/ops/eigen_gate_test.py,sha256=gk0EPzOLY_KEJxVvp6HyDGHGg3ybcbhUtEj1OETaWCA,16444
300
+ cirq/ops/fourier_transform.py,sha256=JMledJB0tPjLlIlG9bfapJSqass94rXkAheXragQxq8,7455
301
+ cirq/ops/fourier_transform_test.py,sha256=sX5TfZd9-n1WTyZcqOQ0x6yyI8k6rasywijMo3bc1ls,6426
302
302
  cirq/ops/fsim_gate.py,sha256=xsk5xfEaUTcGeGV852KTuoE7mxlCHEXg2HZlyiszkd0,20035
303
303
  cirq/ops/fsim_gate_test.py,sha256=EBeiEhS5C99Zn60V1PbxZQdI8262KgCwFkHQBruK9Sk,25915
304
304
  cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
305
305
  cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
306
306
  cirq/ops/gate_operation.py,sha256=MF8JIYEM6bQu6ft9Eb19hSOillzu8MmaIoXSlmwbm5U,13447
307
- cirq/ops/gate_operation_test.py,sha256=s7c50LCIMEaMWxFqmLcTpLzz1vJYFdDBQi_2uGky_hg,17554
307
+ cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
308
308
  cirq/ops/gateset.py,sha256=9HFW5Sg_jPpao8SEd7XgLdc_6xgUwZfvb6f7pfVPIF8,21492
309
309
  cirq/ops/gateset_test.py,sha256=_dpKTEwXuOY-jpev9rBPEcMy4KZ7zd6GmJ5JkvZAeog,16580
310
310
  cirq/ops/global_phase_op.py,sha256=Q5GrvuNgpSafUrcYUqEibt8hFoh3ZNeYJ9cp_nJ5PR4,4804
311
- cirq/ops/global_phase_op_test.py,sha256=BBdKpfBWO_o8WalSZPGTIiH6z_XDqz-2CgMcl_lQkC4,9869
311
+ cirq/ops/global_phase_op_test.py,sha256=cJDGmWlo3qAnW65Y9uCNMxuiOSTO6I1T3cC65ylaCfk,10087
312
312
  cirq/ops/greedy_qubit_manager.py,sha256=UTd9cTRbl4GQmf6ai6zqVBn5TR3-Vg84jJu4AN-0cxc,4050
313
313
  cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
314
314
  cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
315
- cirq/ops/identity_test.py,sha256=8_uQpXvHgHHLO_gfOI4pTVwnZnqrUfinaJz5ULPXMFI,7976
315
+ cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
316
316
  cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
317
- cirq/ops/kraus_channel_test.py,sha256=8B0Ql1_93GldwknFCtu54k36a_WGQJIpSKJ65vXxS8I,4857
317
+ cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
318
318
  cirq/ops/linear_combinations.py,sha256=AQA0aFDuHXks44fFtevrc2Zl1chleSlf1A0LkmrZrW8,39883
319
319
  cirq/ops/linear_combinations_test.py,sha256=EYqrWlFFThv8dl5B_9yIckEn_z3-Nfzh7rdVzGpIVWM,67351
320
320
  cirq/ops/matrix_gates.py,sha256=w-yDz2ZmIDiSTLO6Qhp6NrJJFJOJIjrt3okK7rRcZ68,10309
@@ -326,9 +326,9 @@ cirq/ops/measurement_gate_test.py,sha256=SPVD8DTc0Kmkazp7jmUIVHfELihkK_SFu3aXSw-
326
326
  cirq/ops/mixed_unitary_channel.py,sha256=guje2Jbj2uWG8NSlwazK1r-XjxlTHA6s7ti52tWS-Nk,5246
327
327
  cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
328
328
  cirq/ops/named_qubit.py,sha256=e2GdyDfeyKNgmXiiQh8yW59t4qDIvAEzXjb_NfyhgHs,9997
329
- cirq/ops/named_qubit_test.py,sha256=MHjKXSxHCVV3rUYtsQ0_FZVV6Sh--r3zdGc0rmmdaBs,5257
329
+ cirq/ops/named_qubit_test.py,sha256=bS3sjjVo0Lm7cjoxBGkSsx5FGkUgSM1QxwBjVOHATis,5343
330
330
  cirq/ops/op_tree.py,sha256=w2jnYMi8UtV13CROphi4Gesydc5YzmuvXJZsIAGm65k,5277
331
- cirq/ops/op_tree_test.py,sha256=1WAIeVkmmEU3wRaEnM9DdGBU0_CVbYMwgunIO2LrBc4,5737
331
+ cirq/ops/op_tree_test.py,sha256=npk2P6asFc3Z-K_xQ0l9JNam4uBwWMZTGT8rDO5xUmQ,6104
332
332
  cirq/ops/parallel_gate.py,sha256=B6uwL0lPJLiv_TL62U4HGyv7FZn_CvljSUK7jKTuu-M,6257
333
333
  cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
334
334
  cirq/ops/parity_gates.py,sha256=hcF2jtrX-ay46UyiXpH9DT-5ihWhGkhN6fH5454FmKA,14289
@@ -352,22 +352,22 @@ cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96Hfd
352
352
  cirq/ops/phased_iswap_gate.py,sha256=AQIPHurGVx4ccinrT8UZc9bZT9yX53Q4PlBk4uaqrGw,8939
353
353
  cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
354
354
  cirq/ops/phased_x_gate.py,sha256=ffIRnS_84saQYuwD4wsbEL2i11RXJ7XmxxRteWOwd68,9247
355
- cirq/ops/phased_x_gate_test.py,sha256=DTWG4gmeNaIX4GLLdSQN8OfZFEDqm192szY_amc_E6w,10857
355
+ cirq/ops/phased_x_gate_test.py,sha256=lQ6UV9X52joByV_SLzNceO785uVY5wSqlba8tMpzHSA,10976
356
356
  cirq/ops/phased_x_z_gate.py,sha256=88P8w-XdrV-y5n0q3_wci_BmMCZ5BOW4c8eDPjVyrQg,11446
357
- cirq/ops/phased_x_z_gate_test.py,sha256=pp6e5PeYgg2J0EdQ6L704E5qFdBomJsPcZdnCFB70_c,10727
357
+ cirq/ops/phased_x_z_gate_test.py,sha256=ZmV0NdJJMzile88bRHYGYPXxOP785fW_Tn4tCxbphPY,10876
358
358
  cirq/ops/projector.py,sha256=TBhb0-0aJP329Yf7enPtwCMurpsV0s2wNbv4WpPJXR0,5647
359
- cirq/ops/projector_test.py,sha256=i18K2aaj5kOnnBcShB92-66TVYdhZCubPxCXoZ9fAQk,9100
359
+ cirq/ops/projector_test.py,sha256=vphfIBPkrEPXj4I6B_IPM84wOW-DsETSR9ua4lDioF4,9232
360
360
  cirq/ops/qid_util.py,sha256=pyU_me-SkhkGG4wMyPReuArUd9_3anrbCQK8PpzwCOY,2077
361
361
  cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
362
362
  cirq/ops/qubit_manager.py,sha256=5CFtTkkWE5aW4yyFnr2M70_Fw6jNUI-ltTXMVcL9oUc,3549
363
363
  cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
364
364
  cirq/ops/qubit_order.py,sha256=Ekk246AzaeW6w3fNGNhHdGOQbD_DU8KeXl7BMhX-SDM,5497
365
365
  cirq/ops/qubit_order_or_list.py,sha256=5kChRv1gUnBKB-kF6okXoXcCa5CXbJ6HoB6ETpfl3ss,1188
366
- cirq/ops/qubit_order_test.py,sha256=e8gBGSCHyKu9nJHPwEPVO060uDpJCpO0ok5n6toR0PU,4274
366
+ cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
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
- cirq/ops/raw_types.py,sha256=IAMUkEn0lFrvlr0Ay_B-C0aZN2_azuUGk6HLzkLYl5E,43579
370
- cirq/ops/raw_types_test.py,sha256=nEsOveDtHkIoZorENjSbc7q8VyyJXIpR6WLPepPJaaY,34794
369
+ cirq/ops/raw_types.py,sha256=saIxkSrcW4A_exDY_2rdGSpHB_jnI3Ffi4kQCB1JbZo,43592
370
+ cirq/ops/raw_types_test.py,sha256=CxI1KL5_cbm5BSFF8DqYATZKpt-LUkhYVvest9gkGF0,35337
371
371
  cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
372
372
  cirq/ops/state_preparation_channel_test.py,sha256=k26honDLgGWu4eQG_xaZSmT36mUKLGDbEARVX7958Cc,6066
373
373
  cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
@@ -380,8 +380,8 @@ cirq/ops/two_qubit_diagonal_gate.py,sha256=m2wnFpi0sHA9cxMa2cqwRYGQIlbyTGohMTLdV
380
380
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
381
381
  cirq/ops/uniform_superposition_gate.py,sha256=LiB_Aft5mQY5aVhe4S8DR4ugMREwXEFTVO1MCU1s0zU,4751
382
382
  cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
383
- cirq/ops/wait_gate.py,sha256=h3VjVS3UZKtieFpDwjoz09J6jv3dnAuMHk02qCAc22s,5569
384
- cirq/ops/wait_gate_test.py,sha256=cBYqPQc339lfwXgdUSl0OD0ZlfsqaPvyrmnArD7ERs8,3580
383
+ cirq/ops/wait_gate.py,sha256=CU_CdgkNZV5BjVnBKu-GEIdkyu787mqiQEV0fnjhLkc,5575
384
+ cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
385
385
  cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
386
386
  cirq/protocols/act_on_protocol.py,sha256=YE92pdK_TAoeCNiAiKjkz8XwQCGbFcjo1Wst1e6buY4,6880
387
387
  cirq/protocols/act_on_protocol_test.py,sha256=X7GNM9mGPCpWukW9_7kF88g12RdqsWhcniIw5LW1tC4,3215
@@ -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=uTGHzfwCGBOBzLIV2Gae8kQLbMuSYIj3F8eXlI2nEj8,7356
429
+ cirq/protocols/qasm.py,sha256=N4Iohs1gcv50G3TXhsI0FWRatXiy-RMwVbEbxV3pzsU,7368
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
@@ -909,7 +909,7 @@ cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,142
909
909
  cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
910
910
  cirq/qis/clifford_tableau_test.py,sha256=-DxgKr37dmpQqw8bbA3veXCTZ_-f6G_aVFUpvKZcRwY,18476
911
911
  cirq/qis/entropy.py,sha256=SWB_Q7k5io_ZB1FzpNeUZNte3QqjiRR1_8vN2nEOt-M,4242
912
- cirq/qis/entropy_test.py,sha256=PlgipJeqnHzG7rmL3g5llIHa9vA2b_X0ukyL38b3_Y4,1709
912
+ cirq/qis/entropy_test.py,sha256=DYdTUSosNo8njD8XiX7ZHtSydZf2wJun1RMKne6is5Y,1717
913
913
  cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
914
914
  cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
915
915
  cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
@@ -986,8 +986,8 @@ cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweeg
986
986
  cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
987
987
  cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
988
988
  cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
989
- cirq/testing/consistent_protocols.py,sha256=64dkyGcZ5nPia8zdT6YtOe81cnzSMKLbD7XNzvD6kpQ,7744
990
- cirq/testing/consistent_protocols_test.py,sha256=sHgsHpFozxWJ0uNbFiXMqt2n1b4-dE0pPTNn-VOHH64,9979
989
+ cirq/testing/consistent_protocols.py,sha256=T1a3F33h9uhy3KJFQsskokBrtcXglXtfjLPWF5sEkFE,7728
990
+ cirq/testing/consistent_protocols_test.py,sha256=U9lzwbnjAwQVcL8fRN5MpHSgUj4faRA3pt5Z6uEPOwQ,10003
991
991
  cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
992
992
  cirq/testing/consistent_qasm_test.py,sha256=Z1bfMsgoXwe27RDhruKqBV4eGqTHUOwkP17TshMPMNo,2902
993
993
  cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
@@ -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
@@ -1169,9 +1169,9 @@ cirq/value/classical_data.py,sha256=mPkDGZb4I0a1qSgY-T01NLzkJSgSpKpU_o_EQQEn3mc,
1169
1169
  cirq/value/classical_data_test.py,sha256=q1QMT17E-X9kcaPw1oQqx3Hwnq3hyht24HaK3z7Udpo,5332
1170
1170
  cirq/value/condition.py,sha256=sl2ol2vyVIQba3YQVXqVI_IgglFMGcDlw7vrCjo9wFk,11920
1171
1171
  cirq/value/condition_test.py,sha256=oEdim5nOYYY8UPU91H2xhb9MH8EC2WbMXTQ_DruHVO0,12949
1172
- cirq/value/digits.py,sha256=mXI6u5l9zV695YbchINpwJVNijx_2h_N87soCWMZ0Dk,6022
1172
+ cirq/value/digits.py,sha256=ozQA8KYUXsz8AL7fwSkOkXxrp_EnOVjvxnuBdW7oICQ,6138
1173
1173
  cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,3848
1174
- cirq/value/duration.py,sha256=IeksE1RXxY7Uik0tU-gPldV6PJD0UQnL_iFDiQqTBi0,10383
1174
+ cirq/value/duration.py,sha256=9zhnMe7EBicqbRp267GkPz97q1y1DcnPDXHqdEjJpts,10389
1175
1175
  cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
1176
1176
  cirq/value/linear_dict.py,sha256=X3nSifOq49ryItORI56sRwcYND5uojAI3ni5zRuP98U,12664
1177
1177
  cirq/value/linear_dict_test.py,sha256=l07YeEb-i9TU4smXcVzQAGVkhPsN8Q-kFjcmQzPQ4vE,20067
@@ -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.dev20250529190313.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250529190313.dist-info/METADATA,sha256=t6jgxBXO8D8PqkTI9tQ1VYYWGHWa5XwadIJcYCkS0WI,4857
1225
- cirq_core-1.6.0.dev20250529190313.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250529190313.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250529190313.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250530174306.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250530174306.dist-info/METADATA,sha256=5MDHfeJvOrdiLjBItET-_7xRes7WLJ3SUY9IqxfopvM,4857
1225
+ cirq_core-1.6.0.dev20250530174306.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250530174306.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250530174306.dist-info/RECORD,,