cirq-core 1.6.0.dev20250529023750__py3-none-any.whl → 1.6.0.dev20250529190313__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/ops/control_values_test.py +3 -3
- cirq/ops/pauli_gates_test.py +2 -0
- cirq/ops/raw_types_test.py +1 -0
- cirq/ops/state_preparation_channel_test.py +1 -0
- cirq/protocols/qasm.py +1 -1
- cirq/sim/clifford/clifford_simulator_test.py +1 -1
- cirq/sim/simulator_test.py +6 -1
- cirq/value/abc_alt.py +2 -2
- cirq/value/linear_dict_test.py +3 -1
- cirq/value/measurement_key_test.py +1 -0
- cirq/value/timestamp_test.py +1 -0
- {cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/RECORD +18 -18
- {cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
cirq/ops/control_values_test.py
CHANGED
|
@@ -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
|
-
|
|
242
|
+
control_val.validate([2, 3])
|
|
243
243
|
|
|
244
244
|
with pytest.raises(ValueError):
|
|
245
|
-
|
|
245
|
+
control_val.validate([2, 2])
|
|
246
246
|
|
|
247
247
|
# number of qubits != number of control values.
|
|
248
248
|
with pytest.raises(ValueError):
|
|
249
|
-
|
|
249
|
+
control_val.validate([2])
|
|
250
250
|
|
|
251
251
|
|
|
252
252
|
@pytest.mark.parametrize('data', [((1,),), ((0, 1),), ((0, 0), (0, 1), (1, 0))])
|
cirq/ops/pauli_gates_test.py
CHANGED
|
@@ -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
|
cirq/ops/raw_types_test.py
CHANGED
|
@@ -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)
|
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
|
|
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
|
-
|
|
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]}
|
cirq/sim/simulator_test.py
CHANGED
|
@@ -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,
|
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__(
|
|
86
|
-
cls = super().__new__(
|
|
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:
|
cirq/value/linear_dict_test.py
CHANGED
|
@@ -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')
|
cirq/value/timestamp_test.py
CHANGED
{cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.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.dev20250529190313
|
|
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.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.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=9UdM9t9E8CCm-oONccE4xwYQ2h6Rk2FhGAecIqYSPgA,1206
|
|
8
|
+
cirq/_version_test.py,sha256=pw-iU5Ck1PDY4dFpD0ZrbX3x53k1NcYmAsv1PzBk2Ic,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=
|
|
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=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -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=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=
|
|
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=
|
|
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
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
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=
|
|
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.
|
|
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.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,,
|
{cirq_core-1.6.0.dev20250529023750.dist-info → cirq_core-1.6.0.dev20250529190313.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|