cirq-core 1.6.0.dev20250605164716__py3-none-any.whl → 1.6.0.dev20250609223500__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/__init__.py CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
  """Cirq is a framework for creating, editing, and invoking quantum circuits."""
16
16
 
17
+ # ruff: noqa: F401
18
+
17
19
  from cirq import _import
18
20
 
19
21
  from cirq._compat import __cirq_debug__ as __cirq_debug__, with_debug as with_debug
cirq/_compat_test.py CHANGED
@@ -813,7 +813,7 @@ def _test_broken_module_1_inner():
813
813
  DeprecatedModuleImportError, match="missing_module cannot be imported. The typical reasons"
814
814
  ):
815
815
  # pylint: disable=unused-import
816
- import cirq.testing._compat_test_data.broken_ref as br # type: ignore
816
+ import cirq.testing._compat_test_data.broken_ref as br # type: ignore # noqa: F401
817
817
 
818
818
 
819
819
  def _test_broken_module_2_inner():
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.dev20250605164716"
31
+ __version__ = "1.6.0.dev20250609223500"
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.dev20250605164716"
6
+ assert cirq.__version__ == "1.6.0.dev20250609223500"
cirq/contrib/__init__.py CHANGED
@@ -18,9 +18,9 @@ Any contributions not ready for full production can be put in a subdirectory in
18
18
  this package.
19
19
  """
20
20
 
21
- from cirq.contrib import acquaintance
22
- from cirq.contrib import graph_device
23
- from cirq.contrib import quirk
21
+ from cirq.contrib import acquaintance # noqa: F401
22
+ from cirq.contrib import graph_device # noqa: F401
23
+ from cirq.contrib import quirk # noqa: F401
24
24
  from cirq.contrib.qcircuit import circuit_to_latex_using_qcircuit as circuit_to_latex_using_qcircuit
25
- from cirq.contrib import json
25
+ from cirq.contrib import json # noqa: F401
26
26
  from cirq.contrib.circuitdag import CircuitDag as CircuitDag, Unique as Unique
@@ -79,4 +79,4 @@ from cirq.contrib.acquaintance.topological_sort import (
79
79
  random_topological_sort as random_topological_sort,
80
80
  )
81
81
 
82
- from cirq.contrib.acquaintance import testing
82
+ from cirq.contrib.acquaintance import testing # noqa: F401
@@ -14,4 +14,4 @@
14
14
 
15
15
  """Tools for branchmarking NISQ circuits."""
16
16
 
17
- from cirq.experiments.benchmarking.parallel_xeb import parallel_two_qubit_xeb
17
+ from cirq.experiments.benchmarking.parallel_xeb import parallel_two_qubit_xeb # noqa: F401
@@ -37,4 +37,4 @@ from cirq.interop.quirk.cells.input_rotation_cells import (
37
37
  )
38
38
 
39
39
  import cirq.interop.quirk.cells.swap_cell
40
- import cirq.interop.quirk.cells.control_cells
40
+ import cirq.interop.quirk.cells.control_cells # noqa: F401
cirq/ops/eigen_gate.py CHANGED
@@ -103,9 +103,15 @@ class EigenGate(raw_types.Gate):
103
103
  `cirq.unitary(cirq.rx(pi))` equals -iX instead of X.
104
104
 
105
105
  Raises:
106
+ TypeError: If the supplied exponent is a string.
106
107
  ValueError: If the supplied exponent is a complex number with an
107
108
  imaginary component.
108
109
  """
110
+ if not isinstance(exponent, (numbers.Number, sympy.Expr)):
111
+ raise TypeError(
112
+ "Gate exponent must be a number or sympy expression. "
113
+ f"Invalid type: {type(exponent).__name__!r}"
114
+ )
109
115
  if isinstance(exponent, complex):
110
116
  if exponent.imag:
111
117
  raise ValueError(f"Gate exponent must be real. Invalid Value: {exponent}")
@@ -286,7 +292,12 @@ class EigenGate(raw_types.Gate):
286
292
  real_periods = [abs(2 / e) for e in exponents if e != 0]
287
293
  return _approximate_common_period(real_periods)
288
294
 
