cirq-core 1.6.0.dev20250718141018__py3-none-any.whl → 1.6.0.dev20250718185931__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.dev20250718141018"
31
+ __version__ = "1.6.0.dev20250718185931"
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.dev20250718141018"
6
+ assert cirq.__version__ == "1.6.0.dev20250718185931"
@@ -53,7 +53,7 @@ def test_repr() -> None:
53
53
 
54
54
  assert repr(gate) == (
55
55
  "cirq.BayesianNetworkGate(init_probs=[('q0', 0.0), ('q1', None)],"
56
- + " arc_probs=[('q1', ('q0',), [0.0, 0.0])])"
56
+ " arc_probs=[('q1', ('q0',), [0.0, 0.0])])"
57
57
  )
58
58
 
59
59
 
@@ -814,8 +814,7 @@ def test_group_paulis_are_not_qwc() -> None:
814
814
  circuits_to_pauli: dict[cirq.FrozenCircuit, list[cirq.PauliString]] = {}
815
815
  circuits_to_pauli[circuit] = [[pauli_str1, pauli_str2]] # type: ignore
816
816
  with pytest.raises(
817
- ValueError,
818
- match="The group of Pauli strings are not " "Qubit-Wise Commuting with each other.",
817
+ ValueError, match="The group of Pauli strings are not Qubit-Wise Commuting with each other."
819
818
  ):
