cirq-core 1.6.0.dev20250515174529__py3-none-any.whl → 1.6.0.dev20250516154249__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 (112) hide show
  1. cirq/_compat.py +3 -0
  2. cirq/_doc.py +2 -0
  3. cirq/_import.py +2 -0
  4. cirq/_import_test.py +4 -2
  5. cirq/_version.py +1 -1
  6. cirq/_version_test.py +1 -1
  7. cirq/circuits/_block_diagram_drawer.py +2 -0
  8. cirq/circuits/_block_diagram_drawer_test.py +2 -0
  9. cirq/circuits/_box_drawing_character_data.py +2 -0
  10. cirq/circuits/_box_drawing_character_data_test.py +2 -0
  11. cirq/circuits/_bucket_priority_queue.py +2 -0
  12. cirq/circuits/_bucket_priority_queue_test.py +2 -0
  13. cirq/circuits/circuit_operation_test.py +3 -0
  14. cirq/circuits/circuit_test.py +2 -0
  15. cirq/circuits/frozen_circuit_test.py +2 -0
  16. cirq/circuits/insert_strategy_test.py +2 -0
  17. cirq/circuits/moment_test.py +2 -0
  18. cirq/circuits/optimization_pass_test.py +2 -0
  19. cirq/circuits/qasm_output_test.py +3 -0
  20. cirq/circuits/text_diagram_drawer_test.py +2 -0
  21. cirq/contrib/acquaintance/bipartite_test.py +2 -0
  22. cirq/contrib/acquaintance/devices_test.py +2 -0
  23. cirq/contrib/acquaintance/executor_test.py +2 -0
  24. cirq/contrib/acquaintance/inspection_utils_test.py +2 -0
  25. cirq/contrib/acquaintance/mutation_utils_test.py +2 -0
  26. cirq/contrib/acquaintance/optimizers_test.py +3 -0
  27. cirq/contrib/acquaintance/permutation_test.py +2 -0
  28. cirq/contrib/acquaintance/shift_swap_network_test.py +2 -0
  29. cirq/contrib/acquaintance/shift_test.py +2 -0
  30. cirq/contrib/acquaintance/strategies/cubic_test.py +2 -0
  31. cirq/contrib/acquaintance/strategies/quartic_paired_test.py +2 -0
  32. cirq/contrib/acquaintance/testing.py +2 -0
  33. cirq/contrib/acquaintance/topological_sort_test.py +2 -0
  34. cirq/contrib/bayesian_network/bayesian_network_gate_test.py +3 -0
  35. cirq/contrib/circuitdag/circuit_dag_test.py +2 -0
  36. cirq/contrib/graph_device/graph_device_test.py +2 -0
  37. cirq/contrib/graph_device/hypergraph_test.py +2 -0
  38. cirq/contrib/graph_device/uniform_graph_device.py +2 -0
  39. cirq/contrib/graph_device/uniform_graph_device_test.py +2 -0
  40. cirq/contrib/hacks/disable_validation.py +2 -0
  41. cirq/contrib/hacks/disable_validation_test.py +2 -0
  42. cirq/contrib/json.py +2 -0
  43. cirq/contrib/json_test.py +3 -0
  44. cirq/contrib/noise_models/noise_models_test.py +2 -0
  45. cirq/contrib/paulistring/clifford_optimize.py +2 -0
  46. cirq/contrib/paulistring/clifford_optimize_test.py +2 -0
  47. cirq/contrib/paulistring/clifford_target_gateset_test.py +2 -0
  48. cirq/contrib/paulistring/optimize.py +2 -0
  49. cirq/contrib/paulistring/optimize_test.py +2 -0
  50. cirq/contrib/paulistring/pauli_string_dag.py +2 -0
  51. cirq/contrib/paulistring/pauli_string_dag_test.py +2 -0
  52. cirq/contrib/paulistring/pauli_string_optimize.py +5 -1
  53. cirq/contrib/paulistring/pauli_string_optimize_test.py +2 -0
  54. cirq/contrib/paulistring/recombine.py +2 -0
  55. cirq/contrib/paulistring/recombine_test.py +2 -0
  56. cirq/contrib/paulistring/separate.py +2 -0
  57. cirq/contrib/paulistring/separate_test.py +2 -0
  58. cirq/contrib/qasm_import/_lexer.py +2 -0
  59. cirq/contrib/qasm_import/_lexer_test.py +2 -0
  60. cirq/contrib/qasm_import/_parser.py +2 -0
  61. cirq/contrib/qasm_import/_parser_test.py +2 -0
  62. cirq/contrib/qasm_import/exception.py +2 -0
  63. cirq/contrib/qasm_import/qasm.py +6 -2
  64. cirq/contrib/qasm_import/qasm_test.py +3 -0
  65. cirq/contrib/qcircuit/qcircuit_diagram_info.py +2 -0
  66. cirq/contrib/qcircuit/qcircuit_diagram_info_test.py +2 -0
  67. cirq/contrib/qcircuit/qcircuit_pdf.py +7 -2
  68. cirq/contrib/qcircuit/qcircuit_pdf_test.py +2 -0
  69. cirq/contrib/qcircuit/qcircuit_test.py +2 -0
  70. cirq/contrib/quantum_volume/quantum_volume.py +2 -0
  71. cirq/contrib/quantum_volume/quantum_volume_test.py +2 -0
  72. cirq/contrib/quimb/density_matrix_test.py +3 -0
  73. cirq/contrib/quimb/grid_circuits.py +2 -0
  74. cirq/contrib/quimb/grid_circuits_test.py +3 -0
  75. cirq/contrib/quimb/mps_simulator_test.py +3 -0
  76. cirq/contrib/quimb/state_vector_test.py +3 -0
  77. cirq/contrib/quirk/export_to_quirk.py +2 -0
  78. cirq/contrib/quirk/export_to_quirk_test.py +2 -0
  79. cirq/contrib/quirk/linearize_circuit.py +2 -0
  80. cirq/contrib/routing/device.py +2 -0
  81. cirq/contrib/routing/device_test.py +2 -0
  82. cirq/contrib/routing/greedy_test.py +2 -0
  83. cirq/contrib/routing/initialization_test.py +2 -0
  84. cirq/contrib/routing/router.py +4 -2
  85. cirq/contrib/routing/router_test.py +2 -0
  86. cirq/contrib/routing/swap_network_test.py +2 -0
  87. cirq/contrib/routing/utils_test.py +3 -0
  88. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +4 -2
  89. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +3 -0
  90. cirq/contrib/svg/svg_test.py +3 -0
  91. cirq/devices/device_test.py +3 -0
  92. cirq/devices/grid_device_metadata_test.py +3 -0
  93. cirq/interop/quirk/cells/parse_test.py +10 -10
  94. cirq/ops/pauli_string_phasor.py +1 -1
  95. cirq/testing/equals_tester_test.py +19 -17
  96. cirq/value/random_state_test.py +3 -3
  97. cirq/value/timestamp.py +4 -0
  98. cirq/value/timestamp_test.py +10 -10
  99. cirq/vis/density_matrix_test.py +17 -17
  100. cirq/work/collector_test.py +13 -10
  101. cirq/work/observable_measurement.py +14 -2
  102. cirq/work/observable_measurement_data.py +3 -3
  103. cirq/work/observable_measurement_test.py +43 -27
  104. cirq/work/observable_settings.py +2 -12
  105. cirq/work/observable_settings_test.py +7 -7
  106. cirq/work/pauli_sum_collector_test.py +7 -9
  107. cirq/work/sampler_test.py +25 -22
  108. {cirq_core-1.6.0.dev20250515174529.dist-info → cirq_core-1.6.0.dev20250516154249.dist-info}/METADATA +1 -1
  109. {cirq_core-1.6.0.dev20250515174529.dist-info → cirq_core-1.6.0.dev20250516154249.dist-info}/RECORD +112 -112
  110. {cirq_core-1.6.0.dev20250515174529.dist-info → cirq_core-1.6.0.dev20250516154249.dist-info}/WHEEL +0 -0
  111. {cirq_core-1.6.0.dev20250515174529.dist-info → cirq_core-1.6.0.dev20250516154249.dist-info}/licenses/LICENSE +0 -0
  112. {cirq_core-1.6.0.dev20250515174529.dist-info → cirq_core-1.6.0.dev20250516154249.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@ import cirq
18
18
 
19
19
 
20
20
  @duet.sync
21
- async def test_pauli_string_sample_collector():
21
+ async def test_pauli_string_sample_collector() -> None:
22
22
  a, b = cirq.LineQubit.range(2)
23
23
  p = cirq.PauliSumCollector(
24
24
  circuit=cirq.Circuit(cirq.H(a), cirq.CNOT(a, b), cirq.X(a), cirq.Z(b)),
@@ -28,26 +28,24 @@ async def test_pauli_string_sample_collector():
28
28
  + (1 - 0j),
29
29
  samples_per_term=100,
30
30
  )
31
- result = await p.collect_async(sampler=cirq.Simulator())
32
- assert result is None
31
+ await p.collect_async(sampler=cirq.Simulator())
33
32
  energy = p.estimated_energy()
34
33
  assert isinstance(energy, float) and energy == 12
35
34
 
36
35
 
37
36
  @duet.sync
38
- async def test_pauli_string_sample_single():
37
+ async def test_pauli_string_sample_single() -> None:
39
38
  a, b = cirq.LineQubit.range(2)
40
39
  p = cirq.PauliSumCollector(
41
40
  circuit=cirq.Circuit(cirq.H(a), cirq.CNOT(a, b), cirq.X(a), cirq.Z(b)),
42
41
  observable=cirq.X(a) * cirq.X(b),
43
42
  samples_per_term=100,
44
43
  )
45
- result = await p.collect_async(sampler=cirq.Simulator())
46
- assert result is None
44
+ await p.collect_async(sampler=cirq.Simulator())
47
45
  assert p.estimated_energy() == -1
48
46
 
49
47
 
50
- def test_pauli_string_sample_collector_identity():
48
+ def test_pauli_string_sample_collector_identity() -> None:
51
49
  p = cirq.PauliSumCollector(
52
50
  circuit=cirq.Circuit(), observable=cirq.PauliSum() + 2j, samples_per_term=100
53
51
  )
@@ -55,7 +53,7 @@ def test_pauli_string_sample_collector_identity():
55
53
  assert p.estimated_energy() == 2j
56
54
 
57
55
 
58
- def test_pauli_string_sample_collector_extra_qubit_z():
56
+ def test_pauli_string_sample_collector_extra_qubit_z() -> None:
59
57
  a, b = cirq.LineQubit.range(2)
60
58
  p = cirq.PauliSumCollector(
61
59
  circuit=cirq.Circuit(cirq.H(a)), observable=3 * cirq.Z(b), samples_per_term=100
@@ -64,7 +62,7 @@ def test_pauli_string_sample_collector_extra_qubit_z():
64
62
  assert p.estimated_energy() == 3
65
63
 
66
64
 
67
- def test_pauli_string_sample_collector_extra_qubit_x():
65
+ def test_pauli_string_sample_collector_extra_qubit_x() -> None:
68
66
  a, b = cirq.LineQubit.range(2)
69
67
  p = cirq.PauliSumCollector(
70
68
  circuit=cirq.Circuit(cirq.H(a)), observable=3 * cirq.X(b), samples_per_term=10000
cirq/work/sampler_test.py CHANGED
@@ -28,7 +28,7 @@ import cirq
28
28
 
29
29
 
30
30
  @duet.sync
31
- async def test_run_async():
31
+ async def test_run_async() -> None:
32
32
  sim = cirq.Simulator()
33
33
  result = await sim.run_async(
34
34
  cirq.Circuit(cirq.measure(cirq.GridQubit(0, 0), key='m')), repetitions=10
@@ -37,7 +37,7 @@ async def test_run_async():
37
37
 
38
38
 
39
39
  @duet.sync
40
- async def test_run_sweep_async():
40
+ async def test_run_sweep_async() -> None:
41
41
  sim = cirq.Simulator()
42
42
  results = await sim.run_sweep_async(
43
43
  cirq.Circuit(cirq.measure(cirq.GridQubit(0, 0), key='m')),
@@ -50,7 +50,7 @@ async def test_run_sweep_async():
50
50
 
51
51
 
52
52
  @duet.sync
53
- async def test_sampler_async_fail():
53
+ async def test_sampler_async_fail() -> None:
54
54
  class FailingSampler(cirq.Sampler):
55
55
  def run_sweep(self, program, params, repetitions: int = 1):
56
56
  raise ValueError('test')
@@ -62,7 +62,7 @@ async def test_sampler_async_fail():
62
62
  await FailingSampler().run_sweep_async(cirq.Circuit(), repetitions=1, params=None)
63
63
 
64
64
 
65
- def test_run_sweep_impl():
65
+ def test_run_sweep_impl() -> None:
66
66
  """Test run_sweep implemented in terms of run_sweep_async."""
67
67
 
68
68
  class AsyncSampler(cirq.Sampler):
@@ -81,7 +81,7 @@ def test_run_sweep_impl():
81
81
 
82
82
 
83
83
  @duet.sync
84
- async def test_run_sweep_async_impl():
84
+ async def test_run_sweep_async_impl() -> None:
85
85
  """Test run_sweep_async implemented in terms of run_sweep."""
86
86
 
87
87
  class SyncSampler(cirq.Sampler):
@@ -98,7 +98,7 @@ async def test_run_sweep_async_impl():
98
98
  np.testing.assert_equal(result.records['m'], np.zeros((10, 1, 1)))
99
99
 
100
100
 
101
- def test_sampler_sample_multiple_params():
101
+ def test_sampler_sample_multiple_params() -> None:
102
102
  a, b = cirq.LineQubit.range(2)
103
103
  s = sympy.Symbol('s')
104
104
  t = sympy.Symbol('t')
@@ -132,7 +132,7 @@ def test_sampler_sample_multiple_params():
132
132
  )
133
133
 
134
134
 
135
- def test_sampler_sample_sweep():
135
+ def test_sampler_sample_sweep() -> None:
136
136
  a = cirq.LineQubit(0)
137
137
  t = sympy.Symbol('t')
138
138
  sampler = cirq.Simulator()
@@ -158,7 +158,7 @@ def test_sampler_sample_sweep():
158
158
  )
159
159
 
160
160
 
161
- def test_sampler_sample_no_params():
161
+ def test_sampler_sample_no_params() -> None:
162
162
  a, b = cirq.LineQubit.range(2)
163
163
  sampler = cirq.Simulator()
164
164
  circuit = cirq.Circuit(cirq.X(a), cirq.measure(a, b, key='out'))
@@ -168,7 +168,7 @@ def test_sampler_sample_no_params():
168
168
  )
169
169
 
170
170
 
171
- def test_sampler_sample_inconsistent_keys():
171
+ def test_sampler_sample_inconsistent_keys() -> None:
172
172
  q = cirq.LineQubit(0)
173
173
  sampler = cirq.Simulator()
174
174
  circuit = cirq.Circuit(cirq.measure(q, key='out'))
@@ -177,7 +177,7 @@ def test_sampler_sample_inconsistent_keys():
177
177
 
178
178
 
179
179
  @duet.sync
180
- async def test_sampler_async_not_run_inline():
180
+ async def test_sampler_async_not_run_inline() -> None:
181
181
  ran = False
182
182
 
183
183
  class S(cirq.Sampler):
@@ -192,7 +192,7 @@ async def test_sampler_async_not_run_inline():
192
192
  assert ran
193
193
 
194
194
 
195
- def test_sampler_run_batch():
195
+ def test_sampler_run_batch() -> None:
196
196
  sampler = cirq.ZerosSampler()
197
197
  a = cirq.LineQubit(0)
198
198
  circuit1 = cirq.Circuit(cirq.X(a) ** sympy.Symbol('t'), cirq.measure(a, key='m'))
@@ -215,7 +215,7 @@ def test_sampler_run_batch():
215
215
 
216
216
 
217
217
  @duet.sync
218
- async def test_run_batch_async_calls_run_sweep_asynchronously():
218
+ async def test_run_batch_async_calls_run_sweep_asynchronously() -> None:
219
219
  """Test run_batch_async calls run_sweep_async without waiting."""
220
220
  finished = []
221
221
  a = cirq.LineQubit(0)
@@ -241,7 +241,7 @@ async def test_run_batch_async_calls_run_sweep_asynchronously():
241
241
  assert finished == list(reversed(params_list))
242
242
 
243
243
 
244
- def test_sampler_run_batch_default_params_and_repetitions():
244
+ def test_sampler_run_batch_default_params_and_repetitions() -> None:
245
245
  sampler = cirq.ZerosSampler()
246
246
  a = cirq.LineQubit(0)
247
247
  circuit1 = cirq.Circuit(cirq.X(a), cirq.measure(a, key='m'))
@@ -256,7 +256,7 @@ def test_sampler_run_batch_default_params_and_repetitions():
256
256
  assert result.measurements == {'m': np.array([[0]], dtype='uint8')}
257
257
 
258
258
 
259
- def test_sampler_run_batch_bad_input_lengths():
259
+ def test_sampler_run_batch_bad_input_lengths() -> None:
260
260
  sampler = cirq.ZerosSampler()
261
261
  a = cirq.LineQubit(0)
262
262
  circuit1 = cirq.Circuit(cirq.X(a) ** sympy.Symbol('t'), cirq.measure(a, key='m'))
@@ -271,7 +271,7 @@ def test_sampler_run_batch_bad_input_lengths():
271
271
  )
272
272
 
273
273
 
274
- def test_sampler_simple_sample_expectation_values():
274
+ def test_sampler_simple_sample_expectation_values() -> None:
275
275
  a = cirq.LineQubit(0)
276
276
  sampler = cirq.Simulator()
277
277
  circuit = cirq.Circuit(cirq.H(a))
@@ -281,7 +281,7 @@ def test_sampler_simple_sample_expectation_values():
281
281
  assert np.allclose(results, [[1]])
282
282
 
283
283
 
284
- def test_sampler_sample_expectation_values_calculation():
284
+ def test_sampler_sample_expectation_values_calculation() -> None:
285
285
  class DeterministicImbalancedStateSampler(cirq.Sampler):
286
286
  """A simple, deterministic mock sampler.
287
287
  Pretends to sample from a state vector with a 3:1 balance between the
@@ -311,7 +311,7 @@ def test_sampler_sample_expectation_values_calculation():
311
311
  assert np.allclose(results, [[0.5]])
312
312
 
313
313
 
314
- def test_sampler_sample_expectation_values_multi_param():
314
+ def test_sampler_sample_expectation_values_multi_param() -> None:
315
315
  a = cirq.LineQubit(0)
316
316
  t = sympy.Symbol('t')
317
317
  sampler = cirq.Simulator(seed=1)
@@ -324,20 +324,23 @@ def test_sampler_sample_expectation_values_multi_param():
324
324
  assert np.allclose(results, [[1], [-1], [1]])
325
325
 
326
326
 
327
- def test_sampler_sample_expectation_values_complex_param():
327
+ def test_sampler_sample_expectation_values_complex_param() -> None:
328
328
  a = cirq.LineQubit(0)
329
329
  t = sympy.Symbol('t')
330
330
  sampler = cirq.Simulator(seed=1)
331
331
  circuit = cirq.Circuit(cirq.global_phase_operation(t))
332
332
  obs = cirq.Z(a)
333
333
  results = sampler.sample_expectation_values(
334
- circuit, [obs], num_samples=5, params=cirq.Points('t', [1, 1j, (1 + 1j) / np.sqrt(2)])
334
+ circuit,
335
+ [obs],
336
+ num_samples=5,
337
+ params=cirq.Points('t', [1, 1j, (1 + 1j) / np.sqrt(2)]), # type: ignore[list-item]
335
338
  )
336
339
 
337
340
  assert np.allclose(results, [[1], [1], [1]])
338
341
 
339
342
 
340
- def test_sampler_sample_expectation_values_multi_qubit():
343
+ def test_sampler_sample_expectation_values_multi_qubit() -> None:
341
344
  q = cirq.LineQubit.range(3)
342
345
  sampler = cirq.Simulator(seed=1)
343
346
  circuit = cirq.Circuit(cirq.X(q[0]), cirq.X(q[1]), cirq.X(q[2]))
@@ -347,7 +350,7 @@ def test_sampler_sample_expectation_values_multi_qubit():
347
350
  assert np.allclose(results, [[-3]])
348
351
 
349
352
 
350
- def test_sampler_sample_expectation_values_composite():
353
+ def test_sampler_sample_expectation_values_composite() -> None:
351
354
  # Tests multi-{param,qubit} sampling together in one circuit.
352
355
  q = cirq.LineQubit.range(3)
353
356
  t = [sympy.Symbol(f't{x}') for x in range(3)]
@@ -376,7 +379,7 @@ def test_sampler_sample_expectation_values_composite():
376
379
  )
377
380
 
378
381
 
379
- def test_sampler_simple_sample_expectation_requirements():
382
+ def test_sampler_simple_sample_expectation_requirements() -> None:
380
383
  a = cirq.LineQubit(0)
381
384
  sampler = cirq.Simulator(seed=1)
382
385
  circuit = cirq.Circuit(cirq.H(a))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.6.0.dev20250515174529
3
+ Version: 1.6.0.dev20250516154249
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,165 +1,165 @@
1
1
  cirq/__init__.py,sha256=QLBOuigMYDEL12O1ZaWw0Nmw3vKY3gJ4yuGfPo4YENM,28238
2
- cirq/_compat.py,sha256=e9Bc3UY_9RIq7cQyHZthoIqFL-HwRU0WSvFyVr1xCUY,29532
2
+ cirq/_compat.py,sha256=WAe4w7ZvaLlmn5J-YQMoHNwlosFaTUW6XiI1bXhPCrA,29569
3
3
  cirq/_compat_test.py,sha256=t51ZXkEuomg1SMI871Ws-5pk68DGBsAf2TGNjVXtZ8I,34755
4
- cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
- cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
6
- cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=5wPtpeCcOPMueeGMZVMlCBGMg0rqojdlIZR6OaJUF8g,1206
8
- cirq/_version_test.py,sha256=A5E5ho3OpZ97fAE6ThBRFkioUoi6LOxBlXpTCyMpiiQ,155
4
+ cirq/_doc.py,sha256=GlE8YPG5aEuA_TNMQMvqS6Pd8654akVJavUnNngtWUg,2915
5
+ cirq/_import.py,sha256=bXzIRteBSrBl6D5KBIMP0uE8T-jjwMAgoF8yTC03tSc,8457
6
+ cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
+ cirq/_version.py,sha256=WSIwZgUQEbYEPZoFmf0OjrFqsw7VpCbcC620BKjTZqY,1206
8
+ cirq/_version_test.py,sha256=0xhiwZjQOG9e_f2WcSSRHNd3f048dCQTYPqqtsMdPWQ,155
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
10
  cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
- cirq/circuits/_block_diagram_drawer.py,sha256=XuqIQjyHc-B7TaSzuKJe9ZFwzItjxVGdmZjTDw0d2T0,9509
14
- cirq/circuits/_block_diagram_drawer_test.py,sha256=ThGgemLIV1JUz20vSPcn1p_DXZK23QSYO-wcdJw7ABE,11439
15
- cirq/circuits/_box_drawing_character_data.py,sha256=5Ldk4XlJRacmyvsfcl2KhlMdXqO11uqJ650P99xjSuc,12115
16
- cirq/circuits/_box_drawing_character_data_test.py,sha256=mQeuX4_04f-VLd25Rzog4k53WroONttLD1vhyhFt9Lk,1632
17
- cirq/circuits/_bucket_priority_queue.py,sha256=ml98_VAwGXzASUS0hE7lT7PeA0Hugz-qAZtjtAdBsvw,6744
18
- cirq/circuits/_bucket_priority_queue_test.py,sha256=1FnB39rJKODvXP3SpSD6B8Tu02yQWCWOUQSPmR-22Pw,5288
13
+ cirq/circuits/_block_diagram_drawer.py,sha256=nOJep9Wz8Q-hb0dX-Xteg8_R1r0HQxbOPYqKJiOaLzw,9545
14
+ cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU8OEunecX5SSIRU,11475
15
+ cirq/circuits/_box_drawing_character_data.py,sha256=hXDBeaffIzqQ0Lm52PBE3GEHMnDsqi1JsvUf3ezkjh0,12151
16
+ cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
17
+ cirq/circuits/_bucket_priority_queue.py,sha256=FQwlSAEpoe7ZQEdCD5w3oVYI4xfqOKeVxJI4Zv0NR3U,6780
18
+ cirq/circuits/_bucket_priority_queue_test.py,sha256=7XXeGMhz-dyfo9xeqbBKSxJ0hHVuakGMR45Zp7she88,5324
19
19
  cirq/circuits/circuit.py,sha256=reDLqLMj3SZM-z-7vLZhvy4XRTnmkK0HigbknFtMDLA,119141
20
20
  cirq/circuits/circuit_operation.py,sha256=8zeK57Xjkavt_ur9ESqocMURTcqD-f2T3hAe95gVB-g,36395
21
- cirq/circuits/circuit_operation_test.py,sha256=CcIX8n_aASmKR2iqWKyoCbyarEVN9WAl5VSHdBVznKg,48862
22
- cirq/circuits/circuit_test.py,sha256=KjRYRwUgC65vxf_3hdZLgid7sNm5Fn_lcIp15Q4yWyk,162757
21
+ cirq/circuits/circuit_operation_test.py,sha256=aC4gS7O64kS-n2RPO2d7W7pTN2M0eNGTVOGhhv3HOgs,48899
22
+ cirq/circuits/circuit_test.py,sha256=3I_L3i2qv0uSgVorSRd8T7u8CiglPtgU_oFGxf9RkBI,162793
23
23
  cirq/circuits/frozen_circuit.py,sha256=TLjw_UmbnV-Lhtn63RqTnCBbQiZPvsJdS-s99-aMRGI,9232
24
- cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
24
+ cirq/circuits/frozen_circuit_test.py,sha256=WBG2tc3VHYNxZV-FpL-opgsgUOZCCFqyrClt4fMDMrg,4169
25
25
  cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
26
- cirq/circuits/insert_strategy_test.py,sha256=_vjr-ugr7nsR4MvZ4_4npV-SKVcyr_gtXbG4y_yRDUo,1201
26
+ cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
27
27
  cirq/circuits/moment.py,sha256=g6gPgOvRx7sVcxlmjzPvd7UkdFlElCw7bHrahWhrK5M,25924
28
- cirq/circuits/moment_test.py,sha256=672QcwLSTuuJzXIISH9UyMIOX89aYZZD3odvhyzhxLo,31116
28
+ cirq/circuits/moment_test.py,sha256=kfPObC2xXlulWV7exXt6a6wraXrdZJiAV4xTGwXFc5Y,31152
29
29
  cirq/circuits/optimization_pass.py,sha256=8R3AqhL55giV4JPAX052r5hY-erG562Uv_SoNHHXeQU,6499
30
- cirq/circuits/optimization_pass_test.py,sha256=sS15gV16L5eHDzNr4GR_Lc0y62B-K6zL4T2MhcDS1Qc,5927
30
+ cirq/circuits/optimization_pass_test.py,sha256=g93T6fhtlGH8s-iepFmyvR4xWqUpmK25-xS1QYzkY0A,5963
31
31
  cirq/circuits/qasm_output.py,sha256=Kp0BWiMpCUxt5zXcE-tynU7R8U7hwCHG-hnjzfzeBiM,13120
32
- cirq/circuits/qasm_output_test.py,sha256=o4A24t-gcQF6EptY5zQE4SoGjycSQAyMJux1no7FPsk,13840
32
+ cirq/circuits/qasm_output_test.py,sha256=YC0LxqLycNgw8Ozd3Q9_DAH-p7TsMLPYiH2pnKLEkks,13877
33
33
  cirq/circuits/text_diagram_drawer.py,sha256=EGnSC4lB12NdgAPeKWc6yaBUr1_bbcd1hhff4zm1GZM,16610
34
- cirq/circuits/text_diagram_drawer_test.py,sha256=CAp28ZagRpOZjRJ35uGQR7QmKxSLl65lgq8Vx8GKsjg,10751
34
+ cirq/circuits/text_diagram_drawer_test.py,sha256=iaK7AzVlS4iMAg53YlqaYiJTaMqfhA-noLUBapG7yg4,10787
35
35
  cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
- cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
37
- cirq/contrib/json_test.py,sha256=yMnOX-Cm2GWgMNZr_kX0kF9x3xo7goyLt4GGhinrDLs,1141
36
+ cirq/contrib/json.py,sha256=ITiaznB1mndxtasVO5QTeu-31h3vgGTBCGFzousOxHE,788
37
+ cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
38
38
  cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
39
  cirq/contrib/acquaintance/bipartite.py,sha256=8PsPAo2POlrQ4sw6pnUu_WOiGL9VD1ASCy8rkpm2XnI,6545
40
- cirq/contrib/acquaintance/bipartite_test.py,sha256=_Sx75GV9DEbyZB-zQ9mCj--SCr0aGVBFzo-YIwq1E6I,16064
40
+ cirq/contrib/acquaintance/bipartite_test.py,sha256=sLygAb40mRfEk1bAzgPf1mMlgIqrWvhay8SW5aTSfwk,16100
41
41
  cirq/contrib/acquaintance/devices.py,sha256=5wnuG4IFrva4J3muqf81iOS3zlxuEZ81V2UA06PeB6s,3064
42
- cirq/contrib/acquaintance/devices_test.py,sha256=RnNwPp1PHNrcygibMdrJEMViBCm4eTXZgI0PUqAeoCM,1207
42
+ cirq/contrib/acquaintance/devices_test.py,sha256=l76xfjzmYhvWash8_XDUKhqFkfTBT-rFqdfbjLbxreI,1243
43
43
  cirq/contrib/acquaintance/executor.py,sha256=a6SIaykIfZaIlxHxlgpwzqfvUb46O2V2i_qEJsEGlcI,8661
44
- cirq/contrib/acquaintance/executor_test.py,sha256=VxmGijgjAjuy6s-H5L9Ynu4CxYXFr9rPc2FfuoQjdXs,7903
44
+ cirq/contrib/acquaintance/executor_test.py,sha256=ckGFNNV1EsS1XE5jxn1x8A3KannC-L20fCnxcnypmBg,7939
45
45
  cirq/contrib/acquaintance/gates.py,sha256=Fkk7f0YwVLULh1hGXqjtGm5etb9xuhgvQlb3hrcMML0,13571
46
46
  cirq/contrib/acquaintance/gates_test.py,sha256=hKN3uX7ew4Sv8j0DTBbBm8n64NxHMC4s6kFTpaPspac,15044
47
47
  cirq/contrib/acquaintance/inspection_utils.py,sha256=yTJ-ferTfvLst8Lm6mchsQV5qgFI-D6LtnQD_dG-B9Q,2636
48
- cirq/contrib/acquaintance/inspection_utils_test.py,sha256=KmlUmwmeDQyN-oHg_o6vsyuH5_PbIkxR7b72L74O2RQ,1442
48
+ cirq/contrib/acquaintance/inspection_utils_test.py,sha256=e2mLz0Wc-6dGTdBcfiW94fYIxW0pg-W1ePalO6bCR7M,1478
49
49
  cirq/contrib/acquaintance/mutation_utils.py,sha256=q-aikSKFLGISgTNXYDGinFUW30mNLPjqTj00-SeDU80,4754
50
- cirq/contrib/acquaintance/mutation_utils_test.py,sha256=1oh6xraTRcFhu-BuKRxptjIiGkFCtSVJm9MAdyCjyIw,7864
50
+ cirq/contrib/acquaintance/mutation_utils_test.py,sha256=_wDNSWIUAkgFa8T6xlcxP0bItLpEiSGd37mdDgEobq0,7900
51
51
  cirq/contrib/acquaintance/optimizers.py,sha256=ZPsZW-ZakNcLMRATpVkNuBT7vBd55XqHUU3dtzMO0rw,2121
52
- cirq/contrib/acquaintance/optimizers_test.py,sha256=ldNF-N6ZYIeF6adcuZswER3djf5eEtRqvxUq8Nhzeuo,2463
52
+ cirq/contrib/acquaintance/optimizers_test.py,sha256=SGNvMoW73sdqVJr08NvXJeQvd0zg2y1rOB6iUEeHDsA,2500
53
53
  cirq/contrib/acquaintance/permutation.py,sha256=S9ngL-kIkTle0gBYbp-OzIxTUQl7Hp5C_w4UVd5apUg,11832
54
- cirq/contrib/acquaintance/permutation_test.py,sha256=6Q9s-qvEoLbDEmoPrtyXv_57uIDzggooJEcqY3mRzZg,11503
54
+ cirq/contrib/acquaintance/permutation_test.py,sha256=KsvkWSv9CH5TXPb0ZJMCwvHoYbkuxYhBrZpA-58aUi0,11539
55
55
  cirq/contrib/acquaintance/shift.py,sha256=ZZ5Krvgx5OOLhr5qLOVvP0G_dvGMgy-fIrJPxIgY10U,3107
56
56
  cirq/contrib/acquaintance/shift_swap_network.py,sha256=WNWUZtUmyzzt3xZg6g_FgmbTNON5gtU9uKWXjWhB9YU,5311
57
- cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
58
- cirq/contrib/acquaintance/shift_test.py,sha256=CFWbjmASfBelwooCdH29I3pP27D6zBc_56mMVI-KTnE,4603
59
- cirq/contrib/acquaintance/testing.py,sha256=auzzDDTTBiE6-0PGnJs-etYwozGqBoJ7JVlPuXcky-E,1582
57
+ cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=qtJtW4L1bi03ljgCXqcuD09T_DyFJzDHUI9JHsZMvGU,11626
58
+ cirq/contrib/acquaintance/shift_test.py,sha256=srf0_Sa-k6xIzwY9lCCwGn7ev2fFnJ4la1OHy9XmgX0,4639
59
+ cirq/contrib/acquaintance/testing.py,sha256=YMgVGA9ZUMOeQ5tiwbzeZQ6HyQpDyZ5vMoHAVJHHy6Y,1618
60
60
  cirq/contrib/acquaintance/topological_sort.py,sha256=u57w5NVj3dddXMUO9N_WcOl0CaDA2nXS3SZtrlLEFCo,2976
61
- cirq/contrib/acquaintance/topological_sort_test.py,sha256=LUQzMRM15EiaPQaSXiiS6gB1EZmhFT6d5JUsuFefMEQ,1680
61
+ cirq/contrib/acquaintance/topological_sort_test.py,sha256=qYVwguw93ouBO13P95wFb7Igdc8WOdTiK5dNH_asZ0A,1716
62
62
  cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
63
63
  cirq/contrib/acquaintance/strategies/complete.py,sha256=Ty3ua6PC80y_J1lyCOmzoRmMmbv-lnjhS00uxChR8to,2194
64
64
  cirq/contrib/acquaintance/strategies/cubic.py,sha256=9ynZcuGJxG6eH3XZn_8hrDTGPzoWgbaeT7Z2a5wOHvA,3180
65
- cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=8h4tqMjwgsIxja9vIf-NfJbeT1NIXWepJ5K4f9zg2kY,1563
65
+ cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=ew1VlBa-FuhWQnMt1sqngM-fyfJhNLNKs4ZvYHc0ofs,1599
66
66
  cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=Cr7VeT4k8SUoZGdLtw9uw355uQV1fFT161rAscjZDDE,2583
67
- cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=zIMocEKc6rcCSJlyBsI2EJqiNY_iLVrNqruzqiQFDMk,2129
67
+ cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=jgEurSuDAM8oqPUkk2cvDgYQVBNvsc0Jh6ZfbNt-jMU,2165
68
68
  cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
69
  cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=6MKRJLzXWTSUBQ3PPIxYY5ikBwH7MVu7DBAADgY0o-Y,9182
70
- cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=d263Wm3yGedN87SraSlea9OMb0yy3ZkNRnaEYZd8AcU,5876
70
+ cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=isSFAcFj4j0lSPyXfh0i1Rb87Uw05k9GxU7o-wKLCoE,5913
71
71
  cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
72
  cirq/contrib/circuitdag/circuit_dag.py,sha256=chqf4O67gSq56uCSVMj8-n6eHGBP6NYZN9oYNI29p9U,6888
73
- cirq/contrib/circuitdag/circuit_dag_test.py,sha256=Daj480Yk0eisOsQXvYITy2kyLSQJ7g5AHirZzNs_dYw,8222
73
+ cirq/contrib/circuitdag/circuit_dag_test.py,sha256=0qn0Bwy48QI_TQzlxF0lmvz22llrSpRbj5F2RQzGmnc,8258
74
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=VMF_A0_2FYTR89PwgQl-l77U3e0n6PCyjLD-YA5g0NM,3218
76
76
  cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=AJgs1HIkXQvoJ2_ll4oSrT2dwzqFlP4By5B-nYHqUDg,7806
77
77
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
78
  cirq/contrib/graph_device/graph_device.py,sha256=Hi7KZnV_lY_qNhPFyrzdbqvpTHYu7XNc2RC0w96KdV0,7942
79
- cirq/contrib/graph_device/graph_device_test.py,sha256=2Z0jTprCZL4V5-gnOblOpz3p6IRsei1VCNxqLWoWnSo,7203
79
+ cirq/contrib/graph_device/graph_device_test.py,sha256=BM4BsDDofCyOtChTQFX7SBLgGv4lgA0Yl6BKmTqzBwI,7239
80
80
  cirq/contrib/graph_device/hypergraph.py,sha256=QiqOsGLp4XpfpJhKXarnA2PJmAnhQvHc89ve4m5Y1oA,4750
81
- cirq/contrib/graph_device/hypergraph_test.py,sha256=ccwPqqHOWq-ZJ4abhyDrCjXQdrmY1Nb6lP9G_jdi6pw,3769
82
- cirq/contrib/graph_device/uniform_graph_device.py,sha256=ymG7X-wLzZE9hBc9P7Kixf4_Mg4ii6jxCWDiH2GJ3uI,2358
83
- cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=b49Kx1pH_VvD5m-DV2TSI1qe2ZjQQaB76HJVboGyRYs,1616
81
+ cirq/contrib/graph_device/hypergraph_test.py,sha256=uLGGLOdo0Ro4MaDevHU91pheMTX2m7-Hf1bRvJ3UrAo,3805
82
+ cirq/contrib/graph_device/uniform_graph_device.py,sha256=54FG3kpcQesDICgkF8U_iSZudbQNWaUrps6tpMhhXXM,2394
83
+ cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=nmKYkbnxBBvDOcvbSzs_x19aqz4JE4FkD568J77aryI,1652
84
84
  cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
85
- cirq/contrib/hacks/disable_validation.py,sha256=wJEzMoK3qDzhIFDUOIgdKqNDcHl74MJAi0OJuCjl82k,1419
86
- cirq/contrib/hacks/disable_validation_test.py,sha256=B1FjcEZBBCYjLxx5ipb5Nv5NOd5vhQ7tkKpUyCAHVrM,1719
85
+ cirq/contrib/hacks/disable_validation.py,sha256=7Z1_vpGF5sXP3wGIGUysvna0rnFNrpFMmfD0sz7saJ0,1455
86
+ cirq/contrib/hacks/disable_validation_test.py,sha256=sz319WQwkSvkAUr913lhlrh1NM7-ozMffb3MxCjbwgY,1755
87
87
  cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
88
88
  cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCYgow7tl8Pjf5Q,7674
89
- cirq/contrib/noise_models/noise_models_test.py,sha256=wjaFKFldV3pSNa-S_TI8tGmpF6X2nVf2ztSur9J2qrE,10552
89
+ cirq/contrib/noise_models/noise_models_test.py,sha256=oA7HRMPDi9lv9Lqb8idF9C6Vqjh3KuxD00z5JkE5ybw,10588
90
90
  cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
- cirq/contrib/paulistring/clifford_optimize.py,sha256=bdS4pXjBxcJhFiL_jsVeS4Odcd-D02FtyxLVVsWi4LU,7830
92
- cirq/contrib/paulistring/clifford_optimize_test.py,sha256=j-wd7_ZY1wks44y_ZxJeCs2DMEB5yeHk9qQ5EKH0uSA,3929
91
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=ascURgO3SGCUO9ZWC9YEmK0E64rJxnoVOrApbWprJVg,7866
92
+ cirq/contrib/paulistring/clifford_optimize_test.py,sha256=HZBBf13Q6JBLrzulK_--xs-tTiu794tOW2ncYLB3SJ0,3965
93
93
  cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7TyfG3ieJluz8AziQKFCT1EgRKLzWu2aoUGAEcLblGw,6369
94
- cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=5eKp7WJq0LaG_G0kgpxOP0Ik8vxVzDVOJMYUIeCzqNk,8756
95
- cirq/contrib/paulistring/optimize.py,sha256=ArUWzXYpHq9SE7K9FdqsJ5WJg1ZvHs8DP6zHeJMlp18,2707
96
- cirq/contrib/paulistring/optimize_test.py,sha256=qgg0-x89-uuRqtPHJcL_IiDcivKLw6ek_4uj6pSy1ic,3583
97
- cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOWWOAOOcGuStfKPdk,1106
98
- cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=_ghCoFbaBGe9K4VeN_pJTXhFQoLM7q6tnPM5Pu0ryG4,1132
94
+ cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
95
+ cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
96
+ cirq/contrib/paulistring/optimize_test.py,sha256=-CHtu1CsRvq0iO_ET2gtNsRy6odUWMXU4RAI7yFft-k,3619
97
+ cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
98
+ cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
99
99
  cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=FRCaB3Gi5fP5XF5nJankPw0IEIFp6ZlIFQ5OfFFYJvQ,20164
100
100
  cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=yPFWcZiVkUcwwpjQQsT135JPmj9p5KOS9urzNqUWAfQ,35501
101
- cirq/contrib/paulistring/pauli_string_optimize.py,sha256=QhowjgeI0vXg_XvF7FmpUgGgDJP9xCbsYS8_womA4Ho,2903
102
- cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=pygO7C4Voeucrt1cDrhrADe-rcJnGpdhcscjmugMPaQ,2919
103
- cirq/contrib/paulistring/recombine.py,sha256=Q_0RCTfg5i7WaqoynimpYXkuSuE2BIov8jYcan8V1Gk,4343
104
- cirq/contrib/paulistring/recombine_test.py,sha256=AVeluZbl76Bzjc_C9BoeNzscraM5bcMtlAwAW2CHFz0,1923
105
- cirq/contrib/paulistring/separate.py,sha256=dtGwqXxEiRCxo21wV8uAlA1E3GKQGxr3FuQWqy-jTdM,3926
106
- cirq/contrib/paulistring/separate_test.py,sha256=R8YSAoHJEuRnXZAiAJVl-x8u-RbtLmjwAqnCcrUgNCU,1275
101
+ cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
102
+ cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
103
+ cirq/contrib/paulistring/recombine.py,sha256=Aym48ZRNDyFQOgBSqVj4gHvz8ZnjBjs8YAk6NIIkp74,4379
104
+ cirq/contrib/paulistring/recombine_test.py,sha256=ydCc2JxmmjZ8TR-Ojyy5lIRed_P-n6UKWIRZ6HIlzVc,1959
105
+ cirq/contrib/paulistring/separate.py,sha256=LKjzjZVlo3D5UCqzff9anDuuxaW9CiAI-R7N6VGnMFw,3962
106
+ cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
107
107
  cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
108
- cirq/contrib/qasm_import/_lexer.py,sha256=RkrbOoT5flW_NEzdxRgv4nbmJ1mWJWlENPf7aPAVM9Y,2929
109
- cirq/contrib/qasm_import/_lexer_test.py,sha256=q-NgTZMeXFbBa1s6Q66qu0oHHO_f2Tsczn50kVw04Y4,6218
110
- cirq/contrib/qasm_import/_parser.py,sha256=lcXWip0si5ZI8iCEQ-oQQcKj08pPSDnk2Y3u55JiWys,26052
111
- cirq/contrib/qasm_import/_parser_test.py,sha256=71H4zaCQ7nJ-9PB20ZImSmCHhkkEZ6gW238JTLDLPgU,40267
112
- cirq/contrib/qasm_import/exception.py,sha256=Wm6cwUPIkNMPjkv-ELpQ-zSoXaiLOddOQ4iYybwuS6I,695
113
- cirq/contrib/qasm_import/qasm.py,sha256=Ve1oJZEFezeIVam9rsbGwCUzqEXoXrkQbV5CO28G-Fc,950
114
- cirq/contrib/qasm_import/qasm_test.py,sha256=Co2ksl14dBvYtBUB9-9DONjjyV7uTdZqNP8k8dBLS-Y,1861
108
+ cirq/contrib/qasm_import/_lexer.py,sha256=_XlorbGfEXgsqTZcGbtgfEgaJ6mJ8I51pEjlBsaOT6I,2965
109
+ cirq/contrib/qasm_import/_lexer_test.py,sha256=L1Deb3FO5urHnXN-nb4FRKpaDTqITTMLBeUu3JFeWaA,6254
110
+ cirq/contrib/qasm_import/_parser.py,sha256=xvmfYYoTUu-ucZ900vVxCNG8vRzCjuQQmOQ4VpYfOJg,26088
111
+ cirq/contrib/qasm_import/_parser_test.py,sha256=92GQEZixq9rK42RqnHHrqOGeKBdrCIWn5RiM5ygKEaY,40303
112
+ cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
113
+ cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
114
+ cirq/contrib/qasm_import/qasm_test.py,sha256=NhGf4U_xYgJ4ZQmkS-5GoLWpJRweT1R38OcgHcau328,1898
115
115
  cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
116
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
117
- cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
118
- cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
119
- cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=LwXyz5_Amz0RCE4gQKmPgVp6HLD89htEvawqhuKuY-E,2412
120
- cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=rgfZfPup-bR_2kgYDbIUxccnqANPVVs2R3mWlPazsi4,1086
121
- cirq/contrib/qcircuit/qcircuit_test.py,sha256=2dQOCScjW_0PQHMWfdlzvdHuMZ4PdwB5Ybj-q-2G8U8,6089
117
+ cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=GV9pV2PsSm0EbgREdDvXrCOcys_K6Weezpo1AOBBXP8,4596
118
+ cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=mNeqAKJwzE4sZQEadto8EFuP_UI9ckfMJFzqfBHuYhc,2429
119
+ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=am9X5DsgQ569P2-nKfZn6oOYMbxNaaYCsJ4IyZvCpwg,2486
120
+ cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
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=x1nmPFHlp1ZAQC41aYZsHzvBvTRzNZ0azXb-a62ylsQ,19389
124
- cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=hVwInjcdS9jKPKeDoQ8EnxjwESC_QLvgEOaykwk27rI,12400
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=3Z1lVHDh8uvX7hSt9_VhnDcvqWuu-BqgjwvH8PJHmAE,19425
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=fJPsbmaADRvwyWCBmKRsn1YYxR88LDkf1Sz_Ye3wWrE,8672
127
- cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
128
- cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
129
- cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
127
+ cirq/contrib/quimb/density_matrix_test.py,sha256=lsDKLOGsr7vXTJAf5mXFXrDRn_QM-s5BoTABubWCtEU,3036
128
+ cirq/contrib/quimb/grid_circuits.py,sha256=CVvXHrKdEec4ZOQzYipezejElpljODOeoXx3kMBYulU,4664
129
+ cirq/contrib/quimb/grid_circuits_test.py,sha256=gemrEO7qcxx7L4bIJbA6gHd4Ub3kVf8e_IQY6U9dyv8,3260
130
130
  cirq/contrib/quimb/mps_simulator.py,sha256=xEtLqkAHNavyUr8IuBJ-RHi_O4qK9DoIbNSOfZyR8u0,24710
131
- cirq/contrib/quimb/mps_simulator_test.py,sha256=sg1l7mtJh3HrUQkS3cRv5M0LAQG2RUR0Tr2osjjXG0k,17142
131
+ cirq/contrib/quimb/mps_simulator_test.py,sha256=x4Ro-nAEb3xbr0I4pjw3oTRK4yRCYaRmv7obcr2ti9o,17179
132
132
  cirq/contrib/quimb/state_vector.py,sha256=Hc0HbcJO6O8s3nLEJjabQikF1flN49FUn-Bj-xPE2Jk,6721
133
- cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
133
+ cirq/contrib/quimb/state_vector_test.py,sha256=l1soE2DqwBkPcinSFRRsmG36ukJ5Bahrin7SfIq4W34,5837
134
134
  cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
135
- cirq/contrib/quirk/export_to_quirk.py,sha256=RwxIyLSy0N0DjzKQDb2CcUBRvK7LX5NZ4Vgp4FvIRyw,3837
136
- cirq/contrib/quirk/export_to_quirk_test.py,sha256=XDs5VT-i78-Jw4kp4ZjDqNAi1fVzUqrHxVnANj_4l5s,11986
137
- cirq/contrib/quirk/linearize_circuit.py,sha256=Q5KEQ6L4QLqPwaLi4G-w06tWLvK5OOi0s209B2dpNqk,1545
135
+ cirq/contrib/quirk/export_to_quirk.py,sha256=CAhgt_9aCHnLbAKGGotPYAD0tHAhy41UTSeSAGtXwUA,3873
136
+ cirq/contrib/quirk/export_to_quirk_test.py,sha256=HVIvNP8pSx7gmpTZ6TAf2YZGs--bPK0DVcfjX-xjHbI,12022
137
+ cirq/contrib/quirk/linearize_circuit.py,sha256=ackWBymRhMLOL9MBvPkamXLfOQG0xDKOHhP01_l1G9Y,1581
138
138
  cirq/contrib/quirk/quirk_gate.py,sha256=2xMuZTG-Mqfcrw7vQccProRZz0cfT8CjhdZln0bUL2c,7309
139
139
  cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
140
- cirq/contrib/routing/device.py,sha256=bj0AdDB9xnXqzrsSy2C3puVOza0bU-GhImoEr1IBZDw,2889
141
- cirq/contrib/routing/device_test.py,sha256=fGGN9agUEEusrzCaodsmCWMJE7LBF4Vc9JQ9KL_7b9A,1926
140
+ cirq/contrib/routing/device.py,sha256=RecjRwGN9uOe9ax7omPoLQfNY_n6QfLLlteE81ySwt8,2925
141
+ cirq/contrib/routing/device_test.py,sha256=60ZAstzmHpw9XxrYd3HOMpWnXaEWmH2yq_zJmxLhC8E,1962
142
142
  cirq/contrib/routing/greedy.py,sha256=TBkt0z76Fefs_6rlKE3sQXGqo_96GYsVDixrMiz9Oaw,13929
143
- cirq/contrib/routing/greedy_test.py,sha256=dlWCkW-V2SVN5wphi4gRq2ogKIVsGSBLLc1AkBhdmg4,2254
143
+ cirq/contrib/routing/greedy_test.py,sha256=i4XSZyERmHKTkaLCHV5cBk0qH-LnRg8tcJVyKM2slmE,2290
144
144
  cirq/contrib/routing/initialization.py,sha256=M6z2eSiFaoZutZFQXhTJrQKdNVp2TEBtEPfmwGUlZAk,3733
145
- cirq/contrib/routing/initialization_test.py,sha256=oyvC90NJZBMkC8zFYfK6T8aCdDPZj_Jc8KcMVvDrAs4,2497
146
- cirq/contrib/routing/router.py,sha256=e-1AYvPFPFbK9G0C0pfkxlJy4RjoTpaf23ndUuS1v7U,2565
147
- cirq/contrib/routing/router_test.py,sha256=eIoKRCOMgXdAbxKURgD2rBhlz47AQXqDMbwyqKTz-ng,6330
145
+ cirq/contrib/routing/initialization_test.py,sha256=-YzTK9rgiIjUdJnPQrhXtaxY6j5q6jnzs7S_sDdf0V8,2533
146
+ cirq/contrib/routing/router.py,sha256=SmhXumwCzxAf5KBPD7edtl1wawNDxZuCXWNRR6Cz7I0,2603
147
+ cirq/contrib/routing/router_test.py,sha256=3VXVTexolCP0CKgsCSu6fMmEliQE48EcSq2uKujfJUY,6366
148
148
  cirq/contrib/routing/swap_network.py,sha256=3isu0X6KZS6Fkp6ZdZcSNpqP4IJVjxfY818GCI_kQlk,2385
149
- cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98Ty2TtOI1zXzU,4816
149
+ cirq/contrib/routing/swap_network_test.py,sha256=iiiSLBi4kGr_W6TqpT8Zq0VA8haNnsMk-9wl6D0nsec,4852
150
150
  cirq/contrib/routing/utils.py,sha256=8fhDAqpYI8Tn12aTAOHjThzlv7QM0fbVrUWIUXgM9sg,3786
151
- cirq/contrib/routing/utils_test.py,sha256=WzOWrun1hnvSI6A4pA0jHRzSsiLCjZBa6ARGkYoBK9Y,2020
151
+ cirq/contrib/routing/utils_test.py,sha256=4ssy2pXdHKRv99on91ag1SgZihYEfNR96i4AuTh90nM,2057
152
152
  cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
153
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=C2nM3J7tR5nHbL32vklZiCOHTglI8shWeHHBHRt6uxg,10882
154
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=TaO33Z5IYLQcFxpaYXbCiTjQdtgeBwL5qhT2TjbHpDA,13847
153
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=MQSONppSKLWXckXFYKQ2CJ0aXHEgaaOOmdWpHWysClo,10920
154
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=ZtJpaXOeFG2PgywULlybSf8LZ24yT4nh2oiMepDXKxg,13884
155
155
  cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
156
156
  cirq/contrib/svg/svg.py,sha256=QQs--lyGCOY8ynbUIxdJf-i-8X_fU8NRjPIn8ELUnIk,9410
157
- cirq/contrib/svg/svg_test.py,sha256=RIWFUT2uIRlvH-oT3gRLDBxkVX2Yp2EWgMXYVf_Az3g,2470
157
+ cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
158
158
  cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
159
159
  cirq/devices/device.py,sha256=4MXGo_NHHlysc3aK5a29jgdmjJniA6VCum8tUDW4HFw,5407
160
- cirq/devices/device_test.py,sha256=YRZvCr8bsrwpajH4JXjtBwpv-wBnHHgw5PaWBqgjfXQ,1157
160
+ cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
161
161
  cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
162
- cirq/devices/grid_device_metadata_test.py,sha256=jUnuBRH_ufJUIp4fA70z7IOXCbIxYAbgfHwYbC-nTJ8,8593
162
+ cirq/devices/grid_device_metadata_test.py,sha256=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
163
163
  cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
164
164
  cirq/devices/grid_qubit_test.py,sha256=3-H-xzJre0H36J83vF3U2oK1cojZKyv2oJ6UeD57roA,15011
165
165
  cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
@@ -237,7 +237,7 @@ cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=6UhV6T5Os3omTDGNy8v
237
237
  cirq/interop/quirk/cells/measurement_cells.py,sha256=_6a6jm-EP9khPm2eZZu2ArlTdvfLzo1bW7LZ9GFaXVg,1539
238
238
  cirq/interop/quirk/cells/measurement_cells_test.py,sha256=guP6XrUdM2gxOhjqc3QyWOSLYpkb9gZOZRPuyC5gPhM,1582
239
239
  cirq/interop/quirk/cells/parse.py,sha256=Ilyzz9rbe9XYExVlj4rcJsrIWN4TnAj6LlVl37S9MO8,11873
240
- cirq/interop/quirk/cells/parse_test.py,sha256=1L3qRRaz8Q0vh8N92uFwI7G-ez97mKIqubQgp10uPsI,7473
240
+ cirq/interop/quirk/cells/parse_test.py,sha256=zmhvD08_yU7UMOvmG3i0dTwOIY-Qy9Q4iovpLleAIWA,7589
241
241
  cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=swv_ovLaqO073j-uo6JtII_Sw_Nh51e53tSq-8JREoM,3424
242
242
  cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=Yk1zMK1G-M58jph3m9vLwA_ouLbtgoEq0hC2Go-8N88,4516
243
243
  cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
@@ -340,7 +340,7 @@ cirq/ops/pauli_interaction_gate_test.py,sha256=2BMyxn_Ys4OsyUGQWaO2Ez88LinV5zt0W
340
340
  cirq/ops/pauli_measurement_gate.py,sha256=R64b1zbnwecKTkZHXzOcro21OubDu-wibRk5ppwFfLk,7217
341
341
  cirq/ops/pauli_measurement_gate_test.py,sha256=acKmYvwSQniIX2FtOCVrIPRPmyUBeV4uNUFmyShJixE,6778
342
342
  cirq/ops/pauli_string.py,sha256=OUqhn_gdf3RkYM3G1amiPaHMU89kOUBCSA3AFaWjGnI,66771
343
- cirq/ops/pauli_string_phasor.py,sha256=WZTsn6ed5H0M3io7ErMrPjFYP9o5huWN63zuabR6PYw,18280
343
+ cirq/ops/pauli_string_phasor.py,sha256=MKCFPfkh-sSANI1yQDniwVohAQqaLkMdIWEiZyhNJl8,18276
344
344
  cirq/ops/pauli_string_phasor_test.py,sha256=R6YLz66Q1Mh2BblMVmXpdR32iNRy_TK1mPENfbzz3G4,27731
345
345
  cirq/ops/pauli_string_raw_types.py,sha256=200Epv_YmR33YVEL8wT198S04GAruyG7I0xVtVk8oqk,2269
346
346
  cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BEX6dQuawRQE,2648
@@ -1000,7 +1000,7 @@ cirq/testing/deprecation_test.py,sha256=CtEW1pOd9wALHVU96DNPGrANT9XRm5fF3nFdZBa2
1000
1000
  cirq/testing/devices.py,sha256=i3v7hOGgblJXxOdZhWeAd-XszsF2PX4-ooTmqUdkAoM,3259
1001
1001
  cirq/testing/devices_test.py,sha256=4cqjBi9BhmJpBdUq-nEsrtRYNhIdvTQKYynfA_CoFH8,2885
1002
1002
  cirq/testing/equals_tester.py,sha256=3rTAyPAQs-Ocy8v26SzSSjmaqz3ROk0oZw0DpNWaWs0,6587
1003
- cirq/testing/equals_tester_test.py,sha256=9Rl9i-ccl7OAF_aXbVUiBgF08BeHJfn37I5Nk1etRag,10366
1003
+ cirq/testing/equals_tester_test.py,sha256=SR0wJuRWFydBkQIAPxbupRHSN43v0HpbqQHD_DwAYeU,10559
1004
1004
  cirq/testing/equivalent_basis_map.py,sha256=y9OlbBOWn-AC7l5x4iLfq5T4q8SxaWX_a-__QjL8_p0,2633
1005
1005
  cirq/testing/equivalent_basis_map_test.py,sha256=uJ4Uxa7Dmvvgh_FX65jaXXtfTU8afigPg7X7LyI88fs,1503
1006
1006
  cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
@@ -1182,15 +1182,15 @@ cirq/value/probability_test.py,sha256=TyomoRJ97eO0Wcmzc0Dlm7_iqFFTgKetnTwYcbvhL4
1182
1182
  cirq/value/product_state.py,sha256=C72NlKOkHXhlAeh6Zz2uO1JzZD1p-E67RhU2Hws_8aw,9026
1183
1183
  cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
1184
1184
  cirq/value/random_state.py,sha256=aJ2czSgM7Oiy4lrL4QPWirZy3o7C5MdKn8TDKR-aBVw,2063
1185
- cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5BU,1348
1186
- cirq/value/timestamp.py,sha256=a7PFlJgvmGln7LJzhJK7g0JJt8cQD7JnHjC6BEYMFs0,3604
1187
- cirq/value/timestamp_test.py,sha256=kEzKyhA0j1DnMlp41olZ7ure949nGP90Jw5OscFonwI,4030
1185
+ cirq/value/random_state_test.py,sha256=jfwVpo8Aos4QCGI1Tj_UHj0EJo1zKoD4YkZBroxzyCE,1358
1186
+ cirq/value/timestamp.py,sha256=nVAbM4PaAqu9a67u1wRewcOPC_S_-wn_3dedba20qUc,3688
1187
+ cirq/value/timestamp_test.py,sha256=lewJmgbIclbeKZ-_lbP51yr2BJgTKWzTQlvxy80r_2w,4146
1188
1188
  cirq/value/type_alias.py,sha256=bmKOnIIiHbjU4x62QBxAPyvdzsyv9fGyMEBz_ivwBo8,1128
1189
1189
  cirq/value/value_equality_attr.py,sha256=ZaCd8VW36yKENuBlmxjbdUp8NZa9wlegJqnE9vTN7G0,10545
1190
1190
  cirq/value/value_equality_attr_test.py,sha256=7CO1U7ct4IeloutMygx5SBrQQu9FffhORI0K3eB2-cA,6520
1191
1191
  cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1192
1192
  cirq/vis/density_matrix.py,sha256=8jadiGKgOG86llpgCahDcBJnWw0IpCooWWREJcNGXP4,4819
1193
- cirq/vis/density_matrix_test.py,sha256=PBqsp4BjIubKWmei5FFzt5345_g_Iu-MR41jDR6Qa8Q,6907
1193
+ cirq/vis/density_matrix_test.py,sha256=gsCjGjWVsAgyEdliFqaGKuEWZSwLH-JP0unZ2D7XxYk,7045
1194
1194
  cirq/vis/heatmap.py,sha256=zQi8LqyZZUFXKKAzFgyFWPoo5MK51D126ODIqRFhtjg,17765
1195
1195
  cirq/vis/heatmap_test.py,sha256=6CEVTaS6jfpdE7EhJIs7D_AXclA0pS_calDAHx0gW2Q,20550
1196
1196
  cirq/vis/histogram.py,sha256=Zo4JCkQm7zNqUmae9e4hYd0fFcEY__TXaGl5mNkG-5M,5107
@@ -1201,25 +1201,25 @@ cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
1201
1201
  cirq/vis/vis_utils_test.py,sha256=V_41sZlIRzuvmhk_wgDyQl6XyXzEOTSr9CmXWzxnD34,947
1202
1202
  cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1203
1203
  cirq/work/collector.py,sha256=UqvhkMJm4fl4M_Xhc0xI2xc7FlVmMRDwKrQ6N6v-Icc,7870
1204
- cirq/work/collector_test.py,sha256=MirBDZ584HMZ3nJRUOSSQZcAyLR6sKc124GTQqPkunc,4885
1204
+ cirq/work/collector_test.py,sha256=Vz41CZUvBhp4dKb_V6jW4RegAARQEGt7D5yBMPTSv5s,4968
1205
1205
  cirq/work/observable_grouping.py,sha256=Nx-oeih6fCDVxux3E3b6_Q4xDBJaEhzujc9Y2xYX8uY,3492
1206
1206
  cirq/work/observable_grouping_test.py,sha256=NzTPw6PD0-jvRRsGj4Q1kmZRj68I9SXbKR_PBr7OZAM,5875
1207
- cirq/work/observable_measurement.py,sha256=On5e9So3q2jMrtAhiXcbvCNZQPMrzABZxjed0LHzqjo,28303
1208
- cirq/work/observable_measurement_data.py,sha256=LOykgXlEcx1HLgHnODAPSuhSmxRRSZGrS5RN67wPHpg,21186
1207
+ cirq/work/observable_measurement.py,sha256=Y6cl2IJSRoMxdhgbJyMeRoqEJh5aLwDvS61ZD9NkizQ,28364
1208
+ cirq/work/observable_measurement_data.py,sha256=kQxXJaZqU2seYrQ6Zt58XgWC7CZKa7Ws20nYcK41v5w,21195
1209
1209
  cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u73k6kxTWU6Vx_tfOI,19696
1210
- cirq/work/observable_measurement_test.py,sha256=0EvlC3rqiKSudEyq24ZYD1NQ6mxYMO9CluP3Clc-BOI,20189
1210
+ cirq/work/observable_measurement_test.py,sha256=5nqIYbHcF5AFSWQVDG9A05eyg55mB36n-Cgly_ldI2Q,21046
1211
1211
  cirq/work/observable_readout_calibration.py,sha256=XM8pY3lAJqwQSuCqVDhx4P2XeDzk-QC2nXMVlhlDz5s,1921
1212
1212
  cirq/work/observable_readout_calibration_test.py,sha256=5XpRIP3VQ1EGtbvnOetElWHIDpKv6d086eyHtAxDeh0,1849
1213
- cirq/work/observable_settings.py,sha256=x4IT5b0ynmTZxEPTGXZ29KXjzIa6kz6aB0jH8tW6lCM,6801
1214
- cirq/work/observable_settings_test.py,sha256=pINRmwyJkracXiQqZddl8QSejm-NBWyXPRio9ecc76k,4281
1213
+ cirq/work/observable_settings.py,sha256=-FTSGTT_Dn-uC619zJMO_F_PJc8Qi3FRmT4TzaKU61Q,6744
1214
+ cirq/work/observable_settings_test.py,sha256=i4BMv74RT_32QPuf8W7pbAFygq_hJtwjUVfaYEglris,4337
1215
1215
  cirq/work/pauli_sum_collector.py,sha256=5Ld5nOS6qe5a9ZZzx7rOinFC78FovWpbObMcPg61lFY,4250
1216
- cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1216
+ cirq/work/pauli_sum_collector_test.py,sha256=PG8rO_XyD21Z4pjcWGA3MLgcE8Nvy0H2iDfX6TQZ9D8,2407
1217
1217
  cirq/work/sampler.py,sha256=b7O3B8bc77KQb8ReLx7qeF8owP1Qwb5_I-RwC6-M_C8,19118
1218
- cirq/work/sampler_test.py,sha256=TBJm3gepuOURwklJTXNdqj0thvdqKUvrZwZqdytJxNY,13313
1218
+ cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1219
1219
  cirq/work/zeros_sampler.py,sha256=vHCfqkXmUcPkaDuKHlY-UQ71dUHVroEtm_XW51mZpHs,2390
1220
1220
  cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1221
- cirq_core-1.6.0.dev20250515174529.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1222
- cirq_core-1.6.0.dev20250515174529.dist-info/METADATA,sha256=SgOOur4Tu2skS7Fz-woUJ7a-GtmIG458pybObZkwUUw,4857
1223
- cirq_core-1.6.0.dev20250515174529.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1224
- cirq_core-1.6.0.dev20250515174529.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1225
- cirq_core-1.6.0.dev20250515174529.dist-info/RECORD,,
1221
+ cirq_core-1.6.0.dev20250516154249.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1222
+ cirq_core-1.6.0.dev20250516154249.dist-info/METADATA,sha256=jSyePk9-nEc2wJpPfNOe3UPh7_gxwTGwj3NHqiDalos,4857
1223
+ cirq_core-1.6.0.dev20250516154249.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1224
+ cirq_core-1.6.0.dev20250516154249.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1225
+ cirq_core-1.6.0.dev20250516154249.dist-info/RECORD,,