289
- def __pow__(self, exponent: float | sympy.Symbol) -> EigenGate:
295
+ def __pow__(self, exponent: value.TParamVal) -> EigenGate:
296
+ if not isinstance(exponent, (numbers.Number, sympy.Expr)):
297
+ raise TypeError(
298
+ "Gate exponent must be a number or sympy expression. "
299
+ f"Invalid type: {type(exponent).__name__!r}"
300
+ )
290
301
  new_exponent = protocols.mul(self._exponent, exponent, NotImplemented)
291
302
  if new_exponent is NotImplemented:
292
303
  return NotImplemented # pragma: no cover
@@ -248,10 +248,19 @@ def test_pow() -> None:
248
248
  assert ZGateDef(exponent=0.25, global_shift=0.5) ** 2 == ZGateDef(
249
249
  exponent=0.5, global_shift=0.5
250
250
  )
251
- with pytest.raises(ValueError, match="real"):
251
+ with pytest.raises(ValueError, match="Gate exponent must be real."):
252
252
  assert ZGateDef(exponent=0.5) ** 0.5j
253
253
  assert ZGateDef(exponent=0.5) ** (1 + 0j) == ZGateDef(exponent=0.5)
254
254
 
255
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
256
+ assert ZGateDef(exponent=0.5) ** "text"
257
+
258
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
259
+ assert ZGateDef(exponent="text")
260
+
261
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
262
+ assert ZGateDef(exponent=sympy.Symbol('a')) ** "text"
263
+
255
264
 
256
265
  def test_inverse() -> None:
257
266
  assert cirq.inverse(CExpZinGate(0.25)) == CExpZinGate(-0.25)
@@ -225,3 +225,10 @@ def test_powers() -> None:
225
225
  assert isinstance(cirq.X**1, cirq.Pauli)
226
226
  assert isinstance(cirq.Y**1, cirq.Pauli)
227
227
  assert isinstance(cirq.Z**1, cirq.Pauli)
228
+
229
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
230
+ assert cirq.X ** 'text'
231
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
232
+ assert cirq.Y ** 'text'
233
+ with pytest.raises(TypeError, match="Gate exponent must be a number or sympy expression."):
234
+ assert cirq.Z ** 'text'
@@ -222,7 +222,9 @@ def test_noise_applied_measurement_gate():
222
222
  def test_parameterized_copies_all_but_last():
223
223
  sim = CountingSimulator()
224
224
  n = 4
225
- rs = sim.simulate_sweep(cirq.Circuit(cirq.X(q0) ** 'a'), [{'a': i} for i in range(n)])
225
+ rs = sim.simulate_sweep(
226
+ cirq.Circuit(cirq.X(q0) ** sympy.Symbol('a')), [{'a': i} for i in range(n)]
227
+ )
226
228
  for i in range(n):
227
229
  r = rs[i]
228
230
  assert r._final_simulator_state.gate_count == 1
@@ -1,4 +1,5 @@
1
1
  # pylint: disable=wrong-or-nonexistent-copyright-notice
2
+ # ruff: noqa: F401
2
3
  """module_a for module deprecation tests"""
3
4
 
4
5
  import logging
@@ -1,4 +1,5 @@
1
1
  # pylint: disable=wrong-or-nonexistent-copyright-notice
2
+ # ruff: noqa: F401
2
3
  from cirq.testing._compat_test_data.module_a.module_b import module_c
3
4
 
4
5
  MODULE_B_ATTRIBUTE = "module_b"
@@ -1,2 +1,3 @@
1
1
  # pylint: disable=wrong-or-nonexistent-copyright-notice
2
+ # ruff: noqa: F401
2
3
  from cirq.testing._compat_test_data.module_a.sub.subsub import dupe
@@ -14,6 +14,7 @@
14
14
 
15
15
  from __future__ import annotations
16
16
 
17
+ import importlib.util
17
18
  import warnings
18
19
 
19
20
  import numpy as np
@@ -53,9 +54,7 @@ class QuditGate(cirq.Gate):
53
54
 
54
55
 
55
56
  def test_assert_qasm_is_consistent_with_unitary() -> None:
56
- try:
57
- import qiskit as _
58
- except ImportError: # pragma: no cover
57
+ if importlib.util.find_spec('qiskit') is None: # pragma: no cover
59
58
  warnings.warn(
60
59
  "Skipped test_assert_qasm_is_consistent_with_unitary "
61
60
  "because qiskit isn't installed to verify against."
@@ -39,4 +39,6 @@ from cirq.transformers.gauge_compiling.sqrt_iswap_gauge import (
39
39
  SqrtISWAPGaugeTransformer as SqrtISWAPGaugeTransformer,
40
40
  )
41
41
 
42
- from cirq.transformers.gauge_compiling.cphase_gauge import CPhaseGaugeTransformer
42
+ from cirq.transformers.gauge_compiling.cphase_gauge import (
43
+ CPhaseGaugeTransformer as CPhaseGaugeTransformer,
44
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250605164716
3
+ Version: 1.6.0.dev20250609223500
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
@@ -1,11 +1,11 @@
1
- cirq/__init__.py,sha256=ATT0Sbu4iemRSpJ0xGabMJJ85kEeGJZ0TPirye6BWwM,28336
1
+ cirq/__init__.py,sha256=6Z6qJQHaKmiztMWAuhH-26-GcLaNlcrE9m41Ok62QY0,28356
2
2
  cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
3
- cirq/_compat_test.py,sha256=05AfYsnU6FPiM47YQ_b6tN2hxV67GXD7vkxYT9FOybI,34032
3
+ cirq/_compat_test.py,sha256=l9Ipt2aEVDM6SKqtanyPw91ZrYZV4m0SlabJJB_lq1o,34045
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=3XaC56Xm3dSFyYRjs_VWwqfFqkt0tr12qg8zOow_BYw,1206
8
- cirq/_version_test.py,sha256=F5NTCqm8MNWTvxOrY8SqE7AXRhPtLbiEUrnn1VpE0UA,155
7
+ cirq/_version.py,sha256=7DpBnYdWHPNk8HWzUzfDuG3lxuCgTXhKQYepvosoyng,1206
8
+ cirq/_version_test.py,sha256=WqrV_3v1y3iRVHcX7grpaqOFwQnDfY6fAL5UYhFHmKU,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
@@ -32,10 +32,10 @@ cirq/circuits/qasm_output.py,sha256=qclnyiEnRzkcr0JqzzABuiHD3INkiALmhl1jCW0AYNk,
32
32
  cirq/circuits/qasm_output_test.py,sha256=e2TsMMVZLzyCYh6U3umPtusxmeiLJDunmsgFRa5p7E0,14048
33
33
  cirq/circuits/text_diagram_drawer.py,sha256=qqjzbswwRfXCRfJXyTIdCrj_zkUgDW5A-ctEXDRVRhk,16451
34
34
  cirq/circuits/text_diagram_drawer_test.py,sha256=YBe8zT7BDENoR-gA3l77mtRj6vxY3kVVZ4FqBO_WwsY,11031
35
- cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
35
+ cirq/contrib/__init__.py,sha256=DSA8bHVvPSivnEtLS2WmAa89pzGxK8u2MyMHwpJ3HSM,1121
36
36
  cirq/contrib/json.py,sha256=ITiaznB1mndxtasVO5QTeu-31h3vgGTBCGFzousOxHE,788
37
37
  cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
38
- cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
38
+ cirq/contrib/acquaintance/__init__.py,sha256=hIRO807ywD3L5xwIPROAOq5FFnel9uXcQCw1uYBlNhg,3215
39
39
  cirq/contrib/acquaintance/bipartite.py,sha256=9BusD-thMIfOEZeDuUEBnZUJoOJ8bc-DzNJTVMOrVR8,6494
40
40
  cirq/contrib/acquaintance/bipartite_test.py,sha256=0Hxie-d64f5IsJ97yoQZFsODSvd0K72UaazJdEgMQWw,16056
41
41
  cirq/contrib/acquaintance/devices.py,sha256=RV03R0Ie_OGAQXQ80TQZWvs-D9443AjTXZcXSAkEskg,3051
@@ -209,14 +209,14 @@ cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vK
209
209
  cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
210
210
  cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
211
211
  cirq/experiments/z_phase_calibration_test.py,sha256=F5ePCPHukDolucMPDfMbyeDSHMF3hEzW-EBEQHKrCyI,9048
212
- cirq/experiments/benchmarking/__init__.py,sha256=2jMiP2dmQrH9Z2eKC8koaQqZcOi_-ziuer-aHkLm_bU,709
212
+ cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
213
213
  cirq/experiments/benchmarking/parallel_xeb.py,sha256=frCeZMRw03YGwDYYjWkg6blEFoGB8BPt9lxA9cNA8vA,25894
214
214
  cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=tT_iyG9_ZU933-t2altuugOy8ekqzxtjkmGn1rdF-ak,15867
215
215
  cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
216
216
  cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
217
217
  cirq/interop/quirk/url_to_circuit.py,sha256=oEyMpUxjViS-TVzN3HWg_rK2k_MEBzn1VByMoOyJMi0,14083
218
218
  cirq/interop/quirk/url_to_circuit_test.py,sha256=A5mb66WkPAK37nO5RZRxJ_n5rvls2XzNaiCKch3lwLQ,26319
219
- cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
219
+ cirq/interop/quirk/cells/__init__.py,sha256=qFnhZj9KKX1PFDSK3xEiJA5aHzOF1UUgoICJTeWHINM,1497
220
220
  cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
221
221
  cirq/interop/quirk/cells/arithmetic_cells.py,sha256=okXTbRsVKGH2LAQ8-HfJxnUWGWkSHSomVGdnxqclvWs,13007
222
222
  cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
@@ -295,8 +295,8 @@ cirq/ops/dense_pauli_string.py,sha256=1TijNu1D2HIbbnwLbT_f546R2L4OCQtm1bKjqhno1K
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
297
  cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
298
- cirq/ops/eigen_gate.py,sha256=BLooTrKX1tJiBjIVMfC1w7LLYbAco78oJW3Z4hcJLrc,17310
299
- cirq/ops/eigen_gate_test.py,sha256=gk0EPzOLY_KEJxVvp6HyDGHGg3ybcbhUtEj1OETaWCA,16444
298
+ cirq/ops/eigen_gate.py,sha256=xO_lVLwTbCjBk7jicYLCmG4waER5OrJ7l0JaONyzLkE,17850
299
+ cirq/ops/eigen_gate_test.py,sha256=3ZN7texyQ_svk8YAaH3liZiGAgq_SBpNb46nIzKYfWM,16909
300
300
  cirq/ops/fourier_transform.py,sha256=JMledJB0tPjLlIlG9bfapJSqass94rXkAheXragQxq8,7455
301
301
  cirq/ops/fourier_transform_test.py,sha256=sX5TfZd9-n1WTyZcqOQ0x6yyI8k6rasywijMo3bc1ls,6426
302
302
  cirq/ops/fsim_gate.py,sha256=xsk5xfEaUTcGeGV852KTuoE7mxlCHEXg2HZlyiszkd0,20035
@@ -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=yotABJBrDgn83VeVOFIRarqU3FKvAWpZ90rqmgEpyPQ,8035
337
+ cirq/ops/pauli_gates_test.py,sha256=EL2NG43h-hlnXcAy54Vz6JrTtUNcT_GY3aH_Hp1ZJsw,8420
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
@@ -937,7 +937,7 @@ cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,
937
937
  cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
938
938
  cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
939
939
  cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
940
- cirq/sim/simulator_base_test.py,sha256=agR_nrIS7hqY_Z_GRw_kXfYLW76LjJ6N2nW4SpM_lf4,14951
940
+ cirq/sim/simulator_base_test.py,sha256=ag_1DIA82vEBLrXlwxWBvtobJa9E6SqBT46F6aPZESc,14979
941
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=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
@@ -989,7 +989,7 @@ cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fw
989
989
  cirq/testing/consistent_protocols.py,sha256=T1a3F33h9uhy3KJFQsskokBrtcXglXtfjLPWF5sEkFE,7728
990
990
  cirq/testing/consistent_protocols_test.py,sha256=U9lzwbnjAwQVcL8fRN5MpHSgUj4faRA3pt5Z6uEPOwQ,10003
991
991
  cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
992
- cirq/testing/consistent_qasm_test.py,sha256=Z1bfMsgoXwe27RDhruKqBV4eGqTHUOwkP17TshMPMNo,2902
992
+ cirq/testing/consistent_qasm_test.py,sha256=5qpvWQt6KS4ltp-ia8LE4YrgmWSVo3hwcJplQsFIvww,2915
993
993
  cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
994
994
  cirq/testing/consistent_specified_has_unitary.py,sha256=R8xFCPoIUZn-4KoUGPHASGfwQ5iqqeLO5qQgT1HB1Xs,1168
995
995
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
@@ -1032,12 +1032,12 @@ cirq/testing/sample_circuits_test.py,sha256=S8__hXfSPjL7FLx1ei6en3n9ymQbehYt7FKi
1032
1032
  cirq/testing/sample_gates.py,sha256=N9oKdKTthk-KxToof4cH81is2uZvIwUmHTAKwFdMqoY,3317
1033
1033
  cirq/testing/sample_gates_test.py,sha256=rMMI1o36KDyGFtLh_XiQvIzhsyePktsDw88eRauRqWc,2430
1034
1034
  cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1035
- cirq/testing/_compat_test_data/module_a/__init__.py,sha256=hiodvWwXhGy7bG6L5CrM1vC3UIHY351RuK4As_joaMk,415
1035
+ cirq/testing/_compat_test_data/module_a/__init__.py,sha256=Ic68-4DyonoJbDUUXqg4Z5e1AbPjl_yIwKLp1EsrXp0,434
1036
1036
  cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
1037
1037
  cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
1038
- cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=QPjVtgaK3kM9SPi3NocWmZ4FGh_V6Ct5qDHZkDIeCCU,159
1038
+ cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=PJAhIIXSoTKwr17h7fn_ojCE6eva6hNz9wlwyaoXTG0,178
1039
1039
  cirq/testing/_compat_test_data/module_a/module_b/module_c/__init__.py,sha256=InVpoxhxUpAKUFiY_M6DK6cCw8Qgxv6JEYAeUQ08rjI,88
1040
- cirq/testing/_compat_test_data/module_a/sub/__init__.py,sha256=yJoMq-mlYtYsUxms4ItX2NeSRrZYirmc-9sZ9AV0oCw,124
1040
+ cirq/testing/_compat_test_data/module_a/sub/__init__.py,sha256=J_aog7f4MdSMcu4rvTRgzTi5XvnUqggo4VPuWWUgx9c,143
1041
1041
  cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py,sha256=ERf76Zh2nhGeoGky01MHwYVdhZZZG0gpqhOWKhp1Mvw,155
1042
1042
  cirq/testing/_compat_test_data/module_a/sub/subsub/dupe.py,sha256=L7pscpZJYh5jPDgnLF0aecWGJ7G8-IqkdAhjXYHCbog,77
1043
1043
  cirq/testing/_compat_test_data/repeated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1120,7 +1120,7 @@ cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=dP9umZJBgN
1120
1120
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=Cj_GZvJykt5NfNuB8vEY30DE2tU3nJtnUztAArgnfE4,4204
1121
1121
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=s08m1PJODNUNzNNkn_zu2qasRSWmXJAq8Tb9cHKk-yU,25348
1122
1122
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WfPQA_wTpRknovNenxC1LPAt9cVHqwdRhUhPZ8sLNr0,20655
1123
- cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
1123
+ cirq/transformers/gauge_compiling/__init__.py,sha256=kgsBfsjwCjHMcwZd2wpzXFWPT9ZK-7PjzhEMV0q0pao,1557
1124
1124
  cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=EoM_TKZt8mJwYFQAfv3rviitXWvGT8I5N36droPWPCE,5576
1125
1125
  cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=dPV2vqsyC-eUi_jmwEk6dhOKHnQLJ_A01_Emxw2j8QQ,1427
1126
1126
  cirq/transformers/gauge_compiling/cz_gauge.py,sha256=dtcC49-qIvH_hRaQpQLBvGu-3323r4cwWpFImBnDebE,2586
@@ -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.dev20250605164716.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250605164716.dist-info/METADATA,sha256=TdzuTTPe4sBLTnS8lP8f1SYOlYTXuZPYiqN-Arj6Rkw,4857
1225
- cirq_core-1.6.0.dev20250605164716.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250605164716.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250605164716.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250609223500.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250609223500.dist-info/METADATA,sha256=Rss5-yn50pEgWD5YqygJS3FaSN9RI65coBcMdxJTYR8,4857
1225
+ cirq_core-1.6.0.dev20250609223500.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250609223500.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250609223500.dist-info/RECORD,,