820
819
  measure_pauli_strings(
821
820
  circuits_to_pauli, cirq.Simulator(), 1000, 1000, 1000, np.random.default_rng()
@@ -78,8 +78,8 @@ class InsertionNoiseModel(devices.NoiseModel):
78
78
  def __repr__(self) -> str:
79
79
  return (
80
80
  f'cirq.devices.InsertionNoiseModel(ops_added={self.ops_added},'
81
- + f' prepend={self.prepend},'
82
- + f' require_physical_tag={self.require_physical_tag})'
81
+ f' prepend={self.prepend},'
82
+ f' require_physical_tag={self.require_physical_tag})'
83
83
  )
84
84
 
85
85
  def _json_dict_(self) -> dict[str, Any]:
@@ -347,8 +347,8 @@ class TensoredConfusionMatrices:
347
347
  idx = self.measure_qubits.index((qubit,))
348
348
  except: # pragma: no cover
349
349
  raise NotImplementedError(
350
- "The response matrix must be a tensor product of single-qu"
351
- + f"bit response matrices, including that of qubit {qubit}."
350
+ "The response matrix must be a tensor product of single-qubit "
351
+ f"response matrices, including that of qubit {qubit}."
352
352
  )
353
353
  cm_all.append(self.confusion_matrices[idx])
354
354
 
@@ -146,8 +146,8 @@ class AsymmetricDepolarizingChannel(raw_types.Gate):
146
146
  if args.precision is not None:
147
147
  return (
148
148
  f"A({self.p_x:.{args.precision}g},"
149
- + f"{self.p_y:.{args.precision}g},"
150
- + f"{self.p_z:.{args.precision}g})"
149
+ f"{self.p_y:.{args.precision}g},"
150
+ f"{self.p_z:.{args.precision}g})"
151
151
  )
152
152
  return f"A({self.p_x},{self.p_y},{self.p_z})"
153
153
  if args.precision is not None:
@@ -84,7 +84,7 @@ def test_asymmetric_depolarizing_channel_str() -> None:
84
84
  assert (
85
85
  str(cirq.asymmetric_depolarize(0.1, 0.2, 0.3))
86
86
  == "asymmetric_depolarize(error_probabilities={'I': 0.3999999999999999, "
87
- + "'X': 0.1, 'Y': 0.2, 'Z': 0.3})"
87
+ "'X': 0.1, 'Y': 0.2, 'Z': 0.3})"
88
88
  )
89
89
 
90
90
 
cirq/ops/projector.py CHANGED
@@ -135,7 +135,7 @@ class ProjectorString:
135
135
  def __repr__(self) -> str:
136
136
  return (
137
137
  f"cirq.ProjectorString(projector_dict={self._projector_dict},"
138
- + f"coefficient={self._coefficient})"
138
+ f"coefficient={self._coefficient})"
139
139
  )
140
140
 
141
141
  def _json_dict_(self) -> dict[str, Any]:
@@ -549,9 +549,7 @@ def test_type_serialization(mod_spec: ModuleJsonTestSpec, cirq_obj_name: str, cl
549
549
 
550
550
  sto = SerializableTypeObject(cls)
551
551
  test_resolvers = [custom_resolver] + cirq.DEFAULT_RESOLVERS
552
- expected_json = (
553
- f'{{\n "cirq_type": "SerializableTypeObject",\n' f' "test_type": "{typename}"\n}}'
554
- )
552
+ expected_json = f'{{\n "cirq_type": "SerializableTypeObject",\n "test_type": "{typename}"\n}}'
555
553
  assert cirq.to_json(sto) == expected_json
556
554
  assert cirq.read_json(json_text=expected_json, resolvers=test_resolvers) == sto
557
555
  assert_json_roundtrip_works(sto, resolvers=test_resolvers)
@@ -276,7 +276,7 @@ def test_clifford_trial_result_repr_pretty():
276
276
  final_simulator_state=final_simulator_state,
277
277
  )
278
278
 
279
- cirq.testing.assert_repr_pretty(result, "measurements: m=1\n" "output state: |0⟩")
279
+ cirq.testing.assert_repr_pretty(result, "measurements: m=1\noutput state: |0⟩")
280
280
  cirq.testing.assert_repr_pretty(result, "cirq.CliffordTrialResult(...)", cycle=True)
281
281
 
282
282
 
@@ -285,7 +285,7 @@ def test_clifford_step_result_str():
285
285
  result = next(
286
286
  cirq.CliffordSimulator().simulate_moment_steps(cirq.Circuit(cirq.measure(q0, key='m')))
287
287
  )
288
- assert str(result) == "m=0\n" "|0⟩"
288
+ assert str(result) == "m=0\n|0⟩"
289
289
 
290
290
 
291
291
  def test_clifford_step_result_repr_pretty():
@@ -293,7 +293,7 @@ def test_clifford_step_result_repr_pretty():
293
293
  result = next(
294
294
  cirq.CliffordSimulator().simulate_moment_steps(cirq.Circuit(cirq.measure(q0, key='m')))
295
295
  )
296
- cirq.testing.assert_repr_pretty(result, "m=0\n" "|0⟩")
296
+ cirq.testing.assert_repr_pretty(result, "m=0\n|0⟩")
297
297
  cirq.testing.assert_repr_pretty(result, "cirq.CliffordSimulatorStateResult(...)", cycle=True)
298
298
 
299
299
 
@@ -36,8 +36,7 @@ def test_correct_mappings() -> None:
36
36
  def test_incorrect_mappings() -> None:
37
37
  a, b, c = cirq.LineQubit.range(3)
38
38
  with pytest.raises(
39
- AssertionError,
40
- match=r"0b001 \(1\) was mapped to " r"0b100 \(4\) instead of " r"0b010 \(2\)",
39
+ AssertionError, match=r"0b001 \(1\) was mapped to 0b100 \(4\) instead of 0b010 \(2\)"
41
40
  ):
42
41
  cirq.testing.assert_equivalent_computational_basis_map(
43
42
  maps={0b001: 0b010, 0b010: 0b100, 0b100: 0b001},
@@ -58,7 +58,7 @@ class DepolarizingNoiseTransformer:
58
58
  if not isinstance(p, (Mapping, float)):
59
59
  raise TypeError( # pragma: no cover
60
60
  "p must either be a float or a mapping from" # pragma: no cover
61
- + "sorted qubit pairs to floats" # pragma: no cover
61
+ "sorted qubit pairs to floats" # pragma: no cover
62
62
  ) # pragma: no cover
63
63
  self.p = p
64
64
  self.p_func = (
@@ -88,7 +88,7 @@ def test_product_state():
88
88
  with pytest.raises(ValueError) as e:
89
89
  # Re-use q2
90
90
  ps *= cirq.KET_PLUS(q2)
91
- assert e.match(r'.*both contain factors for these qubits: ' r'\[cirq.LineQubit\(2\)\]')
91
+ assert e.match(r'.*both contain factors for these qubits: \[cirq.LineQubit\(2\)\]')
92
92
 
93
93
  ps2 = eval(repr(ps))
94
94
  assert ps == ps2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250718141018
3
+ Version: 1.6.0.dev20250718185931
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=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
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=sYifCgnQF8trjoWzEnA1o4LKiqQCXEv89wxIp3TdfcQ,1206
8
- cirq/_version_test.py,sha256=X1PZjtsMXfyxnrDXh_jYIeTeFnI7qBI_QcMLFfr8zTE,155
7
+ cirq/_version.py,sha256=tv9z3cBglneCCBNGLZrcTxtwFvykD5RhpR7NjyjZ5Pw,1206
8
+ cirq/_version_test.py,sha256=C19zrRJKvSuCBGRFxOmxtHrq5BnJR249-CPbjUcURRo,155
9
9
  cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
10
10
  cirq/json_resolver_cache.py,sha256=hYyG53VJeV61X0oukK5ndZYega8lkL2FyaL1m0j6h5M,13556
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -67,7 +67,7 @@ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=XMyTgC59egPIANVfdJ
67
67
  cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=xs_gRngn9XpeF-WiTpHv2fbkyi-WZmq517qj0LUGF38,2292
68
68
  cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
69
  cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=ACPACTjbkSI8hWRs3Y52cKchqZazwSCWELH6-LAh61o,9123
70
- cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=o741oAQcDCbt8Ms_UsySUtfSB4ZpzyoSvTsWwBcBBOc,6007
70
+ cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=L5SXu7ygwtRB6umpDmRzYMo6tm17KcWdO3vynAqGmvA,6005
71
71
  cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
72
  cirq/contrib/circuitdag/circuit_dag.py,sha256=R0J-FZ4ynk760C7eUuyf_4ORtd7Q6rFViUy_Qpm2Vsw,6913
73
73
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=r6L21qD8tzLCgfKhnXK0QuNQ_v6aii5W0wyujoYcnAg,8378
@@ -97,7 +97,7 @@ cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55A
97
97
  cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
98
98
  cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
99
99
  cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=otBl5RV6Xsvv1M2Ze6mSz7_wSzsvWt_K7kDWbJNqXYg,21087
100
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=e8WaWlBC0HDhkBNG9TMZ_3eT-dFHW3jnGd1ftQbXoo0,36841
100
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=tWJtEJwT2HgDj4vzREMymsPNKZlWLIFMbQ0qyEuVQpo,36829
101
101
  cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
102
102
  cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
103
103
  cirq/contrib/paulistring/recombine.py,sha256=phJ-SY4zdqZpIZca0iSsY0lK6NdXd0M0sOOWnUdGn5U,4353
@@ -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=6y1rpIupS9fj0zdtaYAaQXsx0dzxy5SnH9Sq3izAWQo,3613
165
+ cirq/devices/insertion_noise_model.py,sha256=FCVsVsrPyGT0WsvIWQUgu4IliSRpck3znrEmlI-xOPU,3609
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
@@ -191,7 +191,7 @@ cirq/experiments/qubit_characterizations.py,sha256=BKvi1_A7nOT24lxT8zsTWdqeORMUI
191
191
  cirq/experiments/qubit_characterizations_test.py,sha256=RZzyuQwYm9tHtQSZLigJnQcyhZdCzE7OiuyETQSiHxo,10319
192
192
  cirq/experiments/random_quantum_circuit_generation.py,sha256=pV6ubukLLdfPXLvJD2t979rVDCOTM32X6SB65vExeE4,28012
193
193
  cirq/experiments/random_quantum_circuit_generation_test.py,sha256=4GSfUK2hw2r90JAO7R2zSBqjtwWi8vXuAhw-iK6quwY,16512
194
- cirq/experiments/readout_confusion_matrix.py,sha256=ro3miCMr8K-EDW918PHKL_QcqrDUT-_uTXUvJ1PPzEI,20666
194
+ cirq/experiments/readout_confusion_matrix.py,sha256=qK6qDoNRuIHGTV7PS8xGkS7tCXGGyoDfUJJj6575-cE,20664
195
195
  cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
196
196
  cirq/experiments/single_qubit_readout_calibration.py,sha256=0vnmKBtcjS8kCbJj_iJ0BWW23W6UCc4X2Ig9N_UUs0s,15243
197
197
  cirq/experiments/single_qubit_readout_calibration_test.py,sha256=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
@@ -279,8 +279,8 @@ cirq/ops/classically_controlled_operation.py,sha256=hj8oShyWpOD4bmKS5CTmxNftywkC
279
279
  cirq/ops/classically_controlled_operation_test.py,sha256=OedFFoAwS4WnHKG58xgjhbKFgKebhYyP8I7AU4a0m9k,50425
280
280
  cirq/ops/clifford_gate.py,sha256=BMjCuJq2fTFZm-Sv475qDqwsFof1kxru8zNDJOTFkL8,40055
281
281
  cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
282
- cirq/ops/common_channels.py,sha256=BD8-qJDGITOSP0bJVcWGgjbI5dj2dwFkSzzWb-qgfcc,37026
283
- cirq/ops/common_channels_test.py,sha256=Qzw7nDrWgO1GDB7qkN2YUZi3NDswvvBJ9TEnSNakJX4,30755
282
+ cirq/ops/common_channels.py,sha256=ZZa2JCyPtrKfGhcAGCUUzA4qym8S9isKs-xs-TEkhKs,37022
283
+ cirq/ops/common_channels_test.py,sha256=3v-CLntFYP5YoHyMd5ymm-HNhhhhvRTuriIl3vVZJGY,30753
284
284
  cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
285
285
  cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
286
286
  cirq/ops/common_gates.py,sha256=pnyLK2FurjE6idejtAzgRaawiW-AqiM22w7xMkEpxVs,58221
@@ -355,7 +355,7 @@ cirq/ops/phased_x_gate.py,sha256=ffIRnS_84saQYuwD4wsbEL2i11RXJ7XmxxRteWOwd68,924
355
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
357
  cirq/ops/phased_x_z_gate_test.py,sha256=ZmV0NdJJMzile88bRHYGYPXxOP785fW_Tn4tCxbphPY,10876
358
- cirq/ops/projector.py,sha256=TBhb0-0aJP329Yf7enPtwCMurpsV0s2wNbv4WpPJXR0,5647
358
+ cirq/ops/projector.py,sha256=xxt3YhomvLfQjFWlU7yeKHTbPlgBHGQUcfiSbMxlIQk,5645
359
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
@@ -411,7 +411,7 @@ cirq/protocols/hash_from_pickle_test.py,sha256=H1V2cy-gtbKhhewZPSI7kcNqgpkS5luF7
411
411
  cirq/protocols/inverse_protocol.py,sha256=tHaY8-dfd0SD59v3DZ_zpwz7lwFrraPExEnIgn1T0RI,3965
412
412
  cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
413
413
  cirq/protocols/json_serialization.py,sha256=z7Yu2vsNabRkdeYyIuNCoXATHkrOGreTRShNyN0Fjuc,24520
414
- cirq/protocols/json_serialization_test.py,sha256=jQ7M9dlPfYWGfBV9wpf5covMVGml9QZZDrA6E24WX9Q,27861
414
+ cirq/protocols/json_serialization_test.py,sha256=bQELcU7hZ55rBk-sqxwsiotTOId4EWpUztsD6rwqb1g,27841
415
415
  cirq/protocols/kraus_protocol.py,sha256=ptiRkEnDgBnEdxobs6wZdZsOAhVzF6bhhSHuNqLKFJo,9250
416
416
  cirq/protocols/kraus_protocol_test.py,sha256=51eJ3r3Kx10rG-1hPjcfcODeUO3PFQmwU9ATMnhTWDw,5495
417
417
  cirq/protocols/measurement_key_protocol.py,sha256=JU7XbZfR7o6Wcv5qRJisp3ZAWwW9Fx7OHtxNMrWtZoQ,13351
@@ -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=HEfF_YMt76HSWZJuWPyIAjU3zf9ULmZg67BVmr3QINM,21414
952
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=caKQHVNuQoZYcJqfanTtNx6Hhc_6VmD908Z2mzJ8o6I,21405
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
@@ -1002,7 +1002,7 @@ cirq/testing/devices_test.py,sha256=MeakoMeIRgcKkTTKqp2khfCaybRaCsZuaCHhTLgNy6U,
1002
1002
  cirq/testing/equals_tester.py,sha256=XmCj8zPoS5DKGKDMVTTEC_uIikiYCth0l0o6QPd4oBU,6597
1003
1003
  cirq/testing/equals_tester_test.py,sha256=337JBdQcxsj_-qx8rrub0vycC8knx6JpVcFvFbWt2es,10595
1004
1004
  cirq/testing/equivalent_basis_map.py,sha256=n6NNq70tIzpeqRHUOF08wgJUKOZDxK_YqrZGhFugwdY,2650
1005
- cirq/testing/equivalent_basis_map_test.py,sha256=qAgxkKLuHFsRooAWdSdTMI61fsVYKSDhVl1IsdHeGXE,1540
1005
+ cirq/testing/equivalent_basis_map_test.py,sha256=Gg8CzHzkbKUAxZdLRlsP2oS-rstUXP6T0m6X_v8d1IU,1523
1006
1006
  cirq/testing/equivalent_repr_eval.py,sha256=o7juCX8DNaVjaodkQrA8xEsFurmZ-P-trtJ3M5_lhgI,3357
1007
1007
  cirq/testing/equivalent_repr_eval_test.py,sha256=6k2EhVYx2vxdJT2JEH0Kv390p3G0dJ0TEp1tdpFS_v4,3024
1008
1008
  cirq/testing/gate_features.py,sha256=7hFdlkFCDDiQ6gJaEQ6ICAQgMOu-bgGvFUz-7rVCRx0,1403
@@ -1073,7 +1073,7 @@ cirq/transformers/merge_k_qubit_gates.py,sha256=v9vY3f52S9QR7D_Om4APSZ65rwJH6Z7g
1073
1073
  cirq/transformers/merge_k_qubit_gates_test.py,sha256=523FmfCC7mGX_zecGaQ2tgdqBvMGiMinwJMIfKBgG8E,14016
1074
1074
  cirq/transformers/merge_single_qubit_gates.py,sha256=p452ZsVPcxQSBwbjcT1H0OOPinb37DAIHxNjphEwvGk,13671
1075
1075
  cirq/transformers/merge_single_qubit_gates_test.py,sha256=ZIJmpi2rGNSGEu0xY3zRS7gFJbX6-zyGrIsaqGrL5jI,18080
1076
- cirq/transformers/noise_adding.py,sha256=T7lpo5DOiVEieDOD_AId49xAVd5Z7Rq17cNGbxOrOLA,4470
1076
+ cirq/transformers/noise_adding.py,sha256=UePj56mCvhg6Vp5DJfQcjjaIo_UzcrnOCg2eN6YvkQU,4468
1077
1077
  cirq/transformers/noise_adding_test.py,sha256=nHOoKUPBBOkWF6A_JhIO6-G0AuFkLKBCxH7e2BOem9M,2171
1078
1078
  cirq/transformers/optimize_for_target_gateset.py,sha256=8jEOazQmnDsHEXJhdRDzIWVLYuAwy3EIByqpq7_VTVg,7216
1079
1079
  cirq/transformers/optimize_for_target_gateset_test.py,sha256=6xu7bDUf2CifMGFvutXT_CI2Wu_FSeucg6tcXHEeOZw,19574
@@ -1182,7 +1182,7 @@ cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLl
1182
1182
  cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
1183
1183
  cirq/value/probability_test.py,sha256=vFpPiofJY-ddsfpDrtgP-AiXFCDtKVXhjkv_4Vl1-Qg,984
1184
1184
  cirq/value/product_state.py,sha256=yrYlvVoINj4N_fj_9nxugm1qsTxOzIh5j_pJGsyJ8lc,8997
1185
- cirq/value/product_state_test.py,sha256=PqIONpf7Eo2tbk-_BF_Eb_P47ui8nUO0dfz9CN-24Qk,5982
1185
+ cirq/value/product_state_test.py,sha256=CGRb5pKl5bVB9yWeil12qweQ735wYP64jQGoC-j3tto,5978
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=pC-hwfLL6U1_5937AMw6YtGgEBq71prNQ6jOjh8Kbls,3633
@@ -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.dev20250718141018.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250718141018.dist-info/METADATA,sha256=f4NZhsUXCSqU2RdS1OnovBWD3YdCjWVZdvz8OwYtKB8,4857
1225
- cirq_core-1.6.0.dev20250718141018.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250718141018.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250718141018.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250718185931.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250718185931.dist-info/METADATA,sha256=bbwxUkr6wcWOPygqep3I4edaHqpuc5ig5Wmvdv3CGsE,4857
1225
+ cirq_core-1.6.0.dev20250718185931.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250718185931.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250718185931.dist-info/RECORD,,