cirq-core 1.6.0.dev20250613205825__py3-none-any.whl → 1.6.0.dev20250614001105__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.

Files changed (41) hide show
  1. cirq/__init__.py +0 -7
  2. cirq/_compat_test.py +1 -5
  3. cirq/_version.py +1 -1
  4. cirq/_version_test.py +1 -1
  5. cirq/contrib/paulistring/clifford_target_gateset.py +1 -1
  6. cirq/experiments/__init__.py +0 -1
  7. cirq/json_resolver_cache.py +0 -2
  8. cirq/linalg/__init__.py +0 -2
  9. cirq/ops/classically_controlled_operation_test.py +0 -8
  10. cirq/ops/clifford_gate_test.py +0 -1
  11. cirq/ops/fsim_gate_test.py +0 -2
  12. cirq/ops/pauli_gates_test.py +0 -2
  13. cirq/ops/pauli_string_test.py +0 -4
  14. cirq/ops/raw_types_test.py +1 -4
  15. cirq/ops/state_preparation_channel_test.py +0 -1
  16. cirq/protocols/__init__.py +0 -3
  17. cirq/protocols/measurement_key_protocol_test.py +0 -1
  18. cirq/protocols/pow_protocol.py +0 -4
  19. cirq/qis/clifford_tableau_test.py +0 -2
  20. cirq/testing/__init__.py +0 -4
  21. cirq/testing/circuit_compare.py +0 -12
  22. cirq/testing/consistent_act_on.py +0 -2
  23. cirq/testing/consistent_decomposition.py +0 -2
  24. cirq/testing/consistent_protocols.py +1 -7
  25. cirq/testing/consistent_specified_has_unitary.py +0 -2
  26. cirq/testing/equivalent_repr_eval.py +1 -1
  27. cirq/testing/lin_alg_utils.py +0 -2
  28. cirq/transformers/__init__.py +0 -1
  29. cirq/transformers/analytical_decompositions/__init__.py +0 -3
  30. cirq/transformers/dynamical_decoupling_test.py +0 -2
  31. cirq/transformers/merge_k_qubit_gates_test.py +0 -1
  32. cirq/transformers/optimize_for_target_gateset_test.py +0 -1
  33. cirq/transformers/transformer_primitives_test.py +0 -10
  34. cirq/value/linear_dict_test.py +0 -2
  35. cirq/value/measurement_key_test.py +0 -1
  36. cirq/value/timestamp_test.py +0 -1
  37. {cirq_core-1.6.0.dev20250613205825.dist-info → cirq_core-1.6.0.dev20250614001105.dist-info}/METADATA +1 -1
  38. {cirq_core-1.6.0.dev20250613205825.dist-info → cirq_core-1.6.0.dev20250614001105.dist-info}/RECORD +41 -41
  39. {cirq_core-1.6.0.dev20250613205825.dist-info → cirq_core-1.6.0.dev20250614001105.dist-info}/WHEEL +0 -0
  40. {cirq_core-1.6.0.dev20250613205825.dist-info → cirq_core-1.6.0.dev20250614001105.dist-info}/licenses/LICENSE +0 -0
  41. {cirq_core-1.6.0.dev20250613205825.dist-info → cirq_core-1.6.0.dev20250614001105.dist-info}/top_level.txt +0 -0
cirq/__init__.py CHANGED
@@ -123,7 +123,6 @@ from cirq.interop import (
123
123
  )
124
124
 
