cirq-core 1.6.0.dev20250529194600__py3-none-any.whl → 1.6.0.dev20250530203656__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 +1 -1
- cirq/_version_test.py +1 -1
- cirq/circuits/_bucket_priority_queue_test.py +20 -20
- cirq/circuits/circuit_operation_test.py +58 -56
- cirq/circuits/frozen_circuit_test.py +6 -5
- cirq/circuits/qasm_output_test.py +22 -22
- cirq/circuits/text_diagram_drawer_test.py +17 -17
- cirq/contrib/custom_simulators/custom_state_simulator_test.py +11 -10
- cirq/contrib/qasm_import/_lexer_test.py +47 -13
- cirq/contrib/qasm_import/_parser_test.py +5 -5
- cirq/contrib/qasm_import/qasm_test.py +4 -4
- cirq/contrib/quirk/export_to_quirk_test.py +16 -16
- cirq/devices/insertion_noise_model.py +2 -2
- cirq/linalg/transformations_test.py +71 -43
- cirq/ops/boolean_hamiltonian_test.py +8 -8
- cirq/ops/classically_controlled_operation_test.py +51 -51
- cirq/ops/clifford_gate_test.py +58 -54
- cirq/ops/common_gate_families_test.py +9 -7
- cirq/ops/common_gates_test.py +81 -81
- cirq/ops/control_values_test.py +17 -17
- cirq/ops/controlled_gate_test.py +34 -32
- cirq/ops/diagonal_gate_test.py +11 -11
- cirq/ops/eigen_gate_test.py +28 -20
- cirq/ops/fourier_transform.py +1 -3
- cirq/ops/fourier_transform_test.py +13 -12
- cirq/ops/gate_operation_test.py +43 -42
- cirq/ops/global_phase_op_test.py +22 -20
- cirq/ops/identity_test.py +21 -20
- cirq/ops/kraus_channel_test.py +11 -11
- cirq/ops/named_qubit_test.py +13 -13
- cirq/ops/op_tree_test.py +19 -19
- cirq/ops/phased_x_gate_test.py +16 -16
- cirq/ops/phased_x_z_gate_test.py +14 -11
- cirq/ops/projector_test.py +16 -16
- cirq/ops/qubit_order_test.py +10 -10
- cirq/ops/raw_types.py +2 -2
- cirq/ops/raw_types_test.py +51 -49
- cirq/ops/wait_gate.py +1 -1
- cirq/ops/wait_gate_test.py +6 -6
- cirq/protocols/qasm.py +2 -2
- cirq/qis/entropy_test.py +1 -1
- cirq/testing/consistent_protocols.py +1 -3
- cirq/testing/consistent_protocols_test.py +3 -3
- cirq/value/digits.py +5 -0
- cirq/value/duration.py +1 -1
- {cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/RECORD +50 -50
- {cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.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:
|
|
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)
|
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
{cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.6.0.
|
|
3
|
+
Version: 1.6.0.dev20250530203656
|
|
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
|
{cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/RECORD
RENAMED
|
@@ -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=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=hztQvRenIGugHnQfIMvXGCDgrPYXHI8HFlSFpS5ohi8,1206
|
|
8
|
+
cirq/_version_test.py,sha256=DOCKp7byLMueXhFrwBDiYIeE079kbnKtNmP3LrmPihY,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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
300
|
-
cirq/ops/fourier_transform.py,sha256=
|
|
301
|
-
cirq/ops/fourier_transform_test.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
370
|
-
cirq/ops/raw_types_test.py,sha256=
|
|
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=
|
|
384
|
-
cirq/ops/wait_gate_test.py,sha256=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
990
|
-
cirq/testing/consistent_protocols_test.py,sha256=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1226
|
-
cirq_core-1.6.0.
|
|
1227
|
-
cirq_core-1.6.0.
|
|
1223
|
+
cirq_core-1.6.0.dev20250530203656.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1224
|
+
cirq_core-1.6.0.dev20250530203656.dist-info/METADATA,sha256=zRwSSzVNbAJ04gJePx-CCATKICw7S0bCGgRz8oS8ULA,4857
|
|
1225
|
+
cirq_core-1.6.0.dev20250530203656.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1226
|
+
cirq_core-1.6.0.dev20250530203656.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1227
|
+
cirq_core-1.6.0.dev20250530203656.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250529194600.dist-info → cirq_core-1.6.0.dev20250530203656.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|