cirq-core 1.6.0.dev20250603050456__py3-none-any.whl → 1.6.0.dev20250604225156__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/_compat.py CHANGED
@@ -469,7 +469,7 @@ def deprecate_attributes(module_name: str, deprecated_attributes: dict[str, tupl
469
469
  __dict__ = module.__dict__
470
470
 
471
471
  # Workaround for: https://github.com/python/mypy/issues/8083
472
- __spec__ = _make_proxy_spec_property(module) # type: ignore
472
+ __spec__ = _make_proxy_spec_property(module)
473
473
 
474
474
  def __getattr__(self, name):
475
475
  if name in deprecated_attributes:
@@ -770,7 +770,7 @@ def _setup_deprecated_submodule_attribute(
770
770
  __dict__ = parent_module.__dict__
771
771
 
772
772
  # Workaround for: https://github.com/python/mypy/issues/8083
773
- __spec__ = _make_proxy_spec_property(parent_module) # type: ignore
773
+ __spec__ = _make_proxy_spec_property(parent_module)
774
774
 
775
775
  def __getattr__(self, name):
776
776
  if name == old_child:
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.dev20250603050456"
31
+ __version__ = "1.6.0.dev20250604225156"
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.dev20250603050456"
6
+ assert cirq.__version__ == "1.6.0.dev20250604225156"
@@ -137,7 +137,7 @@ def sample_heavy_set(
137
137
  # Don't do a single large measurement gate because then the key will be one
138
138
  # large string. Instead, do a bunch of single-qubit measurement gates so we
139
139
  # preserve the qubit keys.
140
- sorted_qubits = sorted(qubits, key=key)
140
+ sorted_qubits = sorted(qubits, key=key) # type: ignore[arg-type]
141
141
  circuit_copy = circuit + [cirq.measure(q) for q in sorted_qubits]
142
142
 
143
143
  # Run the sampler to compare each output against the Heavy Set.
@@ -17,7 +17,7 @@ from __future__ import annotations
17
17
 
18
18
  import dataclasses
19
19
  import itertools
20
- from typing import Any, Callable, cast, Container, Iterable, Iterator, Sequence, TYPE_CHECKING
20
+ from typing import Any, Callable, Container, Iterable, Iterator, Sequence, TYPE_CHECKING
21
21
 
22
22
  import numpy as np
23
23
 
@@ -458,8 +458,7 @@ def _pairs_from_moment(moment: cirq.Moment) -> list[QidPairT]:
458
458
  for op in moment.operations:
459
459
  if len(op.qubits) != 2:
460
460
  raise ValueError("Layer circuit contains non-2-qubit operations.")
461
- qpair = cast(QidPairT, op.qubits)
462
- pairs.append(qpair)
461
+ pairs.append(op.qubits)
463
462
  return pairs
464
463
 
465
464
 
@@ -341,8 +341,8 @@ def sample_2q_xeb_circuits(
341
341
  # Construct truncated-with-measurement circuits to run.
342
342
  tasks = _generate_sample_2q_xeb_tasks(zipped_circuits, cycle_depths)
343
343
  if shuffle is not None:
344
- shuffle = value.parse_random_state(shuffle)
345
- shuffle.shuffle(tasks)
344
+ prng = value.parse_random_state(shuffle)
345
+ prng.shuffle(tasks) # type: ignore[arg-type]
346
346
 
347
347
  # Batch and run tasks.
348
348
  records = _execute_sample_2q_xeb_tasks_in_batches(
@@ -14,7 +14,7 @@
14
14
 
15
15
  from __future__ import annotations
16
16
 
17
- from typing import AbstractSet, Any, Mapping, Sequence, TYPE_CHECKING
17
+ from typing import AbstractSet, Any, cast, Mapping, Sequence, TYPE_CHECKING
18
18
 
19
19
  import sympy
20
20
 
@@ -212,13 +212,17 @@ class ClassicallyControlledOperation(raw_types.Operation):
212
212
  conditions = [protocols.with_measurement_key_mapping(c, key_map) for c in self._conditions]
213
213
  sub_operation = protocols.with_measurement_key_mapping(self._sub_operation, key_map)
214
214
  sub_operation = self._sub_operation if sub_operation is NotImplemented else sub_operation
215
- return sub_operation.with_classical_controls(*conditions)
215
+ return cast(
216
+ ClassicallyControlledOperation, sub_operation.with_classical_controls(*conditions)
217
+ )
216
218
 
217
219
  def _with_key_path_prefix_(self, prefix: tuple[str, ...]) -> ClassicallyControlledOperation:
218
220
  conditions = [protocols.with_key_path_prefix(c, prefix) for c in self._conditions]
219
221
  sub_operation = protocols.with_key_path_prefix(self._sub_operation, prefix)
220
222
  sub_operation = self._sub_operation if sub_operation is NotImplemented else sub_operation
221
- return sub_operation.with_classical_controls(*conditions)
223
+ return cast(
224
+ ClassicallyControlledOperation, sub_operation.with_classical_controls(*conditions)
225
+ )
222
226
 
223
227
  def _with_rescoped_keys_(
224
228
  self, path: tuple[str, ...], bindable_keys: frozenset[cirq.MeasurementKey]
@@ -779,7 +779,6 @@ def test_simulate_moment_steps_qudits(dtype: type[np.complexfloating], split: bo
779
779
  def test_simulate_moment_steps_empty_circuit(dtype: type[np.complexfloating], split: bool):
780
780
  circuit = cirq.Circuit()
781
781
  simulator = cirq.DensityMatrixSimulator(dtype=dtype, split_untangled_states=split)
782
- step = None
783
782
  for step in simulator.simulate_moment_steps(circuit):
784
783
  pass
785
784
  assert np.allclose(step.density_matrix(), np.array([[1]]))
@@ -227,9 +227,10 @@ class SimulatorBase(
227
227
  if self._can_be_in_run_prefix(self.noise)
228
228
  else (resolved_circuit[0:0], resolved_circuit)
229
229
  )
230
- step_result = None
230
+ step_result: TStepResultBase | None = None
231
231
  for step_result in self._core_iterator(circuit=prefix, sim_state=sim_state):
232
232
  pass
233
+ assert step_result is not None
233
234
 
234
235
  general_ops = list(general_suffix.all_operations())
235
236
  if all(isinstance(op.gate, ops.MeasurementGate) for op in general_ops):
@@ -310,9 +311,10 @@ class SimulatorBase(
310
311
  if self._can_be_in_run_prefix(self.noise)
311
312
  else (program[0:0], program)
312
313
  )
313
- step_result = None
314
+ step_result: TStepResultBase | None = None
314
315
  for step_result in self._core_iterator(circuit=prefix, sim_state=sim_state):
315
316
  pass
317
+ assert step_result is not None
316
318
  sim_state = step_result._sim_state
317
319
  yield from super().simulate_sweep_iter(suffix, params, qubit_order, sim_state)
318
320
 
@@ -573,7 +573,6 @@ def test_simulate_moment_steps(dtype: type[np.complexfloating], split: bool):
573
573
  def test_simulate_moment_steps_empty_circuit(dtype: type[np.complexfloating], split: bool):
574
574
  circuit = cirq.Circuit()
575
575
  simulator = cirq.Simulator(dtype=dtype, split_untangled_states=split)
576
- step = None
577
576
  for step in simulator.simulate_moment_steps(circuit):
578
577
  pass
579
578
  assert np.allclose(step.state_vector(copy=True), np.array([1]))
@@ -19,6 +19,7 @@ from __future__ import annotations
19
19
  from typing import Sequence
20
20
 
21
21
  import numpy as np
22
+ import scipy.linalg
22
23
 
23
24
  import cirq
24
25
  from cirq import ops, transformers as opt
@@ -47,24 +48,13 @@ def three_qubit_matrix_to_operations(
47
48
 
48
49
  Raises:
49
50
  ValueError: If the u matrix is non-unitary or not of shape (8,8).
50
- ImportError: If the decomposition cannot be done because the SciPy version is less than
51
- 1.5.0 and so does not contain the required `cossin` method.
52
51
  """
53
52
  if np.shape(u) != (8, 8):
54
53
  raise ValueError(f"Expected unitary matrix with shape (8,8) got {np.shape(u)}")
55
54
  if not cirq.is_unitary(u, atol=atol):
56
55
  raise ValueError(f"Matrix is not unitary: {u}")
57
56
 
58
- try:
59
- from scipy.linalg import cossin
60
- except ImportError: # pragma: no cover
61
- raise ImportError(
62
- "cirq.three_qubit_unitary_to_operations requires "
63
- "SciPy 1.5.0+, as it uses the cossin function. Please"
64
- " upgrade scipy in your environment to use this "
65
- "function!"
66
- )
67
- (u1, u2), theta, (v1h, v2h) = cossin(u, 4, 4, separate=True)
57
+ (u1, u2), theta, (v1h, v2h) = scipy.linalg.cossin(u, 4, 4, separate=True)
68
58
 
69
59
  cs_ops = _cs_to_ops(q0, q1, q2, theta)
70
60
  if len(cs_ops) > 0 and cs_ops[-1] == cirq.CZ(q2, q0):
@@ -15,7 +15,6 @@
15
15
  from __future__ import annotations
16
16
 
17
17
  from random import random
18
- from typing import Callable
19
18
 
20
19
  import numpy as np
21
20
  import pytest
@@ -31,20 +30,6 @@ from cirq.transformers.analytical_decompositions.three_qubit_decomposition impor
31
30
  )
32
31
 
33
32
 
34
- def _skip_if_scipy(*, version_is_greater_than_1_5_0: bool) -> Callable[[Callable], Callable]:
35
- def decorator(func): # pragma: no cover
36
- try:
37
- # pylint: disable=unused-import
38
- from scipy.linalg import cossin
39
-
40
- return None if version_is_greater_than_1_5_0 else func
41
- except ImportError:
42
- return func if version_is_greater_than_1_5_0 else None
43
-
44
- return decorator
45
-
46
-
47
- @_skip_if_scipy(version_is_greater_than_1_5_0=False)
48
33
  @pytest.mark.parametrize(
49
34
  "u",
50
35
  [
@@ -70,7 +55,6 @@ def test_three_qubit_matrix_to_operations(u) -> None:
70
55
  assert num_two_qubit_gates <= 20, f"expected at most 20 CZ/CNOTs got {num_two_qubit_gates}"
71
56
 
72
57
 
73
- @_skip_if_scipy(version_is_greater_than_1_5_0=False)
74
58
  def test_three_qubit_matrix_to_operations_errors() -> None:
75
59
  a, b, c = cirq.LineQubit.range(3)
76
60
  with pytest.raises(ValueError, match="(8,8)"):
@@ -79,17 +63,6 @@ def test_three_qubit_matrix_to_operations_errors() -> None:
79
63
  cirq.three_qubit_matrix_to_operations(a, b, c, cirq.unitary(cirq.CCX) * 2)
80
64
 
81
65
 
82
- # on environments with scipy <1.5.0 this will not be sufficient to cover the
83
- # full three_qubit_matrix_to_operations method. In case we ever introduce a CI
84
- # environment like that, we'll need to ignore the coverage somehow conditionally on
85
- # the scipy version.
86
- @_skip_if_scipy(version_is_greater_than_1_5_0=True)
87
- def test_three_qubit_matrix_to_operations_scipy_error() -> None: # pragma: no cover
88
- a, b, c = cirq.LineQubit.range(3)
89
- with pytest.raises(ImportError, match="three_qubit.*1.5.0+"):
90
- cirq.three_qubit_matrix_to_operations(a, b, c, np.eye(8))
91
-
92
-
93
66
  @pytest.mark.parametrize(
94
67
  ["theta", "num_czs"],
95
68
  [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250603050456
3
+ Version: 1.6.0.dev20250604225156
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
1
  cirq/__init__.py,sha256=ATT0Sbu4iemRSpJ0xGabMJJ85kEeGJZ0TPirye6BWwM,28336
2
- cirq/_compat.py,sha256=CC1SwZPVT37jGOejTB242MOAtOXSEft7iS9_clTEonM,29510
2
+ cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
3
3
  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=78xe0KskyQBKGF7SdclYCQNfwHm5xU9DRDkDbGgzbCg,1206
8
- cirq/_version_test.py,sha256=z6A4nRkeOqSg_HDU-EvEIM-u3rYiiHtC3_btcRvdQWA,155
7
+ cirq/_version.py,sha256=Q81TJh_YuirWr_dGNnYaGaDTUo6HJrU80uM82s_UgYE,1206
8
+ cirq/_version_test.py,sha256=SBpoHgOY51D6IB6zXFZsD2TSX58jxqpKpQIViH5J66A,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
@@ -120,7 +120,7 @@ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=IEuq2rQMU9x_NcU8MS9uRc5o-E_BoeJPo8i
120
120
  cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
121
121
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=Q6SqGhxvs2JVYvmT0S4tSNxB-DBUE7bHkrhqUb1cLNo,6125
122
122
  cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
123
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=BTNd23yvkuXrZv21JVMdr9VHLpjy2OEFDTbjpl8FGlA,19418
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=BEWtmHJaqcMxczgTwj-q90cfOYQbaxi4DDyMpeTpG1w,19444
124
124
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=NvqrJaw0Nok2Z_71eKQQQ_xoazxIPWim8NZ14iS5CpE,12436
125
125
  cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
126
126
  cirq/contrib/quimb/density_matrix.py,sha256=Ja0iBv9pPGad0Y5_9R0QZFTOOSAnU6-BuewLcO6JiVQ,8606
@@ -189,7 +189,7 @@ cirq/experiments/purity_estimation.py,sha256=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWW
189
189
  cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
190
190
  cirq/experiments/qubit_characterizations.py,sha256=1ly0iYWcXVxOicsZehIOukHZQtqtNrlad44MIDdJdXU,36617
191
191
  cirq/experiments/qubit_characterizations_test.py,sha256=A0_BjQnjeOxXlR2kC7gEwtmssTnv8kR0ljAQA4hOGoQ,9752
192
- cirq/experiments/random_quantum_circuit_generation.py,sha256=EOjmyta3rNQ9af7PhRhdYFpDdqseXPW8cMDwvkdLfVM,28056
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
194
  cirq/experiments/readout_confusion_matrix.py,sha256=ro3miCMr8K-EDW918PHKL_QcqrDUT-_uTXUvJ1PPzEI,20666
195
195
  cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
@@ -203,7 +203,7 @@ cirq/experiments/two_qubit_xeb.py,sha256=JKv6B5iH3HXhiJQ4qG2BldVzWu1kinZNHpxJeZd
203
203
  cirq/experiments/two_qubit_xeb_test.py,sha256=MSwdIOcfFy9d-GZUzz4f-2_gblleR89dPIyC8pt_AsQ,10689
204
204
  cirq/experiments/xeb_fitting.py,sha256=SaiamG0gc36bC6ilecZwJou-taEh3REWJAwg5F47DEA,30306
205
205
  cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
206
- cirq/experiments/xeb_sampling.py,sha256=WfkeAWKIaLL4ArUQc0kxJdARYB-co_ZSk3ro7kca89c,14901
206
+ cirq/experiments/xeb_sampling.py,sha256=CkWJUqRPuHmnqUdVJl9j5X22iI-fP__t8hhr3_N_5xg,14921
207
207
  cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
208
208
  cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vKnn5HU,5073
209
209
  cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
@@ -275,7 +275,7 @@ cirq/ops/arithmetic_operation.py,sha256=FO2ne5ZHIcUCJySgOC60UApfDtfVBaZqlrhM46f7
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
277
  cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
278
- cirq/ops/classically_controlled_operation.py,sha256=P3VG5GT991vQTHIkcvOZR3L-Ene0neUJL4I-CJqKrgA,10260
278
+ cirq/ops/classically_controlled_operation.py,sha256=hj8oShyWpOD4bmKS5CTmxNftywkCnHTFi28kku1clJM,10386
279
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
281
  cirq/ops/clifford_gate_test.py,sha256=63NR6oLpx9hn21-0b_YpYLk32GIsd_P0k0A_4EJxxAE,41313
@@ -923,7 +923,7 @@ cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b
923
923
  cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
924
924
  cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
925
925
  cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
926
- cirq/sim/density_matrix_simulator_test.py,sha256=cHYRvAKZLmWuAnkrPzVvwc5PubeB5yNeBa3xDXh6Lxc,61348
926
+ cirq/sim/density_matrix_simulator_test.py,sha256=Lf58HDWNcYDeQEGMDqTiL9foyxqDn5-l4-EsQ6xSlkA,61332
927
927
  cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
928
928
  cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
929
929
  cirq/sim/mux.py,sha256=w7sdSWFtmAEmHHn5nMH4H1qBCCp5oltlteH5vs3C_ik,12451
@@ -936,11 +936,11 @@ cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5J
936
936
  cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
937
937
  cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
938
938
  cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
939
- cirq/sim/simulator_base.py,sha256=F3qx41bjiixBnz-ML37frDXMLtw_SB8sTFCs6DBp708,18056
939
+ cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
940
940
  cirq/sim/simulator_base_test.py,sha256=agR_nrIS7hqY_Z_GRw_kXfYLW76LjJ6N2nW4SpM_lf4,14951
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
- cirq/sim/sparse_simulator_test.py,sha256=s-b1jSn1Eztt9e-f3SfGTOhhfKUlMC0LZSiUt1glmvM,53806
943
+ cirq/sim/sparse_simulator_test.py,sha256=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
944
944
  cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
945
945
  cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
946
946
  cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
@@ -1108,8 +1108,8 @@ cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha25
1108
1108
  cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=oh96QXddCm1v8CrYA5mEnnx_ENXwZi89W6paVZU273I,12344
1109
1109
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=CRZylmI8nA_aq6vXj0WmMce8PIe8OFCjq4_bqYfkenk,2464
1110
1110
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=0nHp7b_Uz-00eod1U6c8Lcx78zNes3hABWnPR_NuMo4,2554
1111
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=kajmUyhahfPpI_tToO0zPwhmnKOsNBITEGXRZ2g90lY,9733
1112
- cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=skyV4CwDVSHX619cuhE6uqZ_QLTlpejp2Rtnk4CdGzo,7939
1111
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=6IChilA5NB4X00MYumvbRUo757cLaIslXmtirJk7TxU,9252
1112
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=a21HU4BE82AG2UJU4hUVqymUU7Lw4CLw4-NChX4OpLI,6808
1113
1113
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=2bIpZOHBHxH2mdbJfDpo6nQgpitOI0ZmoH_5l_nA1nU,6167
1114
1114
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=c-vFBZnybd-Ez4rcs13THGGthzEZ0qw9Iw9sAKbE6yc,4494
1115
1115
  cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=XwDkm7l8DnRoKcQVgm2X64mmUS16iVDsMFV-35KYHfo,9305
@@ -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.dev20250603050456.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250603050456.dist-info/METADATA,sha256=ExQbZ3ppYOe-32REy0uxYdDVO99GyWlnWJJn7io4gDs,4857
1225
- cirq_core-1.6.0.dev20250603050456.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250603050456.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250603050456.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250604225156.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250604225156.dist-info/METADATA,sha256=isKq4xf4xSMPIGN8hxo3-qBKvP1RR4CIJfi2a7NjPE4,4857
1225
+ cirq_core-1.6.0.dev20250604225156.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250604225156.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250604225156.dist-info/RECORD,,