125
125
  from cirq.linalg import (
126
- # pylint: disable=line-too-long
127
126
  all_near_zero as all_near_zero,
128
127
  all_near_zero_mod as all_near_zero_mod,
129
128
  allclose_up_to_global_phase as allclose_up_to_global_phase,
@@ -344,7 +343,6 @@ from cirq.ops import (
344
343
 
345
344
 
346
345
  from cirq.transformers import (
347
- # pylint: disable=line-too-long
348
346
  AbstractInitialMapper as AbstractInitialMapper,
349
347
  add_dynamical_decoupling as add_dynamical_decoupling,
350
348
  align_left as align_left,
@@ -572,7 +570,6 @@ from cirq.value import (
572
570
  ProductState as ProductState,
573
571
  )
574
572
 
575
- # pylint: disable=redefined-builtin
576
573
  from cirq.protocols import (
577
574
  act_on as act_on,
578
575
  apply_channel as apply_channel,
@@ -694,12 +691,10 @@ from cirq.work import (
694
691
  ZerosSampler as ZerosSampler,
695
692
  )
696
693
 
697
- # pylint: enable=redefined-builtin
698
694
 
699
695
  # Unflattened sub-modules.
700
696
 
701
697
  # Registers cirq-core's public classes for JSON serialization.
702
- # pylint: disable=wrong-import-position
703
698
  from cirq.protocols.json_serialization import _register_resolver
704
699
  from cirq.json_resolver_cache import _class_resolver_dictionary
705
700
 
@@ -709,5 +704,3 @@ _register_resolver(_class_resolver_dictionary)
709
704
  # contrib's json resolver cache depends on cirq.DEFAULT_RESOLVER
710
705
 
711
706
  from cirq import contrib # noqa: E402
712
-
713
- # pylint: enable=wrong-import-position
cirq/_compat_test.py CHANGED
@@ -394,13 +394,11 @@ def test_deprecated_class():
394
394
  OldClass('1')
395
395
 
396
396
  with pytest.raises(AssertionError, match='deadline should match vX.Y'):
397
- # pylint: disable=unused-variable
397
+
398
398
  @deprecated_class(deadline='invalid', fix='theFix', name='foo')
399
399
  class BadlyDeprecatedClass(NewClass): # pragma: no cover
400
400
  ...
401
401
 
402
- # pylint: enable=unused-variable
403
-
404
402
 
405
403
  def _from_parent_import_deprecated():
406
404
  from cirq.testing._compat_test_data import fake_a
@@ -566,7 +564,6 @@ def _import_top_level_deprecated():
566
564
  def _repeated_import_path():
567
565
  """to ensure that the highly unlikely repeated subpath import doesn't interfere"""
568
566
 
569
- # pylint: disable=line-too-long
570
567
  from cirq.testing._compat_test_data.repeated_child.cirq.testing._compat_test_data.repeated_child import ( # type: ignore # noqa: E501
571
568
  child,
572
569
  )
@@ -812,7 +809,6 @@ def _test_broken_module_1_inner():
812
809
  with pytest.raises(
813
810
  DeprecatedModuleImportError, match="missing_module cannot be imported. The typical reasons"
814
811
  ):
815
- # pylint: disable=unused-import
816
812
  import cirq.testing._compat_test_data.broken_ref as br # type: ignore # noqa: F401
817
813
 
818
814
 
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.dev20250613205825"
31
+ __version__ = "1.6.0.dev20250614001105"
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.dev20250613205825"
6
+ assert cirq.__version__ == "1.6.0.dev20250614001105"
@@ -79,7 +79,7 @@ class CliffordTargetGateset(transformers.TwoQubitCompilationTargetGateset):
79
79
  def __init__(
80
80
  self,
81
81
  *,
82
- single_qubit_target: SingleQubitTarget = SingleQubitTarget.PAULI_STRING_PHASORS_AND_CLIFFORDS, # pylint: disable=line-too-long # noqa: E501
82
+ single_qubit_target: SingleQubitTarget = SingleQubitTarget.PAULI_STRING_PHASORS_AND_CLIFFORDS, # noqa: E501
83
83
  atol: float = 1e-8,
84
84
  ):
85
85
  """Initializes CliffordTargetGateset
@@ -37,7 +37,6 @@ from cirq.experiments.purity_estimation import (
37
37
  )
38
38
 
39
39
  from cirq.experiments.random_quantum_circuit_generation import (
40
- # pylint: disable=line-too-long
41
40
  GRID_ALIGNED_PATTERN as GRID_ALIGNED_PATTERN,
42
41
  GRID_STAGGERED_PATTERN as GRID_STAGGERED_PATTERN,
43
42
  HALF_GRID_STAGGERED_PATTERN as HALF_GRID_STAGGERED_PATTERN,
@@ -237,9 +237,7 @@ def _class_resolver_dictionary() -> dict[str, ObjectFactory]:
237
237
  'VirtualTag': cirq.VirtualTag,
238
238
  'WaitGate': cirq.WaitGate,
239
239
  # The formatter keeps putting this back
240
- # pylint: disable=line-too-long
241
240
  'XEBPhasedFSimCharacterizationOptions': cirq.experiments.XEBPhasedFSimCharacterizationOptions, # noqa: E501
242
- # pylint: enable=line-too-long
243
241
  '_XEigenState': cirq.value.product_state._XEigenState,
244
242
  'XPowGate': cirq.XPowGate,
245
243
  'XXPowGate': cirq.XXPowGate,
cirq/linalg/__init__.py CHANGED
@@ -26,7 +26,6 @@ from cirq.linalg.combinators import (
26
26
  )
27
27
 
28
28
  from cirq.linalg.decompositions import (
29
- # pylint: disable=line-too-long
30
29
  axis_angle as axis_angle,
31
30
  AxisAngleDecomposition as AxisAngleDecomposition,
32
31
  deconstruct_single_qubit_matrix_into_angles as deconstruct_single_qubit_matrix_into_angles,
@@ -44,7 +43,6 @@ from cirq.linalg.decompositions import (
44
43
  )
45
44
 
46
45
  from cirq.linalg.diagonalize import (
47
- # pylint: disable=line-too-long
48
46
  bidiagonalize_real_matrix_pair_with_symmetric_products as bidiagonalize_real_matrix_pair_with_symmetric_products, # noqa: E501
49
47
  bidiagonalize_unitary_with_special_orthogonals as bidiagonalize_unitary_with_special_orthogonals, # noqa: E501
50
48
  diagonalize_real_symmetric_and_sorted_diagonal_matrices as diagonalize_real_symmetric_and_sorted_diagonal_matrices, # noqa: E501
@@ -505,7 +505,6 @@ def test_scope_local() -> None:
505
505
  assert internal_control_keys == ['0:0:a', '0:1:a', '1:0:a', '1:1:a']
506
506
  assert not cirq.control_keys(outer_subcircuit)
507
507
  assert not cirq.control_keys(circuit)
508
- # pylint: disable=line-too-long
509
508
  cirq.testing.assert_has_diagram(
510
509
  cirq.Circuit(outer_subcircuit),
511
510
  """
@@ -515,7 +514,6 @@ def test_scope_local() -> None:
515
514
  """, # noqa: E501
516
515
  use_unicode_characters=True,
517
516
  )
518
- # pylint: enable=line-too-long
519
517
  cirq.testing.assert_has_diagram(
520
518
  circuit,
521
519
  """
@@ -659,7 +657,6 @@ def test_scope_extern() -> None:
659
657
  assert internal_control_keys == ['0:b', '0:b', '1:b', '1:b']
660
658
  assert not cirq.control_keys(outer_subcircuit)
661
659
  assert not cirq.control_keys(circuit)
662
- # pylint: disable=line-too-long
663
660
  cirq.testing.assert_has_diagram(
664
661
  cirq.Circuit(outer_subcircuit),
665
662
  """
@@ -671,7 +668,6 @@ def test_scope_extern() -> None:
671
668
  """, # noqa: E501
672
669
  use_unicode_characters=True,
673
670
  )
674
- # pylint: enable=line-too-long
675
671
  cirq.testing.assert_has_diagram(
676
672
  circuit,
677
673
  """
@@ -780,7 +776,6 @@ def test_scope_extern_mismatch() -> None:
780
776
  assert internal_control_keys == ['b', 'b', 'b', 'b']
781
777
  assert cirq.control_keys(outer_subcircuit) == {cirq.MeasurementKey('b')}
782
778
  assert cirq.control_keys(circuit) == {cirq.MeasurementKey('b')}
783
- # pylint: disable=line-too-long
784
779
  cirq.testing.assert_has_diagram(
785
780
  cirq.Circuit(outer_subcircuit),
786
781
  """
@@ -794,7 +789,6 @@ b: ═══╩═════════════════════
794
789
  """, # noqa: E501
795
790
  use_unicode_characters=True,
796
791
  )
797
- # pylint: enable=line-too-long
798
792
  cirq.testing.assert_has_diagram(
799
793
  circuit,
800
794
  """
@@ -984,7 +978,6 @@ d: ═══╩═════════════════════
984
978
  use_unicode_characters=True,
985
979
  )
986
980
 
987
- # pylint: disable=line-too-long
988
981
  cirq.testing.assert_has_diagram(
989
982
  circuit,
990
983
  """
@@ -1000,7 +993,6 @@ d: ══════════════════════^═══
1000
993
  """, # noqa: E501
1001
994
  use_unicode_characters=True,
1002
995
  )
1003
- # pylint: enable=line-too-long
1004
996
 
1005
997
 
1006
998
  def test_sympy_scope_simulation() -> None:
@@ -125,7 +125,6 @@ def test_init_from_double_invalid(trans1, from1) -> None:
125
125
  @pytest.mark.parametrize('trans,frm', itertools.product(_all_rotations(), _paulis))
126
126
  def test_init_from_single_map_vs_kwargs(trans, frm) -> None:
127
127
  from_str = str(frm).lower() + '_to'
128
- # pylint: disable=unexpected-keyword-arg
129
128
  gate_kw = cirq.SingleQubitCliffordGate.from_single_map(**{from_str: trans})
130
129
  gate_map = cirq.SingleQubitCliffordGate.from_single_map({frm: trans})
131
130
  assert gate_kw == gate_map
@@ -490,7 +490,6 @@ def test_phased_fsim_circuit() -> None:
490
490
  1: ───PhFSim(0.5π, -π, 0.5π, 0, -0.25π)───PhFSim(-π, 0.5π, 0.1π, 0.2π, 0.3π)───
491
491
  """,
492
492
  )
493
- # pylint: disable=line-too-long
494
493
  cirq.testing.assert_has_diagram(
495
494
  c,
496
495
  """
@@ -510,7 +509,6 @@ def test_phased_fsim_circuit() -> None:
510
509
  use_unicode_characters=False,
511
510
  precision=None,
512
511
  )
513
- # pylint: enable=line-too-long
514
512
  c = cirq.Circuit(
515
513
  cirq.PhasedFSimGate(
516
514
  sympy.Symbol('a') + sympy.Symbol('b'),
@@ -116,7 +116,6 @@ def test_relative_index_consistency() -> None:
116
116
 
117
117
 
118
118
  def test_gt() -> None:
119
- # pylint: disable=unnecessary-negation
120
119
  assert not cirq.X > cirq.X
121
120
  assert not cirq.X > cirq.Y
122
121
  assert cirq.X > cirq.Z
@@ -134,7 +133,6 @@ def test_gt_other_type() -> None:
134
133
 
135
134
 
136
135
  def test_lt() -> None:
137
- # pylint: disable=unnecessary-negation
138
136
  assert not cirq.X < cirq.X
139
137
  assert cirq.X < cirq.Y
140
138
  assert not cirq.X < cirq.Z
@@ -1546,7 +1546,6 @@ def test_pretty_print():
1546
1546
  assert p.text_pretty == 'cirq.PauliString(...)'
1547
1547
 
1548
1548
 
1549
- # pylint: disable=line-too-long
1550
1549
  def test_circuit_diagram_info():
1551
1550
  a, b, c = cirq.LineQubit.range(3)
1552
1551
 
@@ -1571,9 +1570,6 @@ def test_circuit_diagram_info():
1571
1570
  )
1572
1571
 
1573
1572
 
1574
- # pylint: enable=line-too-long
1575
-
1576
-
1577
1573
  def test_mutable_pauli_string_init_raises():
1578
1574
  q = cirq.LineQubit.range(3)
1579
1575
  with pytest.raises(ValueError, match='must be between 1 and 3'):
@@ -79,7 +79,6 @@ def test_wrapped_qid() -> None:
79
79
  'dimension': 3,
80
80
  }
81
81
 
82
- # pylint: disable=unnecessary-negation
83
82
  assert not ValidQubit('zz') == 4 # noqa: SIM201
84
83
  assert ValidQubit('zz') != 4
85
84
  assert ValidQubit('zz') > ValidQubit('aa')
@@ -786,9 +785,7 @@ def test_inverse_composite_standards() -> None:
786
785
  def _is_parameterized_(self) -> bool:
787
786
  return cirq.is_parameterized(self._param)
788
787
 
789
- def _resolve_parameters_(
790
- self, resolver: cirq.ParamResolver, recursive: bool
791
- ) -> Gate: # pylint: disable=undefined-variable
788
+ def _resolve_parameters_(self, resolver: cirq.ParamResolver, recursive: bool) -> Gate:
792
789
  return Gate(cirq.resolve_parameters(self._param, resolver, recursive))
793
790
 
794
791
  def __repr__(self):
@@ -124,7 +124,6 @@ def test_gate_error_handling() -> None:
124
124
 
125
125
 
126
126
  def test_equality_of_gates() -> None:
127
- # pylint: disable=unnecessary-negation
128
127
  state = np.array([1, 0, 0, 0], dtype=np.complex64)
129
128
  gate_1 = cirq.StatePreparationChannel(state)
130
129
  gate_2 = cirq.StatePreparationChannel(state)
@@ -139,11 +139,8 @@ from cirq.protocols.pauli_expansion_protocol import (
139
139
  SupportsPauliExpansion as SupportsPauliExpansion,
140
140
  )
141
141
 
142
- # pylint: disable=redefined-builtin
143
142
  from cirq.protocols.pow_protocol import pow as pow
144
143
 
145
- # pylint: enable=redefined-builtin
146
-
147
144
  from cirq.protocols.qasm import (
148
145
  qasm as qasm,
149
146
  QasmArgs as QasmArgs,
@@ -101,7 +101,6 @@ def test_is_measurement() -> None:
101
101
  assert not cirq.is_measurement(cirq.bit_flip(1))
102
102
 
103
103
  class NotImplementedOperation(cirq.Operation):
104
- # pylint: disable=undefined-variable
105
104
  def with_qubits(self, *new_qubits) -> NotImplementedOperation:
106
105
  raise NotImplementedError()
107
106
 
@@ -28,7 +28,6 @@ RaiseTypeErrorIfNotProvided: Any = ([],)
28
28
  TDefault = TypeVar('TDefault')
29
29
 
30
30
 
31
- # pylint: disable=redefined-builtin
32
31
  @overload
33
32
  def pow(val: cirq.Gate, exponent: Any) -> cirq.Gate:
34
33
  pass
@@ -59,9 +58,6 @@ def pow(val: Any, exponent: Any, default: TDefault) -> Any:
59
58
  pass
60
59
 
61
60
 
62
- # pylint: enable=redefined-builtin
63
-
64
-
65
61
  def pow(val: Any, exponent: Any, default: Any = RaiseTypeErrorIfNotProvided) -> Any:
66
62
  """Returns `val**factor` of the given value, if defined.
67
63
 
@@ -440,9 +440,7 @@ def test_tableau_matmul():
440
440
  assert expected_t != t1 @ t2
441
441
 
442
442
  with pytest.raises(TypeError):
443
- # pylint: disable=pointless-statement
444
443
  t1 @ 21
445
- # pylint: enable=pointless-statement
446
444
 
447
445
 
448
446
  def test_tableau_then_with_bad_input():
cirq/testing/__init__.py CHANGED
@@ -15,7 +15,6 @@
15
15
  """Utilities for testing code."""
16
16
 
17
17
  from cirq.testing.circuit_compare import (
18
- # pylint: disable=line-too-long
19
18
  assert_circuits_with_terminal_measurements_are_equivalent as assert_circuits_with_terminal_measurements_are_equivalent, # noqa: E501
20
19
  assert_circuits_have_same_unitary_given_final_permutation as assert_circuits_have_same_unitary_given_final_permutation, # noqa: E501
21
20
  assert_has_consistent_apply_channel as assert_has_consistent_apply_channel,
@@ -28,7 +27,6 @@ from cirq.testing.circuit_compare import (
28
27
  )
29
28
 
30
29
  from cirq.testing.consistent_act_on import (
31
- # pylint: disable=line-too-long
32
30
  assert_all_implemented_act_on_effects_match_unitary as assert_all_implemented_act_on_effects_match_unitary, # noqa: E501
33
31
  )
34
32
 
@@ -48,7 +46,6 @@ from cirq.testing.consistent_decomposition import (
48
46
  )
49
47
 
50
48
  from cirq.testing.consistent_pauli_expansion import (
51
- # pylint: disable=line-too-long
52
49
  assert_pauli_expansion_is_consistent_with_unitary as assert_pauli_expansion_is_consistent_with_unitary, # noqa: E501
53
50
  )
54
51
 
@@ -57,7 +54,6 @@ from cirq.testing.consistent_phase_by import (
57
54
  )
58
55
 
59
56
  from cirq.testing.consistent_protocols import (
60
- # pylint: disable=line-too-long
61
57
  assert_eigengate_implements_consistent_protocols as assert_eigengate_implements_consistent_protocols, # noqa: E501
62
58
  assert_has_consistent_trace_distance_bound as assert_has_consistent_trace_distance_bound,
63
59
  assert_implements_consistent_protocols as assert_implements_consistent_protocols,
@@ -117,9 +117,7 @@ def assert_circuits_with_terminal_measurements_are_equivalent(
117
117
  reference: A circuit with the correct function.
118
118
  atol: Absolute error tolerance.
119
119
  """
120
- # pylint: disable=unused-variable
121
120
  __tracebackhide__ = True
122
- # pylint: enable=unused-variable
123
121
 
124
122
  measured_qubits_actual = {
125
123
  qubit
@@ -267,9 +265,7 @@ def assert_has_diagram(
267
265
  beginning and whitespace at the end are ignored.
268
266
  **kwargs: Keyword arguments to be passed to actual.to_text_diagram().
269
267
  """
270
- # pylint: disable=unused-variable
271
268
  __tracebackhide__ = True
272
- # pylint: enable=unused-variable
273
269
  actual_diagram = actual.to_text_diagram(**kwargs).lstrip("\n").rstrip()
274
270
  desired_diagram = desired.lstrip("\n").rstrip()
275
271
 
@@ -297,9 +293,7 @@ def assert_has_consistent_apply_unitary(val: Any, *, atol: float = 1e-8) -> None
297
293
  val: The value under test. Should have a `__pow__` method.
298
294
  atol: Absolute error tolerance.
299
295
  """
300
- # pylint: disable=unused-variable
301
296
  __tracebackhide__ = True
302
- # pylint: enable=unused-variable
303
297
 
304
298
  _assert_apply_unitary_works_when_axes_transposed(val, atol=atol)
305
299
 
@@ -341,9 +335,7 @@ def assert_has_consistent_apply_channel(val: Any, *, atol: float = 1e-8) -> None
341
335
  val: The value under test. Should have a `__pow__` method.
342
336
  atol: Absolute error tolerance.
343
337
  """
344
- # pylint: disable=unused-variable
345
338
  __tracebackhide__ = True
346
- # pylint: enable=unused-variable
347
339
 
348
340
  kraus = protocols.kraus(val, default=None)
349
341
  expected = qis.kraus_to_superoperator(kraus) if kraus is not None else None
@@ -463,9 +455,7 @@ def assert_has_consistent_apply_unitary_for_various_exponents(
463
455
  the value's `__pow__` returns `NotImplemented` for any of these,
464
456
  they are skipped.
465
457
  """
466
- # pylint: disable=unused-variable
467
458
  __tracebackhide__ = True
468
- # pylint: enable=unused-variable
469
459
 
470
460
  for exponent in exponents:
471
461
  gate = protocols.pow(val, exponent, default=None)
@@ -485,9 +475,7 @@ def assert_has_consistent_qid_shape(val: Any) -> None:
485
475
  val: The value under test. Should have `_qid_shape_` and/or
486
476
  `num_qubits_` methods. Can optionally have a `qubits` property.
487
477
  """
488
- # pylint: disable=unused-variable
489
478
  __tracebackhide__ = True
490
- # pylint: enable=unused-variable
491
479
  default = (-1,)
492
480
  qid_shape = protocols.qid_shape(val, default)
493
481
  num_qubits = protocols.num_qubits(val, default)
@@ -85,9 +85,7 @@ def assert_all_implemented_act_on_effects_match_unitary(
85
85
  val and StabilizerChFormSimulationState inputs.
86
86
  """
87
87
 
88
- # pylint: disable=unused-variable
89
88
  __tracebackhide__ = True
90
- # pylint: enable=unused-variable
91
89
 
92
90
  num_qubits_val = protocols.num_qubits(val)
93
91
 
@@ -24,9 +24,7 @@ from cirq.testing import lin_alg_utils
24
24
 
25
25
  def assert_decompose_is_consistent_with_unitary(val: Any, ignoring_global_phase: bool = False):
26
26
  """Uses `val._unitary_` to check `val._phase_by_`'s behavior."""
27
- # pylint: disable=unused-variable
28
27
  __tracebackhide__ = True
29
- # pylint: enable=unused-variable
30
28
 
31
29
  expected = protocols.unitary(val, None)
32
30
  if expected is None:
@@ -96,9 +96,7 @@ def assert_eigengate_implements_consistent_protocols(
96
96
  ) -> None:
97
97
  """Checks that an EigenGate subclass is internally consistent and has a
98
98
  good __repr__."""
99
- # pylint: disable=unused-variable
100
99
  __tracebackhide__ = True
101
- # pylint: enable=unused-variable
102
100
 
103
101
  for exponent in exponents:
104
102
  for shift in global_shifts:
@@ -113,9 +111,7 @@ def assert_eigengate_implements_consistent_protocols(
113
111
 
114
112
 
115
113
  def assert_eigen_shifts_is_consistent_with_eigen_components(val: ops.EigenGate) -> None:
116
- # pylint: disable=unused-variable
117
114
  __tracebackhide__ = True
118
- # pylint: enable=unused-variable
119
115
  if not protocols.is_parameterized(val):
120
116
  assert val._eigen_shifts() == [
121
117
  e[0] for e in val._eigen_components()
@@ -123,9 +119,7 @@ def assert_eigen_shifts_is_consistent_with_eigen_components(val: ops.EigenGate)
123
119
 
124
120
 
125
121
  def assert_has_consistent_trace_distance_bound(val: Any) -> None:
126
- # pylint: disable=unused-variable
127
122
  __tracebackhide__ = True
128
- # pylint: enable=unused-variable
129
123
  u = protocols.unitary(val, default=None)
130
124
  val_from_trace = protocols.trace_distance_bound(val)
131
125
  assert 0.0 <= val_from_trace <= 1.0
@@ -149,7 +143,7 @@ def _assert_meets_standards_helper(
149
143
  local_vals: dict[str, Any] | None,
150
144
  ignore_decompose_to_default_gateset: bool,
151
145
  ) -> None:
152
- __tracebackhide__ = True # pylint: disable=unused-variable
146
+ __tracebackhide__ = True
153
147
 
154
148
  assert_consistent_resolve_parameters(val)
155
149
  assert_specifies_has_unitary_if_unitary(val)
@@ -22,9 +22,7 @@ from cirq import protocols
22
22
  def assert_specifies_has_unitary_if_unitary(val: Any) -> None:
23
23
  """Checks that unitary values can be cheaply identifies as unitary."""
24
24
 
25
- # pylint: disable=unused-variable
26
25
  __tracebackhide__ = True
27
- # pylint: enable=unused-variable
28
26
 
29
27
  assert not protocols.has_unitary(val) or hasattr(val, '_has_unitary_'), (
30
28
  "Value is unitary but doesn't specify a _has_unitary_ method that "
@@ -41,7 +41,7 @@ def assert_equivalent_repr(
41
41
  Raises:
42
42
  AssertionError: If the assertion fails, or eval(repr(value)) raises an error.
43
43
  """
44
- __tracebackhide__ = True # pylint: disable=unused-variable
44
+ __tracebackhide__ = True
45
45
 
46
46
  global_vals = global_vals or {}
47
47
  local_vals = local_vals or {}
@@ -186,9 +186,7 @@ def assert_allclose_up_to_global_phase(
186
186
  Raises:
187
187
  AssertionError: The matrices aren't nearly equal up to global phase.
188
188
  """
189
- # pylint: disable=unused-variable
190
189
  __tracebackhide__ = True
191
- # pylint: enable=unused-variable
192
190
 
193
191
  actual, desired = linalg.match_global_phase(actual, desired)
194
192
  np.testing.assert_allclose(
@@ -15,7 +15,6 @@
15
15
  """Classes and methods for transforming circuits."""
16
16
 
17
17
  from cirq.transformers.analytical_decompositions import (
18
- # pylint: disable=line-too-long
19
18
  compute_cphase_exponents_for_fsim_decomposition as compute_cphase_exponents_for_fsim_decomposition, # noqa: E501
20
19
  decompose_cphase_into_two_fsim as decompose_cphase_into_two_fsim,
21
20
  decompose_clifford_tableau_to_operations as decompose_clifford_tableau_to_operations,
@@ -24,7 +24,6 @@ from cirq.transformers.analytical_decompositions.controlled_gate_decomposition i
24
24
  )
25
25
 
26
26
  from cirq.transformers.analytical_decompositions.cphase_to_fsim import (
27
- # pylint: disable=line-too-long
28
27
  compute_cphase_exponents_for_fsim_decomposition as compute_cphase_exponents_for_fsim_decomposition, # noqa: E501
29
28
  decompose_cphase_into_two_fsim as decompose_cphase_into_two_fsim,
30
29
  )
@@ -47,13 +46,11 @@ from cirq.transformers.analytical_decompositions.three_qubit_decomposition impor
47
46
  )
48
47
 
49
48
  from cirq.transformers.analytical_decompositions.two_qubit_to_cz import (
50
- # pylint: disable=line-too-long
51
49
  two_qubit_matrix_to_cz_operations as two_qubit_matrix_to_cz_operations,
52
50
  two_qubit_matrix_to_diagonal_and_cz_operations as two_qubit_matrix_to_diagonal_and_cz_operations, # noqa: E501
53
51
  )
54
52
 
55
53
  from cirq.transformers.analytical_decompositions.two_qubit_to_fsim import (
56
- # pylint: disable=line-too-long
57
54
  decompose_two_qubit_interaction_into_four_fsim_gates as decompose_two_qubit_interaction_into_four_fsim_gates, # noqa: E501
58
55
  )
59
56
 
@@ -698,7 +698,6 @@ def test_with_non_clifford_measurements():
698
698
 
699
699
 
700
700
  def test_cross_clifford_pieces_filling_merge():
701
- # pylint: disable=line-too-long
702
701
  """Test case diagrams.
703
702
  Input:
704
703
  0: ─────────────────────────────────PhXZ(a=0.2,x=0.2,z=0.1)───@─────────────────────────PhXZ(a=0.2,x=0.2,z=0.1)───@───PhXZ(a=0.2,x=0.2,z=0.1)───H───
@@ -730,7 +729,6 @@ def test_cross_clifford_pieces_filling_merge():
730
729
 
731
730
  6: ───────────────────────────────────────────────────────────PhXZ(a=0.2,x=0.2,z=0.1)───X─────────────────────────@───PhXZ(a=0.8,x=0.8,z=0.5)─────H────────────────────────
732
731
  """ # noqa: E501
733
- # pylint: enable=line-too-long
734
732
  qubits = cirq.LineQubit.range(7)
735
733
  phased_xz_gate = cirq.PhasedXZGate(axis_phase_exponent=0.2, x_exponent=0.2, z_exponent=0.1)
736
734
  assert_dd(
@@ -100,7 +100,6 @@ def test_merge_k_qubit_unitaries_raises() -> None:
100
100
 
101
101
 
102
102
  def test_merge_complex_circuit_preserving_moment_structure() -> None:
103
- # pylint: disable=line-too-long
104
103
  q = cirq.LineQubit.range(3)
105
104
  c_orig = cirq.Circuit(
106
105
  cirq.Moment(cirq.H.on_each(*q)),
@@ -41,7 +41,6 @@ def test_decompose_operations_raises_on_stuck():
41
41
  cirq.testing.assert_same_circuits(c_orig, c_new)
42
42
 
43
43
 
44
- # pylint: disable=line-too-long
45
44
  def test_decompose_operations_to_target_gateset_default():
46
45
  q = cirq.LineQubit.range(2)
47
46
  c_orig = cirq.Circuit(
@@ -116,7 +116,6 @@ def test_map_operations_does_not_insert_too_many_moments():
116
116
  )
117
117
 
118
118
 
119
- # pylint: disable=line-too-long
120
119
  def test_map_operations_deep_subcircuits():
121
120
  q = cirq.LineQubit.range(5)
122
121
  c_orig = cirq.Circuit(cirq.CX(q[0], q[1]), cirq.CX(q[3], q[2]), cirq.CX(q[3], q[4]))
@@ -205,9 +204,6 @@ def test_map_operations_deep_subcircuits():
205
204
  )
206
205
 
207
206
 
208
- # pylint: enable=line-too-long
209
-
210
-
211
207
  @pytest.mark.parametrize("deep", [False, True])
212
208
  def test_map_operations_preserves_circuit_tags(deep: bool) -> None:
213
209
  tag = "should be preserved"
@@ -707,9 +703,6 @@ def test_merge_operations_deep():
707
703
  )
708
704
 
709
705
 
710
- # pylint: disable=line-too-long
711
-
712
-
713
706
  def test_merge_operations_to_circuit_op_merges_connected_component():
714
707
  c_orig = _create_circuit_to_merge()
715
708
  cirq.testing.assert_has_diagram(
@@ -777,9 +770,6 @@ def test_merge_2q_unitaries_to_circuit_op():
777
770
  )
778
771
 
779
772
 
780
- # pylint: enable=line-too-long
781
-
782
-
783
773
  def test_merge_operations_respects_tags_to_ignore():
784
774
  q = cirq.LineQubit.range(2)
785
775
  c = cirq.Circuit(
@@ -433,7 +433,6 @@ def test_bool(terms, bool_value):
433
433
  ),
434
434
  )
435
435
  def test_equal(terms_1, terms_2):
436
- # pylint: disable=unnecessary-negation
437
436
  linear_dict_1 = cirq.LinearDict(terms_1)
438
437
  linear_dict_2 = cirq.LinearDict(terms_2)
439
438
  assert linear_dict_1 == linear_dict_2
@@ -453,7 +452,6 @@ def test_equal(terms_1, terms_2):
453
452
  ),
454
453
  )
455
454
  def test_unequal(terms_1, terms_2):
456
- # pylint: disable=unnecessary-negation
457
455
  linear_dict_1 = cirq.LinearDict(terms_1)
458
456
  linear_dict_2 = cirq.LinearDict(terms_2)
459
457
  assert linear_dict_1 != linear_dict_2
@@ -103,7 +103,6 @@ def test_with_measurement_key_mapping():
103
103
 
104
104
 
105
105
  def test_compare():
106
- # pylint: disable=unnecessary-negation
107
106
  assert cirq.MeasurementKey('a') < cirq.MeasurementKey('b')
108
107
  assert cirq.MeasurementKey('a') <= cirq.MeasurementKey('b')
109
108
  assert cirq.MeasurementKey('a') <= cirq.MeasurementKey('a')
@@ -77,7 +77,6 @@ def test_cmp() -> None:
77
77
  assert (i >= j) == (a >= b)
78
78
  assert (i > j) == (a > b)
79
79
 
80
- # pylint: disable=unnecessary-negation
81
80
  assert not (Timestamp() == 0) # noqa: SIM201
82
81
  assert Timestamp() != 0
83
82
  assert not (Timestamp() == Duration()) # noqa: SIM201
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250613205825
3
+ Version: 1.6.0.dev20250614001105
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,13 +1,13 @@
1
- cirq/__init__.py,sha256=uHU23_4YZFW9_59mQYkfZv5k1WIWt4kv6cgu1hpn6J4,28442
1
+ cirq/__init__.py,sha256=wyFgv68HcbpDyWoZb4fuX2rVvK1N_ZolWosyoktPyXs,28219
2
2
  cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
3
- cirq/_compat_test.py,sha256=91D8tdb4GXJH6-GWYw0_YVX4b2l33Y-DBB6dgCi01gU,34059
3
+ 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=sIUSzsLYCyrOYbskg86ZnHDZCPENEjDdw-3dwmMKBiw,1206
8
- cirq/_version_test.py,sha256=QiBPCmdZjSDjnoMy2SxjkigBKP8oqHZkscoLS3Nkqfk,155
7
+ cirq/_version.py,sha256=OmpZhJ2sr7HU524c8rwX_LiiVH_7hItKdBHuk4cR1S0,1206
8
+ cirq/_version_test.py,sha256=ZVF2f7hffs77GUsr3dqRb3nrFRXQN-FV2ifSxTk6Xz8,155
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=-VwUUE3kCHemlG8F3aEW6Y6IgN-YsckjGME8jpSvJEA,13635
10
+ cirq/json_resolver_cache.py,sha256=hYyG53VJeV61X0oukK5ndZYega8lkL2FyaL1m0j6h5M,13556
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
13
  cirq/circuits/_block_diagram_drawer.py,sha256=OpIupxl6plGVaLkU13RqYGELAlHAIy56tV6qjg51Yws,9489
@@ -90,7 +90,7 @@ cirq/contrib/noise_models/noise_models_test.py,sha256=oA7HRMPDi9lv9Lqb8idF9C6Vqj
90
90
  cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
91
  cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
92
92
  cirq/contrib/paulistring/clifford_optimize_test.py,sha256=8FFLg9gb1HmHHMdXPa-vCr1zyxvgdlciRH8qyfTWQRw,3964
93
- cirq/contrib/paulistring/clifford_target_gateset.py,sha256=YvzjLPwU5fUIDbpaet0dO-PJZWADjh7AS0u-tjNpVHg,6344
93
+ cirq/contrib/paulistring/clifford_target_gateset.py,sha256=5QP4A1gC1rsTbWXB0L00ZuSGy2VZvYer63UyydCj1W0,6311
94
94
  cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
95
95
  cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
96
96
  cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55Azd0_rzsi_xnU,3618
@@ -180,7 +180,7 @@ cirq/devices/thermal_noise_model.py,sha256=LIGlA6ikYWqbh-759RqXPMDMpCV2uKHT_pRLf
180
180
  cirq/devices/thermal_noise_model_test.py,sha256=vgloNkmkNes_pn0D50-LD2RUcsMJey7EN8Wm6Nc-d5U,12282
181
181
  cirq/devices/unconstrained_device.py,sha256=wa94uVzaCPb1jmG3h6hSGJQggSuCvEK8wekkGXCOx_Q,1551
182
182
  cirq/devices/unconstrained_device_test.py,sha256=J8vABVWWywQuX6Jlo5Y0pWTh6VZRatdmjdBL6u0kZKk,1083
183
- cirq/experiments/__init__.py,sha256=-x6lZ_ccfyyr6jz9rYUMAjqLf-sZ86HR5IQPTkNT_1k,3681
183
+ cirq/experiments/__init__.py,sha256=Pl86-y9EoQuz8_XkzYGUcaiBJQKsWwVE4oG_sCORIb0,3645
184
184
  cirq/experiments/fidelity_estimation.py,sha256=2wq4gFZ6XYzk3NUGbyNn7EZT911XEHcZot1RD4825mc,9264
185
185
  cirq/experiments/fidelity_estimation_test.py,sha256=On0O1StB6Fo85xuK6BWo-zZWb2at-GqhAgpSrNRBn3I,4955
186
186
  cirq/experiments/n_qubit_tomography.py,sha256=16u0Tv14SyUM9WCk-ZxbBit9cl93MbZodGrj16XiBuo,8436
@@ -251,7 +251,7 @@ cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58bl
251
251
  cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
252
252
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
253
253
  cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
254
- cirq/linalg/__init__.py,sha256=Gzy5ZRQGAeLsGV-sDP3mK0Cs1_0MU-4753ng2Xwm-5g,4101
254
+ cirq/linalg/__init__.py,sha256=k3hZ6NMJN9b9ExgzkoHG4W2SFVEpYf8ZCSmIkOtRBOU,4029
255
255
  cirq/linalg/combinators.py,sha256=7V9oNSojc466NvOXyt4FMu50yDQ77iM5N4oZ37fV9tc,5347
256
256
  cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
257
257
  cirq/linalg/decompositions.py,sha256=gyQQ3iwuar22ZwOV3qV9nmc6LrPr-86NMlMNS8UMIjg,38537
@@ -276,9 +276,9 @@ cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_V
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
278
  cirq/ops/classically_controlled_operation.py,sha256=hj8oShyWpOD4bmKS5CTmxNftywkCnHTFi28kku1clJM,10386
279
- cirq/ops/classically_controlled_operation_test.py,sha256=PPEQuO-8JbkWGqSOeLhcHug_vnaQLM_zbpKFYAS_zec,50709
279
+ cirq/ops/classically_controlled_operation_test.py,sha256=OedFFoAwS4WnHKG58xgjhbKFgKebhYyP8I7AU4a0m9k,50425
280
280
  cirq/ops/clifford_gate.py,sha256=BMjCuJq2fTFZm-Sv475qDqwsFof1kxru8zNDJOTFkL8,40055
281
- cirq/ops/clifford_gate_test.py,sha256=63NR6oLpx9hn21-0b_YpYLk32GIsd_P0k0A_4EJxxAE,41313
281
+ cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
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
@@ -300,7 +300,7 @@ cirq/ops/eigen_gate_test.py,sha256=3ZN7texyQ_svk8YAaH3liZiGAgq_SBpNb46nIzKYfWM,1
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
303
- cirq/ops/fsim_gate_test.py,sha256=pVEJ0tfKPCr6-lMJdQjbNNhQMDAcC66XMSFFpnGJlxM,25929
303
+ cirq/ops/fsim_gate_test.py,sha256=QgckC2fij30grZJoO6HnQHdGkKcwtiegedEBRid3wF0,25858
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
@@ -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=EL2NG43h-hlnXcAy54Vz6JrTtUNcT_GY3aH_Hp1ZJsw,8420
337
+ cirq/ops/pauli_gates_test.py,sha256=YYzQBojxoZTM6WH7pD3PNwmQrIO6U7FTG6AaZ-6z-To,8334
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
@@ -344,7 +344,7 @@ cirq/ops/pauli_string_phasor.py,sha256=JLKZem7rdshQ0doNvFMJmP7cLhl9lCsHAI1QlOmbm
344
344
  cirq/ops/pauli_string_phasor_test.py,sha256=-1mB1WLEFlrKnSfcgR1LabTaeLYf2bvcJQdWxEImGH4,27767
345
345
  cirq/ops/pauli_string_raw_types.py,sha256=lXW-Fv2TTv77g_7VMdQun33y4reD4p7dS7g9Nm1Id20,2256
346
346
  cirq/ops/pauli_string_raw_types_test.py,sha256=jjFEbQxGsazsR8p4y-EK7SaTryRWagR9Hi7YuixXi6A,2684
347
- cirq/ops/pauli_string_test.py,sha256=B1rEr9oUldvQ3nx0J982ldswkc3LZFllzSRoUD_Rwms,73748
347
+ cirq/ops/pauli_string_test.py,sha256=8XuWR-GMf5_evWpqwDPWLaJ_kI8V_Vvf-p-1DLNigiI,73683
348
348
  cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
349
349
  cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
350
350
  cirq/ops/permutation_gate.py,sha256=CiAWDXloj3kszU-aEarBaCXcK73_6vJkcnnHWPKjVY8,4211
@@ -367,9 +367,9 @@ cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,
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=saIxkSrcW4A_exDY_2rdGSpHB_jnI3Ffi4kQCB1JbZo,43592
370
- cirq/ops/raw_types_test.py,sha256=b9gss3KjZcp86b36Oa8q4SQ8Y8SU17cwSjsNHTrgAPY,35353
370
+ cirq/ops/raw_types_test.py,sha256=iFkzkpwMcvyDqPI685UtuHQMRJ_boo1_h3UQ_rFIOrQ,35250
371
371
  cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
372
- cirq/ops/state_preparation_channel_test.py,sha256=BUpFTawuL5mqnmcXqPyrP0ZGPwshO664XqgvsvDpj0Y,6082
372
+ cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
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
@@ -382,7 +382,7 @@ cirq/ops/uniform_superposition_gate.py,sha256=LiB_Aft5mQY5aVhe4S8DR4ugMREwXEFTVO
382
382
  cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
383
383
  cirq/ops/wait_gate.py,sha256=CU_CdgkNZV5BjVnBKu-GEIdkyu787mqiQEV0fnjhLkc,5575
384
384
  cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
385
- cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
385
+ cirq/protocols/__init__.py,sha256=SZCBRpL2YbYWMVcvJVR6FGkBv9aGv01oY2skSBvtNcg,6015
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
388
388
  cirq/protocols/apply_channel_protocol.py,sha256=-FkwzW2FKDY713lGOTIJ0yMIPKp3ZzWqLBl_yhmOGdk,15615
@@ -415,7 +415,7 @@ cirq/protocols/json_serialization_test.py,sha256=xDRylmud660G3A-mSv8FLZvRiG59mBs
415
415
  cirq/protocols/kraus_protocol.py,sha256=ssojYrkve1dtnodTqqCzBje1fsTec5utxIQMsxtZ1Ow,9310
416
416
  cirq/protocols/kraus_protocol_test.py,sha256=51eJ3r3Kx10rG-1hPjcfcODeUO3PFQmwU9ATMnhTWDw,5495
417
417
  cirq/protocols/measurement_key_protocol.py,sha256=JU7XbZfR7o6Wcv5qRJisp3ZAWwW9Fx7OHtxNMrWtZoQ,13351
418
- cirq/protocols/measurement_key_protocol_test.py,sha256=s6X7rP0NA3RBUhz_Z6f1YiGGtpajbC4PYiq-LZ8_uQw,8813
418
+ cirq/protocols/measurement_key_protocol_test.py,sha256=PqSU9uB4t2yvPz9hZBLby2mZnZo-DOLlx3HIicyPeLo,8768
419
419
  cirq/protocols/mixture_protocol.py,sha256=K34KJ0HUaecaml3E6JfpYrJXJTu9i0vXcXzhP0n_v5s,6464
420
420
  cirq/protocols/mixture_protocol_test.py,sha256=OtIRulKt6mTwLxLWzfGh6FTwc4CA5CiYoKSAW6bX1Is,3854
421
421
  cirq/protocols/mul_protocol.py,sha256=Jv7Qq5SejO0F6kpnFcTBML3rjZd-LTmrUJJ_D7PRpR4,2749
@@ -424,7 +424,7 @@ cirq/protocols/pauli_expansion_protocol.py,sha256=haLt7_FJUt-jK0im4R25Gku6Zhiyu6
424
424
  cirq/protocols/pauli_expansion_protocol_test.py,sha256=qKMMeJ7a8cT2xrNDdXtVabd9Hmcc5wLMOXo88_mkBM4,2780
425
425
  cirq/protocols/phase_protocol.py,sha256=e_xsYDgs4K5poWcTBipziiz3Asuc7tGiVSBgD__Mooo,3648
426
426
  cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
427
- cirq/protocols/pow_protocol.py,sha256=B-bL9tgFKl_Q8o73NoAT5vLXOq28e5q0Kahu9iQWmLQ,3224
427
+ cirq/protocols/pow_protocol.py,sha256=q_Y3MMdkOXiB1D6V34lQGNf8vlvc5btZfDeO8M0jZd0,3151
428
428
  cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
429
429
  cirq/protocols/qasm.py,sha256=7hAnBsGdePEytxqoI-TEx8S4P2NDDhVlhj-7rLFtDak,7216
430
430
  cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
@@ -907,7 +907,7 @@ cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
907
907
  cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
908
908
  cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
909
909
  cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
910
- cirq/qis/clifford_tableau_test.py,sha256=-DxgKr37dmpQqw8bbA3veXCTZ_-f6G_aVFUpvKZcRwY,18476
910
+ cirq/qis/clifford_tableau_test.py,sha256=MPb5kGoCOjHpfIzADKmd1qDbUkXR6nwZbpQnC6UCTH0,18385
911
911
  cirq/qis/entropy.py,sha256=SWB_Q7k5io_ZB1FzpNeUZNte3QqjiRR1_8vN2nEOt-M,4242
912
912
  cirq/qis/entropy_test.py,sha256=DYdTUSosNo8njD8XiX7ZHtSydZf2wJun1RMKne6is5Y,1717
913
913
  cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
@@ -971,27 +971,27 @@ cirq/study/sweepable.py,sha256=lVzlkF9d_PaT1RSLponKzwXebGoDXQ56zwd1XEMa6h0,4338
971
971
  cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
972
972
  cirq/study/sweeps.py,sha256=HwckrE9J0Rf_oWDqVwBHy4AEdrmSxRifNumQl-eRXIw,21565
973
973
  cirq/study/sweeps_test.py,sha256=o__dMwDQZl4R0KpK6MwqKHowWBEqopOhAfLk6BYB1V4,16336
974
- cirq/testing/__init__.py,sha256=lJA1P4IJEXOj7gVkbjmW4pLVkj7Hd1RYXDHSgXu_Aek,6315
975
- cirq/testing/circuit_compare.py,sha256=Fu1I4NtRFUUxI1_48wYoDWx9pkiy8s1uv4YBk9nEZOY,19173
974
+ cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
975
+ cirq/testing/circuit_compare.py,sha256=3vgAfXZoqfpR58dGDzYTfkitzW7zs7wVq4OsW5LrBUU,18723
976
976
  cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
977
- cirq/testing/consistent_act_on.py,sha256=YddB_0LIz8uUjSXchzGdS0a1oKdjx6RBv9t8zHkmigw,7745
977
+ cirq/testing/consistent_act_on.py,sha256=hE_6fRPcmlvgRf2bHkB0XS4jnh_cR2PVS-g9YyNIijo,7670
978
978
  cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
979
979
  cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
980
980
  cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
981
981
  cirq/testing/consistent_controlled_gate_op.py,sha256=kYWpELVPT5c-bxTTNkWceiuEJDdsKheO3ZV0N1mTnpk,2665
982
982
  cirq/testing/consistent_controlled_gate_op_test.py,sha256=-Uzm7T3HFKSE8jPfTPi9ElJaXCHqaOpbfjFvD1un5rE,3221
983
- cirq/testing/consistent_decomposition.py,sha256=AawvIbU38fbRfopmB25beOqnygW319G4VK0l9jp7rfw,3740
983
+ cirq/testing/consistent_decomposition.py,sha256=mkOmMAMPr0B215n-nSX3yxHxA45HwTb7G0KFEIr69jI,3665
984
984
  cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
985
985
  cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
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=T1a3F33h9uhy3KJFQsskokBrtcXglXtfjLPWF5sEkFE,7728
989
+ cirq/testing/consistent_protocols.py,sha256=w8KIfrNPmp5IpKqUntdZbtIOIa1JyN34q6RGb3cF7Tg,7468
990
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=5qpvWQt6KS4ltp-ia8LE4YrgmWSVo3hwcJplQsFIvww,2915
993
993
  cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
994
- cirq/testing/consistent_specified_has_unitary.py,sha256=R8xFCPoIUZn-4KoUGPHASGfwQ5iqqeLO5qQgT1HB1Xs,1168
994
+ cirq/testing/consistent_specified_has_unitary.py,sha256=gFFhitFqLnEy3rYmtZVkZ_wq5eVt7A8SUT0kbl8g6n8,1093
995
995
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
996
996
  cirq/testing/consistent_unitary.py,sha256=8O9xaTEQCUNOn8BsuHnCXcbXI8ZV2DZGiNp1dk55xM0,3284
997
997
  cirq/testing/consistent_unitary_test.py,sha256=yK8fFh2bcmZunUF2lrsTWY5pt9sk6pFKInvMg0MrKZ0,3312
@@ -1003,13 +1003,13 @@ cirq/testing/equals_tester.py,sha256=XmCj8zPoS5DKGKDMVTTEC_uIikiYCth0l0o6QPd4oBU
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
1005
  cirq/testing/equivalent_basis_map_test.py,sha256=qAgxkKLuHFsRooAWdSdTMI61fsVYKSDhVl1IsdHeGXE,1540
1006
- cirq/testing/equivalent_repr_eval.py,sha256=l8LW6hIhFEU6-A3fHJyvHu7wZ1jBIQXBd0RbtTl4vRQ,3392
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
1009
1009
  cirq/testing/gate_features_test.py,sha256=4cMncHo6SvyMvSFY1m9eQOwwKMUuADlWaavgbOMC8ZM,2390
1010
1010
  cirq/testing/json.py,sha256=Lzpfv_vn8NqYUhmB373Ay9NY9qkfd_piJMsLI4uSRSM,6683
1011
1011
  cirq/testing/json_test.py,sha256=wKpzoEHPariqLdZaIxgb87Tx1gAIbIXoXWUyR8TykGw,1152
1012
- cirq/testing/lin_alg_utils.py,sha256=sLhudrHYga6uCQE_13DJAjqhERgbHjk58yYFnrrpMQM,6361
1012
+ cirq/testing/lin_alg_utils.py,sha256=Lcmz-1RwctkS58ciVP8tnBV1Ka1cAWslDM2l5NCzYT8,6286
1013
1013
  cirq/testing/lin_alg_utils_test.py,sha256=HiCNYby5ZXVcXJLb8CNatExtuAacrphgUERsqKswF6U,4245
1014
1014
  cirq/testing/logs.py,sha256=s5w_qv-DLyZ_4S76u3ZH5zrV1jVSOW8ktmouR7aOXBI,4034
1015
1015
  cirq/testing/logs_test.py,sha256=spuIb0EOJxW-UNEuBds20ouIE1ROdqL9TbyTlqn1p6o,5811
@@ -1050,7 +1050,7 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
1050
1050
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1051
1051
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1052
1052
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1053
- cirq/transformers/__init__.py,sha256=l2ylGavB6pWxXwnMsKMJhw-J7hTkEpHNZ54NA8E9S_s,7225
1053
+ cirq/transformers/__init__.py,sha256=uBx8lSOJSlY2m5QeOTr0E6HaMaqTRwTUu1binpXyaow,7189
1054
1054
  cirq/transformers/align.py,sha256=2uLjN5B4wNC661IGbwG5NKb-GSAW93pFCtPxuJkc6fs,3339
1055
1055
  cirq/transformers/align_test.py,sha256=X4ysJuemqqOeKix2rO9SlwF4CBQzEYbgiqgZmlMxbsQ,7722
1056
1056
  cirq/transformers/drop_empty_moments.py,sha256=uZJG9FpUNyA1Mi0xLDuVuhj_siZhPZ1_s08Ry9xQ-1M,1535
@@ -1058,7 +1058,7 @@ cirq/transformers/drop_empty_moments_test.py,sha256=h6Pji0z0o9KOB7fnSHseWpIAhzvx
1058
1058
  cirq/transformers/drop_negligible_operations.py,sha256=eP2dP_n0BYlr8aZ1wnD8YWsqCtwN0l0O6p45RbXEpfM,2097
1059
1059
  cirq/transformers/drop_negligible_operations_test.py,sha256=32mS4QQ8tiH3wBAAgbUU8LgwWDmvreRVEDZML_kgxyo,3859
1060
1060
  cirq/transformers/dynamical_decoupling.py,sha256=miNFPpUGv2rLwkjujUMYEZuiamvA7x3vYTWie5jK79c,15137
1061
- cirq/transformers/dynamical_decoupling_test.py,sha256=xpyfGHQIslnllUGq-28m_7h6L5Elbo77pLlF1NODlWw,44802
1061
+ cirq/transformers/dynamical_decoupling_test.py,sha256=VeKlzaab_3fPDMiPaPihgvlbOWiJFflppMplSj0tfIo,44731
1062
1062
  cirq/transformers/eject_phased_paulis.py,sha256=ZeVEh614OihWZtHyaBBtgpWj_dUxQGXDzf4NmBlzbeM,14725
1063
1063
  cirq/transformers/eject_phased_paulis_test.py,sha256=AOMmOq3fWFGm2_qDyocjtF9fK7GAhC0kF550mkjtPx4,15791
1064
1064
  cirq/transformers/eject_z.py,sha256=3u0Q0WGGAxmZuPnyiU4q04gJMnY--0nvhF4eotnSl9k,5803
@@ -1070,13 +1070,13 @@ cirq/transformers/insertion_sort_test.py,sha256=E4unAfvPrTE73zI7OnZ8vWq5BUXYpPYj
1070
1070
  cirq/transformers/measurement_transformers.py,sha256=crAYKGK90drr_3GEh5t8-Z87eSE8v6uH9Xcn0OfjpOs,19496
1071
1071
  cirq/transformers/measurement_transformers_test.py,sha256=mJKYFqqMwZnD8KXVM1tmF2kcIZXkkZKlfOU9XbGxYpQ,29019
1072
1072
  cirq/transformers/merge_k_qubit_gates.py,sha256=v9vY3f52S9QR7D_Om4APSZ65rwJH6Z7g6Gf3pD_9H3I,4380
1073
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=sR5JJy9urGnXB1EFHxzBoWGzhGBGKEGGPWCWVr5ehEE,14052
1073
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=523FmfCC7mGX_zecGaQ2tgdqBvMGiMinwJMIfKBgG8E,14016
1074
1074
  cirq/transformers/merge_single_qubit_gates.py,sha256=OqQBPtKreJ7uqa7vjZpxCmX7oRN-llYMClG76TXt9kE,5806
1075
1075
  cirq/transformers/merge_single_qubit_gates_test.py,sha256=0RgVmSuTOjiKSzmjSm8a3APwiOjRUWBzjbr7fHN4x1Y,9954
1076
1076
  cirq/transformers/noise_adding.py,sha256=ZBS-015Kc-BnoO-lMXfEGpCXbPu4whVgTXIB-E16ApQ,4476
1077
1077
  cirq/transformers/noise_adding_test.py,sha256=nHOoKUPBBOkWF6A_JhIO6-G0AuFkLKBCxH7e2BOem9M,2171
1078
1078
  cirq/transformers/optimize_for_target_gateset.py,sha256=QThizLtkzvZpUK-LG77ixuZXghDyWGNn6yHkNrzYR3o,7206
1079
- cirq/transformers/optimize_for_target_gateset_test.py,sha256=ghBEbbMQ8_qal1DDWTUC_DPuHaUyTr-rGaUbpP9-eGs,19606
1079
+ cirq/transformers/optimize_for_target_gateset_test.py,sha256=6xu7bDUf2CifMGFvutXT_CI2Wu_FSeucg6tcXHEeOZw,19574
1080
1080
  cirq/transformers/qubit_management_transformers.py,sha256=jHgtn-Z8LRx5iiiQxd-mZVg4HkXq9spO_Tm_AvRyaHk,9433
1081
1081
  cirq/transformers/qubit_management_transformers_test.py,sha256=QjrEx3jC1AG4YGD2VdHW59SRW1icQ-pJc3zAMkJqAvE,14051
1082
1082
  cirq/transformers/randomized_measurements.py,sha256=J4c9ZwYRDJ2_X_QzXWds4Qe0t9ZL4Xt2XQed27Z3QuA,5709
@@ -1092,8 +1092,8 @@ cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zK
1092
1092
  cirq/transformers/transformer_api.py,sha256=Jv1bcAjBlJz36Pu-6Ye8kIQ_gVjEkpjMoVvLWjcrenk,16826
1093
1093
  cirq/transformers/transformer_api_test.py,sha256=vz_zTDPJIfjfqORGKCxeAs3U1F3X2dFNbe50o79uY-4,13273
1094
1094
  cirq/transformers/transformer_primitives.py,sha256=sNEWuWpCwtKVphdzQdgOKg9aLUGkNO7389Pc9OY4lOg,36522
1095
- cirq/transformers/transformer_primitives_test.py,sha256=JKTIjzYGIC_PPrV0VvkxxrJ_esRjL2jFTRrfgjwQO-8,41844
1096
- cirq/transformers/analytical_decompositions/__init__.py,sha256=8NgcCO5GZmWHnUDa4MLmyGQbInbsO6Ot22ZeAJUZEHo,3802
1095
+ cirq/transformers/transformer_primitives_test.py,sha256=QAayPS74Ro4TTol-IOPnd7S49DKhvXYmWci0nOsk05A,41712
1096
+ cirq/transformers/analytical_decompositions/__init__.py,sha256=Rw7X6hPh14k-cDTcdWI7fQu8v5oU9d1vHuwulUBv-8o,3694
1097
1097
  cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sH7nesFWgYOWEl0UCUAmx6zsFQG0ibeQZpq7Imx38MY,6743
1098
1098
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=Svuj7abPvWyEK1W4_6M17hah-xp4Y0E_VICvGyvHeig,7138
1099
1099
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=mZ5ojjxpSkQRhlRmTg0waBXAkCj7hWeEEYQRkCxjzEs,8701
@@ -1174,9 +1174,9 @@ cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,384
1174
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=0g4fWremhgnLTxjApVJzB6y0hJ9Vz-afudHltvvqkUY,12582
1177
- cirq/value/linear_dict_test.py,sha256=9Kjij02FV3NDI_LjC9qq_tR3u0kycyBD5hnWUbRzXCM,20147
1177
+ cirq/value/linear_dict_test.py,sha256=eZatVgAMonquI2qys4WJx6ddUc2KDea440qHIOxlTfQ,20061
1178
1178
  cirq/value/measurement_key.py,sha256=tgKhfa6UUPMP3azlF_yuARqg31T-lAAMhoTK6OtUEeQ,5175
1179
- cirq/value/measurement_key_test.py,sha256=8p7dm5zYKkvykT1F-IaEOMJDTGeqZCfUsWuvqKDLAxc,4545
1179
+ cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
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=pC-hwfLL6U1_5937AMw6YtGgEBq71prNQ6jOjh8Kbls,3633
1189
- cirq/value/timestamp_test.py,sha256=PpWtv-AmuepKPyisc5JUaqQ8YOK68jK8V0e3prRXaHQ,4257
1189
+ cirq/value/timestamp_test.py,sha256=L-MmYEuoTDdyyX6MJ6-wBqxHcSMabQHogX_DhOm0SAg,4214
1190
1190
  cirq/value/type_alias.py,sha256=64tVzxOqzwtKTwuqXan-PeTyjy7i6J928FCg5NtMcw4,1121
1191
1191
  cirq/value/value_equality_attr.py,sha256=kD3XRkpAp4UKCRWsoxwLjjQXnaSh1gAqMDIZH7xtbJ4,10491
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.dev20250613205825.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
- cirq_core-1.6.0.dev20250613205825.dist-info/METADATA,sha256=n1njpHIybjaSKqJB0483h6GdV0U6Vl_eT-rFgq2D2gU,4857
1225
- cirq_core-1.6.0.dev20250613205825.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
- cirq_core-1.6.0.dev20250613205825.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
- cirq_core-1.6.0.dev20250613205825.dist-info/RECORD,,
1223
+ cirq_core-1.6.0.dev20250614001105.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1224
+ cirq_core-1.6.0.dev20250614001105.dist-info/METADATA,sha256=3mP4t1Ffb0skaCke4mKqTCbCBDvItwo2KaAN64q9n48,4857
1225
+ cirq_core-1.6.0.dev20250614001105.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1226
+ cirq_core-1.6.0.dev20250614001105.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1227
+ cirq_core-1.6.0.dev20250614001105.dist-info/RECORD,,