cirq-core 1.2.0.dev20230717225858__py3-none-any.whl → 1.3.0__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.
Files changed (158) hide show
  1. cirq/__init__.py +5 -0
  2. cirq/_compat.py +26 -11
  3. cirq/_compat_test.py +37 -3
  4. cirq/_version.py +31 -1
  5. cirq/_version_test.py +1 -1
  6. cirq/circuits/circuit.py +106 -32
  7. cirq/circuits/circuit_operation.py +2 -2
  8. cirq/circuits/circuit_operation_test.py +1 -1
  9. cirq/circuits/circuit_test.py +109 -3
  10. cirq/circuits/frozen_circuit.py +80 -5
  11. cirq/circuits/frozen_circuit_test.py +47 -2
  12. cirq/circuits/qasm_output_test.py +9 -9
  13. cirq/conftest.py +1 -2
  14. cirq/contrib/acquaintance/devices.py +1 -1
  15. cirq/contrib/hacks/disable_validation_test.py +1 -1
  16. cirq/contrib/noise_models/noise_models.py +1 -2
  17. cirq/contrib/paulistring/clifford_optimize.py +1 -1
  18. cirq/contrib/paulistring/clifford_target_gateset_test.py +4 -4
  19. cirq/contrib/qcircuit/qcircuit_pdf.py +1 -1
  20. cirq/contrib/quimb/density_matrix.py +2 -3
  21. cirq/contrib/quimb/grid_circuits.py +3 -3
  22. cirq/contrib/quimb/state_vector.py +3 -5
  23. cirq/contrib/routing/utils.py +1 -2
  24. cirq/contrib/svg/svg.py +4 -6
  25. cirq/devices/grid_qubit.py +49 -38
  26. cirq/devices/grid_qubit_test.py +1 -3
  27. cirq/devices/insertion_noise_model.py +21 -1
  28. cirq/devices/insertion_noise_model_test.py +6 -0
  29. cirq/devices/line_qubit.py +67 -40
  30. cirq/devices/named_topologies.py +8 -14
  31. cirq/devices/noise_properties.py +1 -1
  32. cirq/devices/noise_utils.py +7 -5
  33. cirq/devices/noise_utils_test.py +7 -0
  34. cirq/experiments/fidelity_estimation_test.py +1 -1
  35. cirq/experiments/qubit_characterizations.py +6 -5
  36. cirq/experiments/random_quantum_circuit_generation.py +1 -1
  37. cirq/experiments/random_quantum_circuit_generation_test.py +28 -1
  38. cirq/experiments/readout_confusion_matrix.py +6 -6
  39. cirq/experiments/xeb_fitting.py +3 -5
  40. cirq/experiments/xeb_fitting_test.py +2 -2
  41. cirq/experiments/xeb_sampling.py +1 -1
  42. cirq/interop/quirk/url_to_circuit.py +40 -38
  43. cirq/json_resolver_cache.py +2 -0
  44. cirq/linalg/decompositions.py +6 -5
  45. cirq/ops/__init__.py +2 -0
  46. cirq/ops/classically_controlled_operation.py +1 -1
  47. cirq/ops/clifford_gate.py +9 -9
  48. cirq/ops/clifford_gate_test.py +3 -4
  49. cirq/ops/common_channels.py +2 -5
  50. cirq/ops/common_channels_test.py +3 -5
  51. cirq/ops/common_gates_test.py +7 -7
  52. cirq/ops/controlled_operation_test.py +2 -2
  53. cirq/ops/dense_pauli_string.py +3 -0
  54. cirq/ops/eigen_gate_test.py +1 -3
  55. cirq/ops/fourier_transform.py +1 -2
  56. cirq/ops/fsim_gate.py +1 -1
  57. cirq/ops/gate_features_test.py +2 -2
  58. cirq/ops/gate_operation_test.py +1 -2
  59. cirq/ops/greedy_qubit_manager.py +86 -0
  60. cirq/ops/greedy_qubit_manager_test.py +98 -0
  61. cirq/ops/linear_combinations.py +1 -1
  62. cirq/ops/named_qubit.py +55 -18
  63. cirq/ops/parity_gates.py +65 -18
  64. cirq/ops/parity_gates_test.py +41 -2
  65. cirq/ops/pauli_gates.py +2 -2
  66. cirq/ops/pauli_string.py +3 -4
  67. cirq/ops/pauli_string_raw_types_test.py +3 -3
  68. cirq/ops/pauli_string_test.py +3 -4
  69. cirq/ops/random_gate_channel_test.py +3 -3
  70. cirq/ops/raw_types.py +1 -1
  71. cirq/ops/raw_types_test.py +5 -5
  72. cirq/ops/three_qubit_gates.py +12 -8
  73. cirq/protocols/act_on_protocol_test.py +9 -9
  74. cirq/protocols/apply_channel_protocol.py +9 -6
  75. cirq/protocols/apply_unitary_protocol_test.py +1 -1
  76. cirq/protocols/equal_up_to_global_phase_protocol_test.py +2 -2
  77. cirq/protocols/has_stabilizer_effect_protocol.py +52 -6
  78. cirq/protocols/has_stabilizer_effect_protocol_test.py +21 -8
  79. cirq/protocols/has_unitary_protocol_test.py +1 -3
  80. cirq/protocols/json_serialization.py +6 -6
  81. cirq/protocols/json_serialization_test.py +7 -14
  82. cirq/protocols/json_test_data/InsertionNoiseModel.json +91 -0
  83. cirq/protocols/json_test_data/InsertionNoiseModel.repr +4 -0
  84. cirq/protocols/json_test_data/OpIdentifier.json +45 -10
  85. cirq/protocols/json_test_data/OpIdentifier.repr +7 -1
  86. cirq/protocols/json_test_data/spec.py +4 -0
  87. cirq/protocols/measurement_key_protocol_test.py +1 -1
  88. cirq/protocols/unitary_protocol_test.py +13 -16
  89. cirq/qis/clifford_tableau.py +7 -8
  90. cirq/qis/measures.py +1 -1
  91. cirq/qis/states.py +2 -3
  92. cirq/sim/__init__.py +2 -0
  93. cirq/sim/classical_simulator.py +107 -0
  94. cirq/sim/classical_simulator_test.py +207 -0
  95. cirq/sim/clifford/clifford_simulator_test.py +7 -7
  96. cirq/sim/clifford/stabilizer_simulation_state.py +2 -2
  97. cirq/sim/clifford/stabilizer_state_ch_form.py +7 -7
  98. cirq/sim/density_matrix_simulation_state.py +19 -4
  99. cirq/sim/density_matrix_simulator_test.py +5 -13
  100. cirq/sim/simulation_state_test.py +13 -14
  101. cirq/sim/simulator_test.py +6 -9
  102. cirq/sim/state_vector_simulation_state.py +1 -1
  103. cirq/study/resolver.py +41 -41
  104. cirq/study/resolver_test.py +13 -12
  105. cirq/testing/__init__.py +4 -1
  106. cirq/testing/circuit_compare.py +1 -1
  107. cirq/testing/circuit_compare_test.py +11 -11
  108. cirq/testing/consistent_controlled_gate_op.py +15 -1
  109. cirq/testing/consistent_controlled_gate_op_test.py +12 -3
  110. cirq/testing/consistent_decomposition.py +0 -1
  111. cirq/testing/consistent_protocols.py +6 -1
  112. cirq/testing/consistent_protocols_test.py +5 -10
  113. cirq/testing/consistent_qasm.py +2 -4
  114. cirq/testing/consistent_qasm_test.py +2 -3
  115. cirq/testing/consistent_specified_has_unitary_test.py +1 -3
  116. cirq/testing/equals_tester.py +1 -1
  117. cirq/testing/equals_tester_test.py +5 -5
  118. cirq/testing/equivalent_repr_eval_test.py +1 -3
  119. cirq/testing/gate_features_test.py +6 -6
  120. cirq/testing/order_tester_test.py +1 -3
  121. cirq/testing/random_circuit_test.py +1 -3
  122. cirq/transformers/__init__.py +3 -0
  123. cirq/transformers/analytical_decompositions/__init__.py +1 -0
  124. cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +1 -2
  125. cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py +2 -5
  126. cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py +38 -0
  127. cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py +18 -0
  128. cirq/transformers/expand_composite_test.py +4 -4
  129. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +1 -1
  130. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +1 -2
  131. cirq/transformers/merge_k_qubit_gates_test.py +2 -2
  132. cirq/transformers/qubit_management_transformers.py +177 -0
  133. cirq/transformers/qubit_management_transformers_test.py +250 -0
  134. cirq/transformers/routing/route_circuit_cqc.py +23 -4
  135. cirq/transformers/routing/route_circuit_cqc_test.py +42 -0
  136. cirq/transformers/stratify.py +10 -11
  137. cirq/transformers/target_gatesets/compilation_target_gateset_test.py +10 -10
  138. cirq/transformers/target_gatesets/cz_gateset_test.py +8 -10
  139. cirq/transformers/transformer_primitives.py +138 -28
  140. cirq/value/abc_alt_test.py +4 -4
  141. cirq/value/duration.py +68 -37
  142. cirq/value/duration_test.py +2 -0
  143. cirq/value/measurement_key_test.py +1 -1
  144. cirq/value/product_state.py +4 -8
  145. cirq/value/value_equality_attr.py +12 -5
  146. cirq/vis/heatmap.py +7 -4
  147. cirq/vis/heatmap_test.py +14 -4
  148. cirq/vis/histogram.py +4 -4
  149. cirq/vis/state_histogram.py +10 -6
  150. cirq/vis/state_histogram_test.py +2 -0
  151. cirq/work/observable_measurement_data_test.py +1 -1
  152. cirq/work/observable_measurement_test.py +2 -2
  153. cirq/work/zeros_sampler.py +1 -1
  154. {cirq_core-1.2.0.dev20230717225858.dist-info → cirq_core-1.3.0.dist-info}/METADATA +11 -19
  155. {cirq_core-1.2.0.dev20230717225858.dist-info → cirq_core-1.3.0.dist-info}/RECORD +158 -150
  156. {cirq_core-1.2.0.dev20230717225858.dist-info → cirq_core-1.3.0.dist-info}/WHEEL +1 -1
  157. {cirq_core-1.2.0.dev20230717225858.dist-info → cirq_core-1.3.0.dist-info}/LICENSE +0 -0
  158. {cirq_core-1.2.0.dev20230717225858.dist-info → cirq_core-1.3.0.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,13 @@
1
- cirq/__init__.py,sha256=LMECXdmns--tpCJ6gNtPE7aS-XcOeSG4U83ANhOZPPw,15553
2
- cirq/_compat.py,sha256=9o8FaxU8z0Wu0sM5aNfPndmIkS-zrn6KvY_ZUXyL0RY,28805
3
- cirq/_compat_test.py,sha256=tFt1lskrZi_Pmn8ZDeMxxfCNTivqVGzKiIYrskK0dE4,33898
1
+ cirq/__init__.py,sha256=GlOnPWDvat-Y203LsbXhkC0UnGm9HHiNx2ywz7Bkc3o,15708
2
+ cirq/_compat.py,sha256=YPvewnC0gajEIRjauyz_EuDzs38g-bIBkY_0h91U4Pc,29363
3
+ cirq/_compat_test.py,sha256=84X6ELsb5fv3Hc0_ly8-IQfMnCNQN6tHs6GZFrnuNyI,35005
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
5
  cirq/_import.py,sha256=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=2R1Zokq84xEwOdA9gt5xaTQiq2HzEUUayZo5qjU_G7w,40
8
- cirq/_version_test.py,sha256=ZM9GLAiU02rzyJQ_HOT2o_tZixJ0lMXs4tCkOareqTA,133
9
- cirq/conftest.py,sha256=mHCDs5--u17oLFDAfIlkTS4TRGSc35eLnZ2CXuIuB7I,1175
10
- cirq/json_resolver_cache.py,sha256=JJiO1dhHsEqYClUv68eg-hiOzbb_C1QiQ-BCcvoe4Ck,13067
7
+ cirq/_version.py,sha256=emd6olVXGtPNA_lcN-WLV5KW0VmziyyYg-z5XZrka70,1184
8
+ cirq/_version_test.py,sha256=Ea3ZNdQKZBsZrSc9xle7TUdT9bUINs-qezPruQ_m38s,133
9
+ cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
+ cirq/json_resolver_cache.py,sha256=S0HaPOCUIck-vNSQlS6KxnQtle6w-2dGuSxkUbJQY9Y,13168
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/type_workarounds.py,sha256=-qyat6dmVoz8z76I-JLrnK1vAXmY9G1Qa3LYjQ4rJlI,959
13
13
  cirq/circuits/__init__.py,sha256=UPBO-WG6VodQWDkYgJdBzKK8k9CsxHFGIENM95vh7ac,1117
@@ -17,12 +17,12 @@ cirq/circuits/_box_drawing_character_data.py,sha256=QLoCXwcLL7091RdxEKO259goxt4R
17
17
  cirq/circuits/_box_drawing_character_data_test.py,sha256=XO94z0piwZRHaNZHTf-5tKHQ4MKcDruMeRIKdT8GbYA,1624
18
18
  cirq/circuits/_bucket_priority_queue.py,sha256=hxFuii2fKD8G6EKT_aVLEsA7FmSfqFXPwIbA0KsoSC4,6745
19
19
  cirq/circuits/_bucket_priority_queue_test.py,sha256=t6u_hG7K2e2WKWrgCsKxNRtp4ghKwiCrp0_WSY0W25k,5288
20
- cirq/circuits/circuit.py,sha256=Gsh2EFAE6pR8l7jTIXoTphTHMa_UozG0Pm7Z_IukhOc,111176
21
- cirq/circuits/circuit_operation.py,sha256=Ap5ZcQutkeeaxeU7amOZ_2YeFR4NPQNgGKFX7JU_0jI,34354
22
- cirq/circuits/circuit_operation_test.py,sha256=xUvnU5kIfcu4LBiJ1c00xmW63U6URLAjhaLp2KtxoLY,44704
23
- cirq/circuits/circuit_test.py,sha256=XpTqP_m6KHfSjD_2902U1rMMlEx3aPmheQL3IiazvRo,156543
24
- cirq/circuits/frozen_circuit.py,sha256=KBreiIhxh6yCvOyvozUZZN11afmugeN3u2lyqgieUus,6505
25
- cirq/circuits/frozen_circuit_test.py,sha256=f9u-Rv_Wvt5jkR9C6yRu_2GtXYvMn1-pzyOTsrP3neA,2266
20
+ cirq/circuits/circuit.py,sha256=9if8V9V5PU7oR6jUi9YHeP2uSGdFZ-F0qJdFnbMxOKY,114214
21
+ cirq/circuits/circuit_operation.py,sha256=qdJshRvGRFKwin7Ec_RndIb2Fm3sh7-N9SarEZo6AXM,34354
22
+ cirq/circuits/circuit_operation_test.py,sha256=_0iQJ3h_dnQcQmbGRZbc-NqdglJTXantbj72ggqLKNE,44724
23
+ cirq/circuits/circuit_test.py,sha256=EYIApq2DpZe7HckvySR3JlJdUIfJTSbKHm0lgENP2HA,160111
24
+ cirq/circuits/frozen_circuit.py,sha256=GnFZ6kT1hFpxK6sOzqy1hq2SnKbG7OSu0q3bfGwi7b8,9240
25
+ cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
26
26
  cirq/circuits/insert_strategy.py,sha256=L0OLXuo24TtBfdJGOAG2PsVDMrbvQl4iN5lUk6IPuyo,2851
27
27
  cirq/circuits/insert_strategy_test.py,sha256=dgz13_ssa_GWqzzx5W4G4sJJw4SUHC3-g3K0_Z4TRiA,686
28
28
  cirq/circuits/moment.py,sha256=PVe8sau4HOVQMRLyPnDYs0JCam_3F8G0onwsOvIgTD4,25752
@@ -30,7 +30,7 @@ cirq/circuits/moment_test.py,sha256=SAZR-BxNiFaYaPLKLN59LCBqxvBMrVJWa-js1kfhOZA,
30
30
  cirq/circuits/optimization_pass.py,sha256=uw3ne0-ebZo6GNjwfQMuQ3b5u9RCgyaXRfhpbljlxao,6468
31
31
  cirq/circuits/optimization_pass_test.py,sha256=eQB0NBJ9EvqjgSFGQMgaHIh5niQhksdnvqSXhsj3nOg,5947
32
32
  cirq/circuits/qasm_output.py,sha256=DvERpI5X7F57raJRcuUBe06YWCObB1KLHkBbu1DF8fg,11728
33
- cirq/circuits/qasm_output_test.py,sha256=XMcU94E1_w-324135aKvDI2EqkmOKMUqcDVGMrlYgB4,12238
33
+ cirq/circuits/qasm_output_test.py,sha256=xu_LH3bY-8XAK5vDP0ulcEehVrBsYb6XWZ8o2d3C47U,12254
34
34
  cirq/circuits/text_diagram_drawer.py,sha256=ctZUG5fk2pf4XswHTJG4kteQYzzH0TefL9JWUagLJvc,17232
35
35
  cirq/circuits/text_diagram_drawer_test.py,sha256=2bSoBIeQajRi0aQxqYDpbMlT2eqpx_f-Cmg9XO6A9Jk,10750
36
36
  cirq/contrib/__init__.py,sha256=q8NwuMeqIzKaLsO9L6eKuZbGpldBsvaiIPWou37sZjo,1006
@@ -39,7 +39,7 @@ cirq/contrib/json_test.py,sha256=I9t_WpBfTBaIxKVo0HjK806V_FguTSBR95Y2gu-qYBo,111
39
39
  cirq/contrib/acquaintance/__init__.py,sha256=ggeEgdL-XaBQeEiAcKgknHN4WEwWSu7jAe24GNgG3-o,2233
40
40
  cirq/contrib/acquaintance/bipartite.py,sha256=_UcKNBiCg9j6XcLDINV41KPWKIzEzpmDRd6MlqQOufI,6496
41
41
  cirq/contrib/acquaintance/bipartite_test.py,sha256=hjdJfjDsd2pnUdpph5n9kTWEclSvocsAEmnTbBT21Ak,15648
42
- cirq/contrib/acquaintance/devices.py,sha256=UrWmmpfOt2DXCiwlz_wdGT9rQ17ZK5PtbkXpgsMBZS0,3031
42
+ cirq/contrib/acquaintance/devices.py,sha256=1hWW9_WF5TZQXFMu9-yXNTk3GfSETyjikNboPQvPYWk,3031
43
43
  cirq/contrib/acquaintance/devices_test.py,sha256=icl_9SOp8PuZu7msfW5H7zP7_-zfTwTjyPPkajDu-w4,1088
44
44
  cirq/contrib/acquaintance/executor.py,sha256=nshs5RdmsRhOhYdrr7htXURHdc_S5EL950jAref4k3I,8589
45
45
  cirq/contrib/acquaintance/executor_test.py,sha256=ir-LKuQTfHm5WCcjmLriJ8qCT89YnltLpFx89Q3bF_I,7837
@@ -84,15 +84,15 @@ cirq/contrib/graph_device/uniform_graph_device.py,sha256=ymG7X-wLzZE9hBc9P7Kixf4
84
84
  cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=b49Kx1pH_VvD5m-DV2TSI1qe2ZjQQaB76HJVboGyRYs,1616
85
85
  cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
86
86
  cirq/contrib/hacks/disable_validation.py,sha256=wJEzMoK3qDzhIFDUOIgdKqNDcHl74MJAi0OJuCjl82k,1419
87
- cirq/contrib/hacks/disable_validation_test.py,sha256=IRTIBgf6k0dIuy6OlHujwSmoxYqdDs9PY-ujyCDKQBI,1711
87
+ cirq/contrib/hacks/disable_validation_test.py,sha256=nuDfktj3bD7oFlae3R0Jf_qcAo87Z9CphYxi9lFQ1J4,1711
88
88
  cirq/contrib/noise_models/__init__.py,sha256=KSaocWmAv9R7ZemeKRBIhxEviwqtL_cQ0wfCetzfGy8,804
89
- cirq/contrib/noise_models/noise_models.py,sha256=Mq3JAjD-yg5i17ZVmHqTUeyKJ0fLSyLuByCmTuSZixo,7669
89
+ cirq/contrib/noise_models/noise_models.py,sha256=qFisVwg94-YqGoru5z5bqy_9_PHBI124rI4Gy34ogHI,7658
90
90
  cirq/contrib/noise_models/noise_models_test.py,sha256=nELHWYWbRp6RCurjTSEAumpZPMY2gNN3S4Mhho3pwJ0,10488
91
91
  cirq/contrib/paulistring/__init__.py,sha256=AZLO1k7e-Ao6wain2jO7YikkW9VIv6eM7jnLLYPlnrI,1306
92
- cirq/contrib/paulistring/clifford_optimize.py,sha256=d_i0V00G_4pl-KF8eGEmxjmOJvPxrF4kdtwtDF0S6xg,7849
92
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=q2lTMivOGoxncxnQ8CxnwlV9kSsHzETsTWG705FG9qw,7849
93
93
  cirq/contrib/paulistring/clifford_optimize_test.py,sha256=IttwXaYRftUb84Sz3fEJFDl9fZ8NwzcbNsuFAJeLR_8,3890
94
94
  cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7hO3o7dLOC83rf-mzzNBiC49JjZ9dNBqb_m0it4bmgk,6368
95
- cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=23CWhIWeq5mxdyCvIrNDkcquQIFDLiZucJchmF-Cxbk,8672
95
+ cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=Q_Zqbfp6yVzLabpKLnhIFCnGBaCgsgiABXCuAixwySQ,8668
96
96
  cirq/contrib/paulistring/optimize.py,sha256=qhBOGxLYovUua_xVqXWgVDPRRmv4VOmyFgKVBVuaYR0,2707
97
97
  cirq/contrib/paulistring/optimize_test.py,sha256=jie0UomSCIj90TMv3MIi4hd32iTjttQ8-zr7ZDs0tug,3560
98
98
  cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOWWOAOOcGuStfKPdk,1106
@@ -115,19 +115,19 @@ cirq/contrib/qcircuit/__init__.py,sha256=pvKF0Kpkedp-0L75YwFv0lktMbl82_wsjERnQBO
115
115
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_q9V9GFeQ_n0I,2749
116
116
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=9ZWKDOwYrrruIGlPOxmehWdNlNbYi48MXTerZjy1Mlg,4496
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
118
- cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=8HRBSNlyqPj1Ty2cpwzjFspupGVls6TTDn35udmq6I0,2412
118
+ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=cLE5Ikypxpi5anx48FEyDJVh2kv4DbRU-7F0iaaTu4Q,2412
119
119
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=TJI1mmIEhKkTQ-z1RBvLYU8oMu__x_eLP9aWAicJWjc,6021
120
120
  cirq/contrib/quantum_volume/__init__.py,sha256=UaZs0ghb0ebjLyHP08B6m6eaDthM31KHKW4jIe3qWpY,880
121
121
  cirq/contrib/quantum_volume/quantum_volume.py,sha256=8iFqqaS37nSTgYYy5pmQbao-VQuSGjl4TAqmDyCPG58,19597
122
122
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=HREyULIBznCplzjOO8PbQkaMgEp_Ba2u9Pq3triixMk,12398
123
123
  cirq/contrib/quimb/__init__.py,sha256=XZ2cz9VWpTnJ9Jv3LUEBrDcDPPO1lomMeASPk1mvNHw,600
124
- cirq/contrib/quimb/density_matrix.py,sha256=c-kKT4MhEKSaH5LWgydqPWu3H6s8cduJnzJhEYMrRNE,8644
124
+ cirq/contrib/quimb/density_matrix.py,sha256=3hvoXaJdHlJY97v8eCQZS50Xtqi5Z4hS2F4c6W4e7nc,8637
125
125
  cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
126
- cirq/contrib/quimb/grid_circuits.py,sha256=E4Ysktap-ZxZXIyer4uu7emXLzBepUha2byN9Werx78,4628
126
+ cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
127
127
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
128
128
  cirq/contrib/quimb/mps_simulator.py,sha256=wz7Et54hzoShXtxrXrJ2T2Im5c_hvz7N-SCaAQ3G7qk,24705
129
129
  cirq/contrib/quimb/mps_simulator_test.py,sha256=w97Czn1aX4pj6m5w2StFP2W9C5ZpRUxecFOL6jwBXnQ,17001
130
- cirq/contrib/quimb/state_vector.py,sha256=DIgbKBkghmP1MUpd1M2ZPuPaRwSLn9gGstSc9AfY1iw,6692
130
+ cirq/contrib/quimb/state_vector.py,sha256=WziCD7uMeh-cHI6F6DJCjqFKOtji_us2rf0vQhvtnvc,6686
131
131
  cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
132
132
  cirq/contrib/quirk/__init__.py,sha256=B8cZpO41P5mzkn-4rLJF9SRoVm-MLBmhuFMxObbICc4,704
133
133
  cirq/contrib/quirk/export_to_quirk.py,sha256=DLZU0AcDGJhulrYlOcy2_ac9ITiqZ9bBz8a6ZZwFv8Y,3837
@@ -145,30 +145,30 @@ cirq/contrib/routing/router.py,sha256=KK4b8eZGxz3OrJVOaj9DnGONLXNGrOv1SBgMWcaa7t
145
145
  cirq/contrib/routing/router_test.py,sha256=eIoKRCOMgXdAbxKURgD2rBhlz47AQXqDMbwyqKTz-ng,6330
146
146
  cirq/contrib/routing/swap_network.py,sha256=w14mOyeXGmZOUvnJFP1Evk89rsqdplGyxqtsAc4HfHU,2375
147
147
  cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98Ty2TtOI1zXzU,4816
148
- cirq/contrib/routing/utils.py,sha256=uoZ-BZE8Mx8HDP_QDKt9D8nPYTCcnN2fuwr1sTyFDIs,3772
148
+ cirq/contrib/routing/utils.py,sha256=P0_PnaGfy4Rm6CVl9FE7RpdZ0YzGtimcW1acduvp5rU,3761
149
149
  cirq/contrib/routing/utils_test.py,sha256=1oGEDAd70uQ2OrBwbaQd1DYoPcMSZsBQ2l5VLJBtXBM,2021
150
150
  cirq/contrib/svg/__init__.py,sha256=0F_W8s3NP2KsD5EXvxYHlSTycqcuuJWh2a5INZJ3WSo,116
151
- cirq/contrib/svg/svg.py,sha256=bVUeeOWvrRXygQ6dMghxGIWbAFB_-DnIu_Ol7HJ0b1Y,9351
151
+ cirq/contrib/svg/svg.py,sha256=tbavXvUwj-pQDOGQ5cgEvp5DJrXDPA52IGdk6TIPgYQ,9342
152
152
  cirq/contrib/svg/svg_test.py,sha256=mA9Z0rP3ASVNIYifjPuuSQmaSJ4LKMnKd58-WkB_XZ4,2348
153
153
  cirq/devices/__init__.py,sha256=g5DLukZrmrixOEmpSUgTHbdjYbUbgO5uD2Hjv0fFStQ,1862
154
154
  cirq/devices/device.py,sha256=9rUZwpbbmqk8AUVH4N4KfJ59j5im7hVgDJAHtN9iH_0,5361
155
155
  cirq/devices/device_test.py,sha256=v3gT6jrGLLfYnZbTizIaIMkI3s5_xVM3OV9JQchvAxY,1124
156
156
  cirq/devices/grid_device_metadata.py,sha256=h4Xo_PaiZqQSVUgb1ctVtYYYE2tNik2KQhCgooilZrE,8629
157
157
  cirq/devices/grid_device_metadata_test.py,sha256=IeOqYOZcUGhB4ivuQW2g0Q9dt-zFA0H6Dav6yv6Lul0,8592
158
- cirq/devices/grid_qubit.py,sha256=GgovxTSJMia58U2MLx45DN7Xi2srXbzKYqAdlm5l1S4,15804
159
- cirq/devices/grid_qubit_test.py,sha256=ps7xbSK0-eHnbUj_Fz3h5637UE0EygZ_yhWTY_Wt0tg,13444
160
- cirq/devices/insertion_noise_model.py,sha256=e_29kwFYb7k7fEBjHjfhfgE73bofMOG4gWC0DoH1_-Q,2907
161
- cirq/devices/insertion_noise_model_test.py,sha256=QJxIjmdxqJU-cHf7aQghWhHnklZY9JtOlvsbPAjOLkI,3848
162
- cirq/devices/line_qubit.py,sha256=KmEMshPjbMUOdUyec7cmpazEXdeN7PxY0J64U-84GoM,8605
158
+ cirq/devices/grid_qubit.py,sha256=9wGuTTaiXBTU5yCZZbFJsMZpIMAieqlHQzsdDzijoGk,16009
159
+ cirq/devices/grid_qubit_test.py,sha256=cmhnli54QrbGcjOtPaAfUKpOjJBapuRapM4xgXHPOtM,13327
160
+ cirq/devices/insertion_noise_model.py,sha256=-X07pSTp-lxQj6AQT_89gTHx_jKtI9GSMrD4dozCwTs,3614
161
+ cirq/devices/insertion_noise_model_test.py,sha256=i9jB257VXO5wi5QdDO5G4tphx5RKMaouUsdsQT3kiBU,3992
162
+ cirq/devices/line_qubit.py,sha256=eZHrgbJSK1XwSrY19e5W96FsYhBKqvwyZwY_Kx3X9eU,9511
163
163
  cirq/devices/line_qubit_test.py,sha256=YrwC-tIr6Ei_2vvWcYuJqGm3TDDgoBfdDHDnh4VltcU,8942
164
- cirq/devices/named_topologies.py,sha256=zhqwGH0-noBfg-cUGlKFoWE9nMrCAF64CWJKixB_mgk,15838
164
+ cirq/devices/named_topologies.py,sha256=grFXvi0UDHZl1pRyHDWSqjub3xF_Yf7RLXfMAZbyoEA,15790
165
165
  cirq/devices/named_topologies_test.py,sha256=Nj_tlGmqPH7IVUzpUHPnAPlfUWhSGbZsIHdsLLjxIZs,4736
166
166
  cirq/devices/noise_model.py,sha256=c00mxBd7ZYw8k-cCoKgF5ePI8WKcPyJS925NarivIRI,11339
167
167
  cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
168
- cirq/devices/noise_properties.py,sha256=lJbWefac_S4Nsj8lDObkQaWbIjIsVaT1A12HmmSgDnQ,5085
168
+ cirq/devices/noise_properties.py,sha256=DyaaNl2VlDFX38x4J7Zu5EMJBIj8bCDUYwSjbkBfXUA,5085
169
169
  cirq/devices/noise_properties_test.py,sha256=JTJW8_-rI4awd9jTbCgI5l8MpeDsNlXnO53s8QgJw2A,2341
170
- cirq/devices/noise_utils.py,sha256=U5J1GiNvZMCUNBKq_U9gJYyVlFPY6tJG8BCWEVUdKd0,6611
171
- cirq/devices/noise_utils_test.py,sha256=ZmnmhNoYOvYfQBt9wAfhviPVcwxKZNf0LbKSWvTCTXI,4608
170
+ cirq/devices/noise_utils.py,sha256=q7LR7mT__oHYoCmmPln1PnsVa94p0i9ONjqKlcka5_o,6722
171
+ cirq/devices/noise_utils_test.py,sha256=ha_P9Z_eycH97QIQ27WmwnvGM1CBUVoaJO8oy-VnIWI,4841
172
172
  cirq/devices/superconducting_qubits_noise_properties.py,sha256=Fg4S23uBPIBZWKdDyJ7AAZ_ajT1Vd6n1WxJ-k-0VUlM,8125
173
173
  cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=u9B1_4uwRdNzeyW9f-CSbYfsNpxiJ0RtmttvaaNzXkk,12207
174
174
  cirq/devices/thermal_noise_model.py,sha256=qdWrN7Kqw5dq1rwVUBLY1DDw1nCPADSaxoLtGHC-zW4,11608
@@ -177,18 +177,18 @@ cirq/devices/unconstrained_device.py,sha256=cnwn1caPDj7GnBf9_GYX6jMCTCWi4q5g3RkL
177
177
  cirq/devices/unconstrained_device_test.py,sha256=OF9E2m1HPpq6hyrNAwFGWaNOpQ3H2efAEj6V8Y-hRW4,832
178
178
  cirq/experiments/__init__.py,sha256=3JM23uG0gKC6lI3q6-bTN-aLVr4q_6gqUILyBcIMWEw,2163
179
179
  cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
180
- cirq/experiments/fidelity_estimation_test.py,sha256=NZ9e45CSdfiqKRi24GP-P846Np6gnoIavCgA2_Vk0kc,4918
180
+ cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
181
181
  cirq/experiments/grid_parallel_two_qubit_xeb.py,sha256=ROJZiXLaeF5IYo06DxeIvDHpwNJTIiqEAfKxs6v0vHM,2216
182
182
  cirq/experiments/grid_parallel_two_qubit_xeb_test.py,sha256=iDvDVsJxFp5xVlmse3EDH0Ok0-8yQpdAtQ2KHA7DbCY,1053
183
183
  cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYFkeudQUlfE,8469
184
184
  cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
185
185
  cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
186
186
  cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
187
- cirq/experiments/qubit_characterizations.py,sha256=yWQcCxaECAhB1V4WU-5UanoLxTC3TifyqA2ZOlcd7T4,27572
187
+ cirq/experiments/qubit_characterizations.py,sha256=cXREBqUIx4Z9hS57LbmWUkP0RL1McwZsUATGUil4W4E,27658
188
188
  cirq/experiments/qubit_characterizations_test.py,sha256=h0fd3y-wI2C7sVmjnjBgt7HuaU_IaOJ9trAnoiKL22c,7695
189
- cirq/experiments/random_quantum_circuit_generation.py,sha256=L6xWCOB7MMp4eMzxyfijPmNcvbSMByPkSDOKJVhkHOQ,28113
190
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=_TpP6v5uILvPo0RIpXIqSuogcNTgtx7-3NjePkGbotU,15185
191
- cirq/experiments/readout_confusion_matrix.py,sha256=Nd6KuGl-A4cY0JM4CLUSPwpbsK-wFMcqtGi8s2j668o,17278
189
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=S-nc9SiGhKmcd4cqIl9UOAV4SMkRwn-U9w09e-K32ZY,28132
190
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=1rvgN8-Ajedn_70FyYKVzjvzR6NVpHj6KQgo6tra-Jc,15995
191
+ cirq/experiments/readout_confusion_matrix.py,sha256=gsRjGJTDcxRPtY7G63t-nYoJ1BcByC1jl02zHh2B8fQ,17278
192
192
  cirq/experiments/readout_confusion_matrix_test.py,sha256=R4UoGklVJ2owqeDTRVP4M9gYynzVYgw-Y76VLcoIJtY,6766
193
193
  cirq/experiments/single_qubit_readout_calibration.py,sha256=F3sFivMhTAkeFPYLnXrHyx8JAIKbH4Lo5RFCsFWNsXM,9725
194
194
  cirq/experiments/single_qubit_readout_calibration_test.py,sha256=U7roQDUkPvkEkpCX5gx9i4AM3r9p4Fy3JkufGLrfijE,7625
@@ -196,15 +196,15 @@ cirq/experiments/t1_decay_experiment.py,sha256=dQ9DF84im2vIkxCjrbfn5oCQkTajlXIEJ
196
196
  cirq/experiments/t1_decay_experiment_test.py,sha256=B2oDyVL0bD5saI_5kh0h70b8mnXvvReavkalrbxdf38,9485
197
197
  cirq/experiments/t2_decay_experiment.py,sha256=lTgZ9yJ7Fk9_ozUCHysQn1qKrMQwTpsgEv-QnvsEif0,19158
198
198
  cirq/experiments/t2_decay_experiment_test.py,sha256=DFR0BGn0Id4qNPfqIExj70TEAqf7Vrc8eK91Wj0YKTc,15031
199
- cirq/experiments/xeb_fitting.py,sha256=eS8xfohP_5xyZmlLsYbazsl1WZqsYtZBijf-W9VjHBk,27220
200
- cirq/experiments/xeb_fitting_test.py,sha256=ho5ZDNHl5ijx4baMFASsDuHe6DOzD4ppZZclYzuQpkY,14351
201
- cirq/experiments/xeb_sampling.py,sha256=2lJ9lc6NmIy_twVUl592NRMJWGkxI6FAjh9N-HCAQWY,15274
199
+ cirq/experiments/xeb_fitting.py,sha256=54FKzGqhZgyvAkP_AR2-7peDnL-PJxOp-MkQdfp8bfU,27178
200
+ cirq/experiments/xeb_fitting_test.py,sha256=nfFhKPr_Nx5rbfCcvrcUFQxphCZuTnJVnpT-xBjxRFI,14349
201
+ cirq/experiments/xeb_sampling.py,sha256=plcwC4GNV2hW39ZFPBG1jWMnSIWcMh5rwsV8i6cQ_t4,15266
202
202
  cirq/experiments/xeb_sampling_test.py,sha256=0XkQGvcURsug3IblE_wZrHVDoOQV3WuQilrqCJbDHjI,6784
203
203
  cirq/experiments/xeb_simulation.py,sha256=DpCWVxzWnZvjrdfgIbwR9rWenehqz7Su3LPIVHoK7gI,5055
204
204
  cirq/experiments/xeb_simulation_test.py,sha256=gx0GqGZ4TDwrNW5ULK5JEWfzL-Dvb8TpAxIgdpiB8Tg,5430
205
205
  cirq/interop/__init__.py,sha256=zYD7hdcL5qUZ2MDzmCRZ7CgfCZ048fMKtJXCW7GMK_Y,722
206
206
  cirq/interop/quirk/__init__.py,sha256=rGKgFDaKFSHdGTEw5iD4GCg_SKzbAfA1qcr4t2lPlZI,1092
207
- cirq/interop/quirk/url_to_circuit.py,sha256=di6orlxecKH7J6HjqaPGSq_qn9cSjdGRtmFHxwQp_bo,14353
207
+ cirq/interop/quirk/url_to_circuit.py,sha256=1ToWnFJdJIhCko9q62BEvOoCGxCpOUl8891IdCa52MM,14211
208
208
  cirq/interop/quirk/url_to_circuit_test.py,sha256=VBRA81eNbEcu9xAGZuDWMiqusRyVtoZgQMbP33CRzYo,26282
209
209
  cirq/interop/quirk/cells/__init__.py,sha256=bLQFg4uxQp-4_I14e-Ys-Iy-O5bNOtLahKyc0CYZmYs,1237
210
210
  cirq/interop/quirk/cells/all_cells.py,sha256=Umd8wmwx51LzEqQbJFpWuvqL7g4MsSQXXztGzg1JbPk,2558
@@ -244,7 +244,7 @@ cirq/ion/__init__.py,sha256=GKBoQfjGrCOkVQR1MqK32s9YxA8PsrKecekz7LChUlk,734
244
244
  cirq/linalg/__init__.py,sha256=iMN1jVWzuZrSdHuE-gN2N1QyP0q6wgj6F4zetxJLCJQ,2527
245
245
  cirq/linalg/combinators.py,sha256=5q_cNjnJrDgC7qMX8rYdnCmBKXT_iVbtxnCeJQ4ZPTM,5350
246
246
  cirq/linalg/combinators_test.py,sha256=nZ3snkVA2nAOZ6WJK1hNd1f_i2a5xNdnostfMD1upbc,4699
247
- cirq/linalg/decompositions.py,sha256=6nUgwGZ3yZesaGDQc6eooLfRRsPYGjlyHT6VVKfSmY4,39107
247
+ cirq/linalg/decompositions.py,sha256=zygYsIqoBtfg7Cd6zAsUGiHTmnPE75TedUCXr6a-NFU,39141
248
248
  cirq/linalg/decompositions_test.py,sha256=sWNiMgZDtAFRu3qNJxKNiRGI-wvy1Ot0hh3jorKK9Lw,25822
249
249
  cirq/linalg/diagonalize.py,sha256=N9otosGfSBPZasIbha7SE2BPQkUQdWe8Rd4MXQ1HTZ8,9978
250
250
  cirq/linalg/diagonalize_test.py,sha256=H-JcLvcCBdN-DrKo2o1Gs7B8Q9SU70oAZmdT4yTLAi4,9089
@@ -260,50 +260,52 @@ cirq/neutral_atoms/__init__.py,sha256=D0ewdZZvXM_PC7WiyyM8V3WqBAwrpDV_GU_sCIbtw2
260
260
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
261
261
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=mIeGevxs9NoYpfTF_znHL67RrJKVQyQP-DPhn7t9SUA,1862
262
262
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
263
- cirq/ops/__init__.py,sha256=df4siOhKuRj8EylUj-9vM4XjsIda3HimOGz4f8Nsbkg,5319
263
+ cirq/ops/__init__.py,sha256=x-M1ZOcdguA563aWyr65Ll-zuT191ek0BXTd-90u3U4,5381
264
264
  cirq/ops/arithmetic_operation.py,sha256=PBqIwOfADRlsij11Lo1ao_OZM-O8PDlObgZBxGKsYKs,10125
265
265
  cirq/ops/arithmetic_operation_test.py,sha256=axy8xy9IvDb-ATUV-LE1HNWRqCEz06VyZWVrLNOtXXI,4942
266
266
  cirq/ops/boolean_hamiltonian.py,sha256=hjmzBvWiZnb18JfdhId-dVxt2VmbyAbqMSFAPWV7s7I,14883
267
267
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
268
- cirq/ops/classically_controlled_operation.py,sha256=WseFLU_CZxlRJHlyl6LckFHUweqzMZqoUvzEfdjx6W0,9166
268
+ cirq/ops/classically_controlled_operation.py,sha256=bMqKutwzqbvN2r7mOVOI12HTPDGSJLkhQQgfAcTtbDU,9166
269
269
  cirq/ops/classically_controlled_operation_test.py,sha256=MNU0Adff4kTosqsrQ3PUT3ARcZee_PkchT6u0xDl8Qg,48039
270
- cirq/ops/clifford_gate.py,sha256=P-kJUk6EV8KN5lgbVmsyBB1FTzFjH5fSpybqxt1uw-w,38242
271
- cirq/ops/clifford_gate_test.py,sha256=km9yExzNYeYwrOBcW_FTNgNVn7UO6_8RSupG9CrqeSM,37471
272
- cirq/ops/common_channels.py,sha256=8Rg4DZMfiNgpCK5JDNjnnQFaBNzgt9hY9zJY1uvq0_o,38407
273
- cirq/ops/common_channels_test.py,sha256=UW_8VEUzGiVn1D18l1scxMatg99V-yL1VxgC9nL9qqk,29686
270
+ cirq/ops/clifford_gate.py,sha256=B1guFN4YvUzqjBPVZH_stYWdi9MicJYjuoByB6rrK_Q,38139
271
+ cirq/ops/clifford_gate_test.py,sha256=NF_if1X8LCMA9hy0vBO7lxvVPdumlvMMnI2XRQ-RLpk,37472
272
+ cirq/ops/common_channels.py,sha256=mVGEta2wnaWOhRCXQO6gUj9Zll3rtXqpY-PRYcJ8m1U,38282
273
+ cirq/ops/common_channels_test.py,sha256=EL_PxbqD3KPC8ioihiukhmW8bUdclqqigKoFyUQpmIM,29690
274
274
  cirq/ops/common_gate_families.py,sha256=e5M8wlDYtdrpWBrhdns6iizIvSqzfxDyIsBdxt8hVMc,8611
275
275
  cirq/ops/common_gate_families_test.py,sha256=Oo3C7BPO3gt3ePuqwsI_lx_lY38et8Ps4AuVydX2Aww,5275
276
276
  cirq/ops/common_gates.py,sha256=YMcadPVRhrvkwYwm6-_TNYM9sz9TY7KSi0g7FvBTeCk,58075
277
- cirq/ops/common_gates_test.py,sha256=7fCrWJMi5suQpm7IVWSet5AWEcFg8Z5nDnYLN3UsyYk,46213
277
+ cirq/ops/common_gates_test.py,sha256=_5Kifb5k091qyzEVpryyFJV1e6pJ_fjDCag1PmPAQ2g,46227
278
278
  cirq/ops/control_values.py,sha256=O_ssaNxd50b4cS0hVhnRY0aEMr8J86TIh6iPohPKf_g,13397
279
279
  cirq/ops/control_values_test.py,sha256=iDtdQjL39u80MaR16XLp00LRZqWgJqC54cIeADWf0IY,12906
280
280
  cirq/ops/controlled_gate.py,sha256=uVTZk6pA1ZpEwbVggLeXyAFq18_QJ38hWYhk9GbvQnc,14253
281
281
  cirq/ops/controlled_gate_test.py,sha256=5sUUV0xng-GpQOTSiyQqB_LBaTeXXqHehqQuvvw7Cf4,23113
282
282
  cirq/ops/controlled_operation.py,sha256=sbT1PGUQjV8a014e8TOeZY2N1q6QXF4n0RVJswBtOX0,14014
283
- cirq/ops/controlled_operation_test.py,sha256=pBosqOfBjnw79O9EZqZS_EeQG_IUhf4ceWpCHBc47Ps,16459
284
- cirq/ops/dense_pauli_string.py,sha256=_Hh8D04nM0j2D9q1dMxvII2DE5oVQTjUfJ_M6M1t5T8,24405
283
+ cirq/ops/controlled_operation_test.py,sha256=ioAq2we54vDPAf6ttoUPLWqt1nQzLmkcQ9GQRL60t88,16459
284
+ cirq/ops/dense_pauli_string.py,sha256=SPrNsgeC2-ETqD2wbZ7R7lOltIUWITqBUHH02dVaMzA,24525
285
285
  cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
286
286
  cirq/ops/diagonal_gate.py,sha256=W_yXf4qZY_AeP32VN-0u4lS0-WsqjWTg2VSABaO06Wk,9024
287
287
  cirq/ops/diagonal_gate_test.py,sha256=cPHxjc7g2oTcXt5UFm470oo0eJupubSNzs4TccKHlSc,6223
288
288
  cirq/ops/eigen_gate.py,sha256=8AzZUZ6Km554GVdLLKJnaPiHoyChcFp4D5v5y4wHSXk,18133
289
- cirq/ops/eigen_gate_test.py,sha256=nYYK6N9blIg6qR7G9VUzrqGk9_3s0v61gI9O4jhvZR4,13940
290
- cirq/ops/fourier_transform.py,sha256=qp2jMkm_yPP8eyLw0v53gq3I89nT1A1NyhGgT1A6MPI,7590
289
+ cirq/ops/eigen_gate_test.py,sha256=-7l6GmAd1EYzHoGREQN1n7J1VOQKbThH2mA88TRODs8,13928
290
+ cirq/ops/fourier_transform.py,sha256=pynO07OcZSVCeL8L0pNQ9m_y5_wrpTWOMf99BHpjXdU,7579
291
291
  cirq/ops/fourier_transform_test.py,sha256=PIK4bWnCIy2TuX0fgclHeU1CBDT6zRVoQpv1v1jt62c,6220
292
- cirq/ops/fsim_gate.py,sha256=dMFmAS8KgTOim1GFyytPgBViAGnxH8EwbcghLH8vPgw,18694
292
+ cirq/ops/fsim_gate.py,sha256=H9Yz2XkUiNk0Mv6aJxL80yxwjvwrB9mO0zDUGF5LDcs,18695
293
293
  cirq/ops/fsim_gate_test.py,sha256=owW1VpXntJqxlzhtppnyfaS9gQKFNA6UzCHksgPHaHU,25165
294
294
  cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
295
- cirq/ops/gate_features_test.py,sha256=NO5Y9LRzcSlURF_7-4FxR4gtoxJlQVXP-dvjBzZkkLQ,2343
295
+ cirq/ops/gate_features_test.py,sha256=mnlqJnSpllcOnTUdvmUs_ssnPRhAIgHhKIAK2Z86Dfg,2347
296
296
  cirq/ops/gate_operation.py,sha256=7Xjhi9dfse1by2TL3aOPiVL8cXyk8ZXfeO57AHe8ajk,13394
297
- cirq/ops/gate_operation_test.py,sha256=sGGdqGPV5ojpNZuatz8rOHxTYnG2kM9qy7iRu3Kaa6Y,17517
297
+ cirq/ops/gate_operation_test.py,sha256=ftd-GZxvOtzFS1L153K89_PV1volGroU7G5nFGp9afE,17507
298
298
  cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
299
299
  cirq/ops/gateset_test.py,sha256=BY5UJ1k3NC0jz0d4yocyO1qcQU6e4UbN9mapWE7z7AM,16361
300
300
  cirq/ops/global_phase_op.py,sha256=y4AT1_dQfGl44WHbCkXfp1d1Hh5BN1geQ35HpvI5dLE,4868
301
301
  cirq/ops/global_phase_op_test.py,sha256=FjtUsohIYabTtiGytvPQw9Rzkqd6dlT7qrj4oltDbTI,9814
302
+ cirq/ops/greedy_qubit_manager.py,sha256=O9qY8GB1KGxm3B7JEjq50sGVD51bNwTSupJpi3WUeAc,4039
303
+ cirq/ops/greedy_qubit_manager_test.py,sha256=iVZDKes-r08raTiJHpYNmP-Dp89ok3hIU-QboL2BHdw,3300
302
304
  cirq/ops/identity.py,sha256=4H67nV4i85wi3HWY-k5ImC9hX9U6BjIZp61JalHpsTI,5503
303
305
  cirq/ops/identity_test.py,sha256=dGx9nzeFCoVo3SmlEbqCGJT1XyzJh-qoPl9n2gEd9WQ,7422
304
306
  cirq/ops/kraus_channel.py,sha256=tCPAEzr_GAL5vTwI43rBoiOnT04l-ebZanuuEuYWDo8,5085
305
307
  cirq/ops/kraus_channel_test.py,sha256=qH2Y9cngXzKCabd-Mq5xBYcM_wyL8c6KkrXw8kZr7Dc,4726
306
- cirq/ops/linear_combinations.py,sha256=VrPwMSeOI9UGcWZCS0MptXOlECp1w0ZGo3OpahQnQaY,39651
308
+ cirq/ops/linear_combinations.py,sha256=1BynexPtrNc26McHXv3rErh6NYGzcxNqXWyWJ11ugDw,39668
307
309
  cirq/ops/linear_combinations_test.py,sha256=qpzRo53mJtcidYE11loKMP2b9guKMGtzrKWQ_u0jr4Y,66387
308
310
  cirq/ops/matrix_gates.py,sha256=8ARvpHWYFgwmlT99-Gxoa24i_mxKLvdj_RhoQvglKQw,9290
309
311
  cirq/ops/matrix_gates_test.py,sha256=m5rMwq_sqVvsmkc5opVr3Ikd1ERuULmSRNAvGZUg7ds,14224
@@ -313,26 +315,26 @@ cirq/ops/measurement_gate.py,sha256=4nZPQ-ckEu8Atv1HGlDUPvXjP4WOlub-O-yPHK28GBw,
313
315
  cirq/ops/measurement_gate_test.py,sha256=XfTDqbYUUc7zsMURh7D3jo8DwKWVVT9uJRBvtTm8Frk,18308
314
316
  cirq/ops/mixed_unitary_channel.py,sha256=k3O4ovH3bFs1WnAZc647IgCK8thC5JnTGxsCzjBacEY,5259
315
317
  cirq/ops/mixed_unitary_channel_test.py,sha256=x8LIAea2KcutNupnRJ_cLy1kmxhbUh3K3BkZtg3OkKQ,5058
316
- cirq/ops/named_qubit.py,sha256=PUL1OVrvRhmj590hVKVZXOfn88GcJ1LYDLY9tbBu_vU,6302
318
+ cirq/ops/named_qubit.py,sha256=vofPNCxA4JJdMB9I36T70sLUr1aUhBqiWPFD51-0k54,7564
317
319
  cirq/ops/named_qubit_test.py,sha256=YIfE3NGJxJMTIGLvl8wp1ZwyNTE5NQ_eZs4WgeVY0Sg,4590
318
320
  cirq/ops/op_tree.py,sha256=iXsIFcQCciU7C9SiPxhd_zrp4TBGCsmnqxKDjUl1aEo,6159
319
321
  cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
320
322
  cirq/ops/parallel_gate.py,sha256=RSj1SuiwbDCMWxvTmi3xz7oE2QXBFgA59emijh4JPkE,6335
321
323
  cirq/ops/parallel_gate_test.py,sha256=M6o3AyXFQrwyiOTtGxlYH09TbHdjtTxCuMjmn-ALnn0,6298
322
- cirq/ops/parity_gates.py,sha256=4xUSGjKW4apQijzz7S0L7NBj7gOmbW0Ly0nVMksyaRE,12711
323
- cirq/ops/parity_gates_test.py,sha256=00y565_AI7264LFZcY0TQwfEmX_dAztAJmnuD5w9JtE,9770
324
- cirq/ops/pauli_gates.py,sha256=F4dQCKhSfBtLYRPGyPuR7Z-fquKpPc9IStXsxCUxIYY,6932
324
+ cirq/ops/parity_gates.py,sha256=JJdw_A9HHiJFVlYfWxp0QPBXtgfHjQYbYH_YFjoU4K4,14208
325
+ cirq/ops/parity_gates_test.py,sha256=-Ib4GO4njRHanuTMpGvz_zaQf0siUJNNd_tpEYKUOjg,11462
326
+ cirq/ops/pauli_gates.py,sha256=Bya7Qh4QiSeoh3OlTQ8bYvh4-Pwg17TMBxoqMrmdrlw,6933
325
327
  cirq/ops/pauli_gates_test.py,sha256=bHt7A2w0auWxN9gyKAVeimT1KeOHz5C_CjFHSK1V-Co,7752
326
328
  cirq/ops/pauli_interaction_gate.py,sha256=GQtK5lRw2Uh7hs2GsoRxe-VMlMTO8PxDeZNVT6_qOWI,5499
327
329
  cirq/ops/pauli_interaction_gate_test.py,sha256=U9ORW5Ayx5PESPFiGESzWY-02qHklYcM1mYW56RWe_A,4544
328
330
  cirq/ops/pauli_measurement_gate.py,sha256=tq_OlHlTLQa6yah--afE2UMNdF4a_vfXi8XT8ww2ELc,7215
329
331
  cirq/ops/pauli_measurement_gate_test.py,sha256=uh3J0Ps3V3578V8qkRiEgIl6jBiv8DsXlk_vzLvOEhQ,6720
330
- cirq/ops/pauli_string.py,sha256=ZMm9InD7LiooBWzaOuZ2dCs73asoTqwEsi22Y7f-uGU,66584
332
+ cirq/ops/pauli_string.py,sha256=RIVNQ-HO0HYUbfGuTZoIJPoGUZuWb-8msFeOucN5CY4,66564
331
333
  cirq/ops/pauli_string_phasor.py,sha256=F1Gftw8TDb9qdJjQti6xxbOpXbFUFCVwn3r8073wRbY,17604
332
334
  cirq/ops/pauli_string_phasor_test.py,sha256=HGEPjPc7ySeshOnMJHNjtyckFuEXLvxgy-TtnU6fETM,27582
333
335
  cirq/ops/pauli_string_raw_types.py,sha256=6CgdPWYmOziP4uZbrIsRW0sDSMmV1GioGdAk0owFITU,2240
334
- cirq/ops/pauli_string_raw_types_test.py,sha256=rHih__fgTD0cqmwW0Iv5LATDbNkRq9rDiRO4VSPobEk,2642
335
- cirq/ops/pauli_string_test.py,sha256=hAov4Z2IDbibSiaV-2-68df6rC8Ia9ZL8A1mn6r8oaA,73779
336
+ cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BEX6dQuawRQE,2648
337
+ cirq/ops/pauli_string_test.py,sha256=3sE7cAe6szKJ1WW3iI8S3oCYMJkSX4SCwPQWopcMR1Y,73772
336
338
  cirq/ops/pauli_sum_exponential.py,sha256=n3fhKWJVMudzGuOcdPHskVNx3fHE2MAblVdkzbDtcz4,4909
337
339
  cirq/ops/pauli_sum_exponential_test.py,sha256=wVnJ3FSpEimHT8ERVkmljALrgSuuDYo6GRg91uJ7ztk,5370
338
340
  cirq/ops/permutation_gate.py,sha256=i1BfUsXF2L4w4BlCAw9X2PnQQRE5gG37--fXF3cxihI,4449
@@ -353,16 +355,16 @@ cirq/ops/qubit_order.py,sha256=nYkcMg-y5QtR7M3W1HXq1IWJyMKjrTZXVK1GEbY6gng,5616
353
355
  cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
354
356
  cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
355
357
  cirq/ops/random_gate_channel.py,sha256=gKDqZa6AwdCIuuh2UOvO5oxCdGRDOInA7fI3ZLQ-LTY,5121
356
- cirq/ops/random_gate_channel_test.py,sha256=s9L6dsNoziMweysr2QaBblSdLM_T-Pp3eq774HnioVU,8600
357
- cirq/ops/raw_types.py,sha256=rJCzqV8rIHHJPvPB0pncxTKTaf3jjQrGV1wWedbwEM0,39880
358
- cirq/ops/raw_types_test.py,sha256=wpXx3drpm3s9CrFr0WEDMxEPGTjZjeqqHTEb21rSAZE,33508
358
+ cirq/ops/random_gate_channel_test.py,sha256=U3EAaAlCZkgFIYxqwcSkPsaVGrKA2PSeG_DK2ou--AE,8606
359
+ cirq/ops/raw_types.py,sha256=58wPJZkdYRppyHOmVLUG0iOhtQZNZcx-dDWoOAHbeVU,39880
360
+ cirq/ops/raw_types_test.py,sha256=mb691t1wU5OY_0TwxGJPedUStlGdjC_FzjvTLG7Gp_U,33516
359
361
  cirq/ops/state_preparation_channel.py,sha256=PjVtoLbjBAy_XqnFAY40Am-NifeuCFVVLW6RJxph5sQ,4778
360
362
  cirq/ops/state_preparation_channel_test.py,sha256=yKUvLw_ft6cvIgRJcFQ779wZS-V6V-pzQq-rZRWdCmU,5922
361
363
  cirq/ops/swap_gates.py,sha256=9eJMGyOiA8W9k2xJ_w5PaLOCHGvB6C4T2RLddIZ5qE8,11601
362
364
  cirq/ops/swap_gates_test.py,sha256=_CihLf6rY4PNphCkH-S5mLJQYZW9ILjnnwUyQ9b0Blg,7452
363
365
  cirq/ops/tags.py,sha256=B3nEsZQTurGPJodH7aDoreNSatqawTxwsmw8fSKaIlc,2294
364
366
  cirq/ops/tags_test.py,sha256=4V9twOuCXd7Glvj9p3RW-tZ4-bfLtC1tmonR4soKNA0,1158
365
- cirq/ops/three_qubit_gates.py,sha256=EwLVn3d8F9ODm8UD_Bw5PpUpIAc_RC-ripDsPT8ZnbM,28372
367
+ cirq/ops/three_qubit_gates.py,sha256=U6GGi1aNnLbhM40ViSsRqbOIA51i1kjKMEf5ei8TmIg,28482
366
368
  cirq/ops/three_qubit_gates_test.py,sha256=iQfQ4p4TwtyHYCqaWOEeZsqszF_Mp49VwlIKRydClMk,11778
367
369
  cirq/ops/two_qubit_diagonal_gate.py,sha256=UYz2lUN8YzQjaqBZ_rmg6TvLFSRAvSlQGhnPOL5FmNQ,5376
368
370
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=qiuREluCDKMok3ormBOdDYCFlOS9u1zFLqTsORO5JtM,4000
@@ -370,13 +372,13 @@ cirq/ops/wait_gate.py,sha256=ZJ9cqRysAyUYgfswVWO5C2OkDZ9MFEQjSemLw0w3drA,5654
370
372
  cirq/ops/wait_gate_test.py,sha256=2Uw8ZjFkYGhDosoxbJr_IW2wWdxY8kXR-CLyC69DYRg,3543
371
373
  cirq/protocols/__init__.py,sha256=kGCV1tzQ1m8fjrOPhapDpnStu-rFNe4q188OQY1huHg,4006
372
374
  cirq/protocols/act_on_protocol.py,sha256=oNc5Vn64iT02gLV0qz6GU1J3rgHkhltLTHlyyTfQpPU,6902
373
- cirq/protocols/act_on_protocol_test.py,sha256=HK9H-X-2kHG6HGbzSYTz_V41DXOE55ooRnEfA-vGXKA,3129
374
- cirq/protocols/apply_channel_protocol.py,sha256=fQPKAEEtM8LHvObQzwrDjptVO3vS7270qlOsENKHMlw,15715
375
+ cirq/protocols/act_on_protocol_test.py,sha256=eYHin_cTQkhxJg0zkkenQCDIj6TFUX0IstTPLgHvEdY,3147
376
+ cirq/protocols/apply_channel_protocol.py,sha256=Unqz-0rVtTrB2tYuY8ZagQZNpJH5mpg_aiAwxeAC9ss,15694
375
377
  cirq/protocols/apply_channel_protocol_test.py,sha256=ETAWrBTVkPuUPUgHsLZo1HUsJnZsO0hD2fQeXlXtvjE,10582
376
378
  cirq/protocols/apply_mixture_protocol.py,sha256=d2SW3v2AW0flY4zseYrh-p4PM29uuonKZ3nUTGQDmes,16323
377
379
  cirq/protocols/apply_mixture_protocol_test.py,sha256=6sNZhauFDec2MvHmUsvmkVF-qjH1WLDnZO35RT0OtRY,10793
378
380
  cirq/protocols/apply_unitary_protocol.py,sha256=euKDlasTpz4pDKIU_sbYd6Zo7EXL_o4KOqXUbnmsQg8,29777
379
- cirq/protocols/apply_unitary_protocol_test.py,sha256=Rrw7Tm0tMnjNMf4KdJJb3XiNBFH4dqskZWjp55UZDUw,26111
381
+ cirq/protocols/apply_unitary_protocol_test.py,sha256=i8kRY-yQR_MAUqkyyQTOHFEYQYz5Z0i-Wb0rs5Jz0fI,26116
380
382
  cirq/protocols/approximate_equality_protocol.py,sha256=P5mWl9BWGpobw3K7iAoupFPSqO9V2yG82rfQHWTClmM,6313
381
383
  cirq/protocols/approximate_equality_protocol_test.py,sha256=h8fZSNFtLH_VNo2NbnUijSmo8FEnuStVHIj3hA61Gwo,9183
382
384
  cirq/protocols/circuit_diagram_info_protocol.py,sha256=_AqGA2OztVkzUVEw18pzIw_eI5Nix68eJ0TJwemNdNk,15857
@@ -388,19 +390,19 @@ cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZ
388
390
  cirq/protocols/decompose_protocol.py,sha256=b4NCMzdI_RuHzkGhRBNL_vW1YiX8gmkMvCLEwqDMuK4,19164
389
391
  cirq/protocols/decompose_protocol_test.py,sha256=zV-eAOYYqeXd73MuoqsRMe3FKj7Q1vxjJAizNKpZaHs,15969
390
392
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=0a93790FDjID46cX94PVAlA9i9Fu7uN8cj6qT94NH9w,4101
391
- cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=qpiPXPCncim2SEsnpJ-Xx5Bv_nRKBED9N-iRkJ6aWIc,5718
392
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=q7x5AlDtqgmbGWJPXKdPR3jYacwPoBHGsylHxqCvoMY,2685
393
- cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=oxVHaotKNUqRu3Z7teLidK7UwMGuuaDdjywS7sPYdOo,3072
393
+ cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=9H54KKkS3-_BrTSrEynDq1-sAcYfhLVmVqveLHieg24,5722
394
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=n4gt6bPUvIyx7W7jlttFqiXIs0TjD3X-OBy9lzG4Bto,4410
395
+ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=yNjD-dJeKOB0lKyP4cmeUVjm8Ac36u8adceJp-TiyNA,3620
394
396
  cirq/protocols/has_unitary_protocol.py,sha256=inj17qr8Pz2Zofj0Lsp2o7TWlfmdU1TybtRjs1TWVow,5372
395
- cirq/protocols/has_unitary_protocol_test.py,sha256=Z4FhcIr36EzfLf4rvQXfMFIOeuDG-mXM001ablSOPYk,5644
397
+ cirq/protocols/has_unitary_protocol_test.py,sha256=IjmJ3dqvteFUUO4FLwCTokgUvYy8H2HJjLmTDzt2__Q,5610
396
398
  cirq/protocols/inverse_protocol.py,sha256=CEqtGRRj86WQyyALonRXxQrNq-fENOs_Zqrlr_BVau8,4115
397
399
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
398
- cirq/protocols/json_serialization.py,sha256=4Wi3oeywS5_kTAhUqnBUhrtb-bJ9PmoFsqUqbEDXKvM,29266
399
- cirq/protocols/json_serialization_test.py,sha256=Z8waXBg_nwguh6tSKHKzUchIxCuizQfieqnMmuGGgOs,28936
400
+ cirq/protocols/json_serialization.py,sha256=DVgbYQBYlPVV50gidAIDuRJn3griTkD-PDJiJTAgxe8,29274
401
+ cirq/protocols/json_serialization_test.py,sha256=q8SZpfmnqV6UhoGe0PVZLxaYUwRbu7VBKfrZ81HzdlI,28779
400
402
  cirq/protocols/kraus_protocol.py,sha256=GKQ748yxo6B6i0jUzq8OyR6lcEFYbh4FV2UryjUgSuk,9158
401
403
  cirq/protocols/kraus_protocol_test.py,sha256=QpPwkk7XBiGKNdrOcjXqtvhESVbUzujnUPz47uUNyqc,5401
402
404
  cirq/protocols/measurement_key_protocol.py,sha256=hl7xFi1Evebh8MQNLuUffhsUkggr4SdWUm4kIr9s2iI,13425
403
- cirq/protocols/measurement_key_protocol_test.py,sha256=2dXvVe0wfthbvj-zD5t7WsHYzQJxKtz83jGbEjPYRxQ,8514
405
+ cirq/protocols/measurement_key_protocol_test.py,sha256=M00RM-ujC2btd5UxN3BK92AGhZivDP1lRpxewj-G8VI,8514
404
406
  cirq/protocols/mixture_protocol.py,sha256=mtWi-QffTZwj_5ViLVrPixNQFCFdQ6ACo1Fo0mvIPmw,6316
405
407
  cirq/protocols/mixture_protocol_test.py,sha256=L0R2jSxZbi3pEhD2tOv8XC3tvi3s4csjQMk-VS987RQ,3616
406
408
  cirq/protocols/mul_protocol.py,sha256=ZhkowiHCulggWanjoz6HpMGf0ODqDNIjM32knFKPuJ0,2770
@@ -420,7 +422,7 @@ cirq/protocols/resolve_parameters_test.py,sha256=sZvwdcwCuHj3l-jwxtorUp4BOsicqO4
420
422
  cirq/protocols/trace_distance_bound.py,sha256=r_aXr3QuqbjCrXxwqDSyRyRAbCvWaZIzt95iy5-Wx-U,4172
421
423
  cirq/protocols/trace_distance_bound_test.py,sha256=5DFxGafD8HS9hg1BtHVBorqA91kAEH4LCUIxZW3cmCo,1935
422
424
  cirq/protocols/unitary_protocol.py,sha256=DE6djQAu_aHUBEznjsW-W-zRx8susfqUmQtYa7CTGlk,8168
423
- cirq/protocols/unitary_protocol_test.py,sha256=Vb_krc12b7k3-lIF2Ug1zDSQDFS7Mvd5FdF7ciU22N8,10180
425
+ cirq/protocols/unitary_protocol_test.py,sha256=sby0_pto_WqznJd9xAXG-VtBNz_Sn3IQjEM4pUBtzjM,10189
424
426
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
425
427
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
426
428
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -571,6 +573,8 @@ cirq/protocols/json_test_data/IdentityOperation.json_inward,sha256=xR_zlzYY6guLB
571
573
  cirq/protocols/json_test_data/IdentityOperation.repr_inward,sha256=oIJ8KA4aHJYMtLirsUu0a-F8hyQ2qUZ87Cop6SKnAFI,185
572
574
  cirq/protocols/json_test_data/InitObsSetting.json,sha256=40kW5h0F_HC5SOEFFtbTgymLJjcZHwVRUzfvAnTT8oA,1048
573
575
  cirq/protocols/json_test_data/InitObsSetting.repr,sha256=QpjddPOwqrVFkc0gHZWOdJYXlO5Q4ftbncY5ST88xuY,197
576
+ cirq/protocols/json_test_data/InsertionNoiseModel.json,sha256=pjRRfBlMY1LT58HBYxCnPYs3hvXTP5SIEecKINPXuJw,2245
577
+ cirq/protocols/json_test_data/InsertionNoiseModel.repr,sha256=_UuncrqSmJtanZeOUgB4XlkG5eYtSH81YPIwQeTUrBw,582
574
578
  cirq/protocols/json_test_data/KET_IMAG.json,sha256=PjVfVhvJTTDTlhl53RNPs78m7L88K1G7d0z2Nr2T-b0,52
575
579
  cirq/protocols/json_test_data/KET_IMAG.repr,sha256=Mh3qpHzI_0JEN-j6qOt73vK-q78XIkU81GxSul9wH3o,13
576
580
  cirq/protocols/json_test_data/KET_MINUS.json,sha256=JaA_j47GDV4O3I8tA1cfArWAi6LOqjNW0dNmi6HKef0,53
@@ -629,8 +633,8 @@ cirq/protocols/json_test_data/NoIdentifierQubit.json,sha256=7uWqyPYDlSLDd_sPiIkv
629
633
  cirq/protocols/json_test_data/NoIdentifierQubit.repr,sha256=kYHtz0ffOnpMWi2o-64okh0aFgGCEcU5vvoJd_pvVs0,32
630
634
  cirq/protocols/json_test_data/ObservableMeasuredResult.json,sha256=ujXPPI_ImhnGUR-4_I13-l4fB06ymiC8M59busJd55o,1324
631
635
  cirq/protocols/json_test_data/ObservableMeasuredResult.repr,sha256=uKBxHZ9bIK-Uy8trgpJlI7e9gJaOoeHaasZaXk-L_ek,310
632
- cirq/protocols/json_test_data/OpIdentifier.json,sha256=EWNrCr1U2H5D5xYDSq24HXhmdW2HBONWKT8qi1uujz0,136
633
- cirq/protocols/json_test_data/OpIdentifier.repr,sha256=tk1me10fcQPwqlVeioiVvdoEWorL184hz1i0j4pf0Qo,98
636
+ cirq/protocols/json_test_data/OpIdentifier.json,sha256=c2gI3xWXFit000q2leQ2hu629u28oIwG-vDkhMKo1-g,605
637
+ cirq/protocols/json_test_data/OpIdentifier.repr,sha256=tmqKctXBKHa_sLxCgwYBOD-UFh3VBd7_6VGgX_9MR_c,415
634
638
  cirq/protocols/json_test_data/ParallelGate.json,sha256=S3ciRlLrJ4qlFaTxh-N8riCUZzdevbYhuQ6dWAkxEkc,146
635
639
  cirq/protocols/json_test_data/ParallelGate.repr,sha256=FmcbIVImld4M45OsTWB3vw6wUlVrSyP1bVxiuNpaZZg,48
636
640
  cirq/protocols/json_test_data/ParallelGateFamily.json,sha256=XKp4GHHi_cH2ClHAWawt65c34jSV92sQPfi4ccMqJEw,727
@@ -829,7 +833,7 @@ cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJ
829
833
  cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
830
834
  cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
831
835
  cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
832
- cirq/protocols/json_test_data/spec.py,sha256=HhZ2jRnwkZfqtyARTnawrEjd7oA6UTSLgHuVUJQxAvo,5410
836
+ cirq/protocols/json_test_data/spec.py,sha256=8s-ZCIP8I-aNIMxKsnlpv8ej9_py3Rxxrr2loU0K6W4,5531
833
837
  cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
834
838
  cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
835
839
  cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
@@ -865,18 +869,20 @@ cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPC
865
869
  cirq/qis/__init__.py,sha256=f5U3udFQirbLPKcHsVO6ViD3uSwe81Bei1wQdSbq2HE,1583
866
870
  cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
867
871
  cirq/qis/channels_test.py,sha256=iqkSyfvx_c2ZpJKAVEsFyZRmKpzNrJsyFjHbaJUMqcQ,14454
868
- cirq/qis/clifford_tableau.py,sha256=YG_3EXcJibRgX_HvlSCcTrMVvdqPkPUVQdt1_qf79R4,25185
872
+ cirq/qis/clifford_tableau.py,sha256=yA63laynA1LVDmO7Gy_JFOsb7_gfriaOj6ggrjGRVGo,25174
869
873
  cirq/qis/clifford_tableau_test.py,sha256=Z-5YSysJw2H3AfgZxhptvUMr5GUjUFgPcAUdcust9Qk,18441
870
- cirq/qis/measures.py,sha256=oJVM9GN3bYSgPYqE0KVaptpflTNZYIX_fzws1AS4j5k,12197
874
+ cirq/qis/measures.py,sha256=-e2mStl9882z4mbLwWtbdmmdJilmf6Ex2b_jSXhMX3c,12194
871
875
  cirq/qis/measures_test.py,sha256=3LTTGdvuFfZWmFyWFeUHpg1yGc9z0VE8j7Kd7J7y8i4,10092
872
876
  cirq/qis/quantum_state_representation.py,sha256=5ybXGqjGSpSZqOn9q6OW6IBOmJs8KQekv5fFZZMCqZQ,3238
873
- cirq/qis/states.py,sha256=KWV5uFwpXAQGZ2VwZdS-246Nxj7XHVS3AH7eCgiOPpQ,42029
877
+ cirq/qis/states.py,sha256=PZs1pH6Uw1M9oOXlD7-uDwVGBPTX-8tUy8RTP1Ct_pg,42015
874
878
  cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
875
- cirq/sim/__init__.py,sha256=k2vuvTMqNvYr8yd5mvi5028e5z-vMDmJ1sML60HHe2Y,2276
876
- cirq/sim/density_matrix_simulation_state.py,sha256=AFJoQGXkAFYyLW0wZmOZnTb2ePSX2wiTVeY6qFoB5eo,13470
879
+ cirq/sim/__init__.py,sha256=NZlRrk-RxeNOmFLdC54yEeQiiWz7wXNRhGbZKmxCTjA,2342
880
+ cirq/sim/classical_simulator.py,sha256=lTk_Eo1GhgoVYk_zZrqraEuBkJQ3-nnyar4JE7tXhdo,4464
881
+ cirq/sim/classical_simulator_test.py,sha256=_dGRWTjLe_QLI_fvUoBXOpBtBeVzfx1XC9h2OIS7AUc,7935
882
+ cirq/sim/density_matrix_simulation_state.py,sha256=XRxKsKq13OlXR7429WBbKps_jmOoCBRa6U9PzYrYrTc,14065
877
883
  cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
878
884
  cirq/sim/density_matrix_simulator.py,sha256=-BIY8JjmzAJDmF6tWcv5lbH1yS7UQIlKicU1AJgttfA,17462
879
- cirq/sim/density_matrix_simulator_test.py,sha256=xeXbdCw1QpDE-sL4nL1RZUrZguWhk7p-7Kto-SZeufM,61286
885
+ cirq/sim/density_matrix_simulator_test.py,sha256=LgND8eN3AXgJzP3nYh0JmsTWJfT878BSzgIo4gZ54xY,61154
880
886
  cirq/sim/density_matrix_utils.py,sha256=9Fbzh0c9hzwEff383YwRit2K_tvlpT4Vyq3rjLijRyA,10273
881
887
  cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
882
888
  cirq/sim/mux.py,sha256=ysXjeMddmNaaG3twkGBqJqLLQa_Pm-Y9c6yeGLpYbxo,12469
@@ -885,81 +891,81 @@ cirq/sim/simulation_product_state.py,sha256=3qEz1mEsIcWiG_i1WVNTs_CVzN-nO0XWdvSd
885
891
  cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
886
892
  cirq/sim/simulation_state.py,sha256=ARvnXjw6n-GqPV07ZQMC7rLEgm4GDNhdTUItXRZ-TeU,12626
887
893
  cirq/sim/simulation_state_base.py,sha256=95FDt2omBxU-3KXwii6KCKMC9MtXRc1ZtnLZRE8vI0o,4196
888
- cirq/sim/simulation_state_test.py,sha256=EeL2aqrsycDur4i-KDAr9AYV3G1Ij4a-2g4QMaRGhks,7524
894
+ cirq/sim/simulation_state_test.py,sha256=3itB-YcSBJY0h2lxnx5JFJAxeAWoGHEYdc_ch0SyLhs,7443
889
895
  cirq/sim/simulation_utils.py,sha256=74Jvi2m4HcRo0i1h7MNvul3Ho0Io8HW0KARA3Ntjh_4,2553
890
896
  cirq/sim/simulation_utils_test.py,sha256=1YCuaKFf0JfOqdEbdYE49wlNWmhmtQKUQMIij6YyiDo,1333
891
897
  cirq/sim/simulator.py,sha256=lTUcub_HJC5BYvkN8ysqzHHkUHxloncEQm4fMJZ1Dls,41875
892
898
  cirq/sim/simulator_base.py,sha256=5Ka5UlHK2bmwRhORUomU6OB9tMfaxTRvzN7EUyS2_bA,18178
893
899
  cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
894
- cirq/sim/simulator_test.py,sha256=UxWgHcPfKMNqFAVPmH2bHAxofDbM5uFDBi2lgCetMWY,18249
900
+ cirq/sim/simulator_test.py,sha256=9cHMoY7M5_82gfeBsCg6O0PnictzZu172vQAgUngJqA,18119
895
901
  cirq/sim/sparse_simulator.py,sha256=OvVjqNk5Kb92DM8Nrdw1BGOB7GFlT6yiXwIPpAcLV7I,12854
896
902
  cirq/sim/sparse_simulator_test.py,sha256=3EAeCHUQeKllAAtdw14X592zBsGQY_vwfIYK-gEr_zA,53587
897
903
  cirq/sim/state_vector.py,sha256=N6N9EELlW66UaLTBaq62ms0XkfIK7CzN9SBM7t52dXo,13428
898
- cirq/sim/state_vector_simulation_state.py,sha256=d8t6tdcSXxtD-f1wgPWvgv6NlVY4bv5Wcd06T_GeJhw,17624
904
+ cirq/sim/state_vector_simulation_state.py,sha256=Ks3nGbIf6rq1Ap7Y5gZkcAJhu_Zr2-KWJhsE_wjwu8k,17624
899
905
  cirq/sim/state_vector_simulation_state_test.py,sha256=UtGMIurlV6N74nX7qoVnGoRhwF35-ghDEIP7Mj5AXmI,9841
900
906
  cirq/sim/state_vector_simulator.py,sha256=L2S0xyUGqRcVgYdzYef0gVREVZVIDcCXPclVbIJEpPE,7529
901
907
  cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
902
908
  cirq/sim/state_vector_test.py,sha256=OjhAL2tWqJWstHV8RvJYQVqg95zm0PcS9nQKrLOhMmQ,16934
903
909
  cirq/sim/clifford/__init__.py,sha256=lD7l6JuE5n0xwvOYNYH-giCH3qAEVH1SUwDrZM1jKKY,636
904
910
  cirq/sim/clifford/clifford_simulator.py,sha256=V4rExIDeijZ-sjMAyS_dDt5aE-RIrzTWpwF3EnSujto,9732
905
- cirq/sim/clifford/clifford_simulator_test.py,sha256=sALe6HZTRRLJVNdVm4E2FY1lkqio5U-SKCo3d4lTN20,20242
911
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=L13hD6qXwDJ1Mq_gIctnyIZbOq8m6qS1KIce2imon1U,20242
906
912
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=fNkK0gZgfWIvMknGiCr4BjGO0wVYGW1Rc0pnwluerho,2160
907
913
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
908
914
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
909
915
  cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=P6MEakfiHrlVYyoNDOJt9_txIdq9y87WD9lrtJIcM48,3874
910
916
  cirq/sim/clifford/stabilizer_sampler.py,sha256=XfJ2Y0bpCZTdAmiOVMIYPKDQ5SII5EuDJ9WFXRC-8nM,2540
911
917
  cirq/sim/clifford/stabilizer_sampler_test.py,sha256=sNqJyUY--wqHjsPfm4E1YPBll1-GirvxKFz04n5I0f4,1338
912
- cirq/sim/clifford/stabilizer_simulation_state.py,sha256=ElRCY1nOvXJQX5ccycV-Ak26csKaJ5DUsop9qaDl_FE,6739
918
+ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=5ZeHd1mlz6LW_suOOEWHNX9i2FPFTfHSkGiWCxmGUO0,6739
913
919
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=dsphoXTaIwRCjprGJQirSs0qeVKHlni_pt_GZJn5Vpc,4317
914
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=Qz0nTFfEIklQzkx16AvFxKkkczr2Rr17K9WW-fUvRkU,14034
920
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=yz9x7F72wfgqfSiEhoH2rJ-n14nsYMapMvpkhwidIOY,14032
915
921
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2xpzUT7RG6P6UQw_61c6kU,3149
916
922
  cirq/study/__init__.py,sha256=HTGcCkU8ex7t1etgDtE4l9oanjI_P3UtWKWzb_tw4mA,1204
917
923
  cirq/study/flatten_expressions.py,sha256=LIePrTJJW3PfdQS2jJ-DxhjpuOdwdBZi0WbtXHf2qmw,15638
918
924
  cirq/study/flatten_expressions_test.py,sha256=6e7pTkaBrZW-EmG4teZxcwemqnxCtJW3kq2KOlPcwW8,6078
919
- cirq/study/resolver.py,sha256=sFMiYItWwNAM_gda0XrhPUq_qhGJAqjyAi5j03JHZ4s,11736
920
- cirq/study/resolver_test.py,sha256=f-OY9qfO49UJuCtGuCU7CxoWotCxgicS8PT8IFu_D0g,10296
925
+ cirq/study/resolver.py,sha256=-X6R4FQ5nkEyaf4YsNFTN1Ui8Ss-Mkn39pHOV-vgsZQ,11773
926
+ cirq/study/resolver_test.py,sha256=QQe9Rr0z6qNbSWPEvCKd_DNka6454AWVKbG2J2DD1Wg,10228
921
927
  cirq/study/result.py,sha256=rvExmeYnHbFKKkRU9zdBtxrCm8Y4B3UycZf62QTeOP0,18772
922
928
  cirq/study/result_test.py,sha256=3hmwqehcv-LukZtrUY3q1PAQlawPKXDraiTeElKvDWI,15347
923
929
  cirq/study/sweepable.py,sha256=BMgq8lxVnyJGBeu4gFUt_0P_v4gFwKgazZFftRUEwnA,4185
924
930
  cirq/study/sweepable_test.py,sha256=xjUksIurfbh240fEC7Al_TuiHGz7xZGktQUh86XBG9U,4772
925
931
  cirq/study/sweeps.py,sha256=IzonyU-LgEcMpvQrKZbl14v-BHi01oncp9CmHtLw0J4,19813
926
932
  cirq/study/sweeps_test.py,sha256=IqZp0ywYA430nNE_slBfc4vdKjULttzPl8ytxHLlgWo,11966
927
- cirq/testing/__init__.py,sha256=fYJsFpYtz_4JY3ClCh647oZY7ev27lebzwJ4hXDevXQ,3765
928
- cirq/testing/circuit_compare.py,sha256=au6hSLsK5NB-8u4P6os5g3EnZskq07-zeSgJBNDgBPQ,19175
929
- cirq/testing/circuit_compare_test.py,sha256=6Xw1hrBUDavhji_ygpCKLBHUt_0melvy2VTjH2VcJwk,19743
933
+ cirq/testing/__init__.py,sha256=hbGRltgVaFhA6fMG2aVuRY-tXOluRyy4Rh9EQxqhQLg,3816
934
+ cirq/testing/circuit_compare.py,sha256=c1uGQDfn2uAPtC-fiAwCrCzY-4NjerVBTm2uAnIceDQ,19175
935
+ cirq/testing/circuit_compare_test.py,sha256=AduZCzwBNFCYrjEpyS1DvIR6jU8GaFqQBBgPXyIALoU,19743
930
936
  cirq/testing/consistent_act_on.py,sha256=ofYxdotw7fDfEVaAoM3NJEG2-hTHmi5FlLZkLYfVBWE,7733
931
937
  cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
932
938
  cirq/testing/consistent_channels.py,sha256=hrPRjaabPko2l0xqqkJ8F3OM7pornkDNCP-St2noHXI,1737
933
939
  cirq/testing/consistent_channels_test.py,sha256=Xpm0KA5ArxGKh3h1GJ9sdDrLuyDCrnkVZgzPZOQYsTY,3485
934
- cirq/testing/consistent_controlled_gate_op.py,sha256=mU3h3OtpPzqntRcKn8SqaaYU_evw2MpoB_jQywECsnI,2206
935
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=K2oqmMQvMepQ_SM1sre-E7wNeQlCATKvuGG7rwJUhGQ,2941
936
- cirq/testing/consistent_decomposition.py,sha256=UxXW0Mn6XyDcVtL5-JcPC2f7BAkndyU1HNokQj8PB_Y,3731
940
+ cirq/testing/consistent_controlled_gate_op.py,sha256=RQf9twK1sgjSt1Wb8muneybHrBv4HttHoZdmgi4nqP4,2675
941
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=0SyZ6PQocBivbpO_yTjA7iz2_Rpj2dwWjwpLGLT7h24,3252
942
+ cirq/testing/consistent_decomposition.py,sha256=mEjnRALNL4XyzLlb-87FvIZT0Oc9KBQ9vARQaIJxwx4,3704
937
943
  cirq/testing/consistent_decomposition_test.py,sha256=6GUPhZQI4FVHM9fYZbHr62-TrwiK0jOPMTOznDellFw,3820
938
944
  cirq/testing/consistent_pauli_expansion.py,sha256=NVloOg1I8LGGIEoZxvtUQIUHRvMgo9CNgw5-atuXGsE,1580
939
945
  cirq/testing/consistent_pauli_expansion_test.py,sha256=Gy95osE-L4uQs1E1oxAKHCgVguXl-hjI5UNQJW5cEdI,2402
940
946
  cirq/testing/consistent_phase_by.py,sha256=oSZcZnKMOIJnBS0HgYi-8aRaVJmHGgI--WAUGC5JxQ8,2085
941
947
  cirq/testing/consistent_phase_by_test.py,sha256=YbI0n0FpWpBkbgYp0-yGZSeesDZEst0cmYtXgJE2LQY,3273
942
- cirq/testing/consistent_protocols.py,sha256=dFixwCjCeXmu9EXv4QjIUBXnl1K1UYeMjBUQcZgBD_o,7629
943
- cirq/testing/consistent_protocols_test.py,sha256=mvvwdMolcVBgsNuy2_zplQHFFd89-gvFnkoMu_zotuQ,10075
944
- cirq/testing/consistent_qasm.py,sha256=Bro7TDUFf010Fny1ueIehVYqQUjVXxq7vQY-FbYTkZ8,4953
945
- cirq/testing/consistent_qasm_test.py,sha256=PGXPXexT6sjbbgKdouWWZ9pyXvwRA0HaMrtUzE-yyiQ,2890
948
+ cirq/testing/consistent_protocols.py,sha256=ZRLuaquTuSGhI_KaOdXa0ooDJC3gOO3ykfciKiHqhrU,7773
949
+ cirq/testing/consistent_protocols_test.py,sha256=PFp9DF5b2Il2lj1NW70JKPxa5JbG4I_hn-ftis10UD4,10020
950
+ cirq/testing/consistent_qasm.py,sha256=zCci5xgvjFmBU8G_j-h49DFFUieFOfDhE9Tnx5rvXOI,4943
951
+ cirq/testing/consistent_qasm_test.py,sha256=IM1BDeqZflv0Tui669KRLOlKKWyYnJ9JA-Xoy4lI9Bs,2883
946
952
  cirq/testing/consistent_resolve_parameters.py,sha256=hYbp6kbXrOLCc1DMDRC2zTAx1qlvCCJMuzZ7a5cGhmA,1973
947
953
  cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
948
- cirq/testing/consistent_specified_has_unitary_test.py,sha256=qMar7K1CoubcX_rl9i3iQdI-LpF-OxvY8V4h7k_f26A,2571
954
+ cirq/testing/consistent_specified_has_unitary_test.py,sha256=5LPqoLCVBT8Lr8YEUN8wYZPG09A62mqFwF-WW-_F81Y,2529
949
955
  cirq/testing/consistent_unitary.py,sha256=JWUNy4HeWbs4JjPm6kLTKfqNq1wP2e3WYQxpDabkfZU,3247
950
956
  cirq/testing/consistent_unitary_test.py,sha256=MS0cHzR7gwy4zM_AHiYqNErj7bhqmQX78eIuaYORO6Q,3260
951
957
  cirq/testing/deprecation.py,sha256=neyww8gBZZmgwPX8xPw8Mg4HgG0OXwSixhOAHnIU2ks,2152
952
958
  cirq/testing/deprecation_test.py,sha256=bWq_VY-rGnfvdeJVqdkMIDzMtxQRj9rdR6gu0kCHtzo,2166
953
959
  cirq/testing/devices.py,sha256=fA0rcpZxMU0fVObtLcsDJa4XS_QBzi6uH58W0PAYOoA,3259
954
960
  cirq/testing/devices_test.py,sha256=tIckfI9te14AMPIqJZiQCYtVPT6b5f10yt8Oy51Iouo,2852
955
- cirq/testing/equals_tester.py,sha256=i2hjRMI0ZJSmZjEQHJBUrLm3xzOYafQL_yyB0VJNbbE,6569
956
- cirq/testing/equals_tester_test.py,sha256=eykufbD_8B15SYKVJLOSEWNofgCbjgcPo7TJTUbymQk,10265
961
+ cirq/testing/equals_tester.py,sha256=ZZVY9IUyFghgzOLTq0VygpvGl9ErWwgheClWKkoHW-Q,6569
962
+ cirq/testing/equals_tester_test.py,sha256=-HAlk1SMYuS-v0T275Hn7tT6IIvcBMrXUyzOB975lI8,10265
957
963
  cirq/testing/equivalent_basis_map.py,sha256=pUsJtO87hUGyAeGXR_pSKKkQ72vltsDj01EObxGh5g0,2632
958
964
  cirq/testing/equivalent_basis_map_test.py,sha256=Wiz0AzdU4JMBUqgwgEts4yu2Zwi9GyEuVyYRRzEfbXI,1488
959
965
  cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
960
- cirq/testing/equivalent_repr_eval_test.py,sha256=dp2Yg66HtCCsyZzjIu57dp4jz3RQdc6Oe06ERNiqSeE,2972
966
+ cirq/testing/equivalent_repr_eval_test.py,sha256=FTe_1O9sl84cSmTuxPP8m38P_3mzXrF4yU5X8Bj2wnc,2964
961
967
  cirq/testing/gate_features.py,sha256=RKmctzrmDl-q59pYkkriufOobFDHYnSpTDCYatLIWhQ,1125
962
- cirq/testing/gate_features_test.py,sha256=oIOpgpy4Z8TbQrgcZCKitYwMf6W1aGDy_W3yMlYCC1M,2156
968
+ cirq/testing/gate_features_test.py,sha256=I5hTTazOYucDCqowWtdYN4rvd9hK-9Nlv3fRjs21Bvw,2168
963
969
  cirq/testing/json.py,sha256=is5G95eKX4QirzElQxAbxXBf-zF-N9G6I3ptjL0Ne64,6646
964
970
  cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
965
971
  cirq/testing/lin_alg_utils.py,sha256=1cvYZXSNygnpB8bU1TnxHN-ez7DHYeEEv91D8LKjfq4,6227
@@ -971,9 +977,9 @@ cirq/testing/no_identifier_qubit_test.py,sha256=mNjvPIqh-G_t8TsWIa3-9J2i4rqpt9Cn
971
977
  cirq/testing/op_tree.py,sha256=fb3bOoTihGWp_NvPHekI7s9YZIaBoiufDVhh4ARCfhQ,954
972
978
  cirq/testing/op_tree_test.py,sha256=MwDpi5Lw1e3Y_-9Psx9MPvbbW2x4JlOpp7hl8mBvOQA,1073
973
979
  cirq/testing/order_tester.py,sha256=0_tfixWyX_HrjTXpNrVFZT9bA6J585Ad8tjS-DsX8yU,6690
974
- cirq/testing/order_tester_test.py,sha256=lOrkG39ryWg8lbeawhq-UmJWX9zv8oKY-bO4MtknQr8,5119
980
+ cirq/testing/order_tester_test.py,sha256=2mifnUW_BT17jwWZjmM9p7EoJjq0Ouz54o3G8BqvDqw,5111
975
981
  cirq/testing/random_circuit.py,sha256=oMoz0_VWWVmUGmJ9mu1R7NByNKtSadxdLjFyDEE1qT0,5900
976
- cirq/testing/random_circuit_test.py,sha256=CZK7SVzpnL1lEywyXjhGtBs2vrO8rrftnCue8S51KoE,7042
982
+ cirq/testing/random_circuit_test.py,sha256=x0ovYOIc3-QNKFjCc87LbLkWNwFZKx6T97ZCN3QGRsI,7026
977
983
  cirq/testing/repr_pretty_tester.py,sha256=dtk713qmE87Biaez3c8R83Wb7tlb4xWFfzt44iKkbto,2899
978
984
  cirq/testing/repr_pretty_tester_test.py,sha256=wvwqD72hnAJe7Vg90goZ1Voz5PNGtWELOxAyEn58ivo,2226
979
985
  cirq/testing/routing_devices.py,sha256=uIm0j7GcChiHog9-c7kyIw9qdfBEmLLETRF37UwLviY,2530
@@ -1001,7 +1007,7 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
1001
1007
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1002
1008
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1003
1009
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1004
- cirq/transformers/__init__.py,sha256=FEYuMxJSn1mW_616HKdb5Ruf_JDNFIjZKPtHTNlJdQ0,3743
1010
+ cirq/transformers/__init__.py,sha256=1nSFghZdxPq_PT8iuLPNLmfbkQcCaNAmC-RVSe9qzeg,3877
1005
1011
  cirq/transformers/align.py,sha256=B4DuX84DWd4tLfMH21JviMZSOFYu7KCOMSEMALYsQpw,2727
1006
1012
  cirq/transformers/align_test.py,sha256=M4etT2cgESv1RdkKASguiGxEuqY7kmI1IswjSi-1jjY,7174
1007
1013
  cirq/transformers/drop_empty_moments.py,sha256=Rtn_BrpwkLXyZBdLzwdnsnEGWTdYuf1xOPakzbpv7-w,1517
@@ -1013,24 +1019,26 @@ cirq/transformers/eject_phased_paulis_test.py,sha256=-mXsfbi3V0ojC_YqoQM5otzdW4k
1013
1019
  cirq/transformers/eject_z.py,sha256=0kOyvh6FDfrCrrTCVfpHKNc_kNC_pBdEKoXv11kuqGA,5803
1014
1020
  cirq/transformers/eject_z_test.py,sha256=U0BMdW6nW1cI18I5tE__1YpCvtzDwYGECgqUph5Fc8I,13302
1015
1021
  cirq/transformers/expand_composite.py,sha256=nASRoP4qfjsnX_t2a2hBw8BE7B_JD-0XLGIIXxbIdbc,2387
1016
- cirq/transformers/expand_composite_test.py,sha256=9FlQigi57XjYhYzvrh0-H0YxIrOoaRB3g3-hNbsc_X4,8632
1022
+ cirq/transformers/expand_composite_test.py,sha256=4Gn6LVqr0DeuUumde80O4esOLGIoo86_S_Mk-HwnMfk,8640
1017
1023
  cirq/transformers/measurement_transformers.py,sha256=m2v4FAEaIZtYXEh-rFzxa_sx-syqdWZmCbf6yar0GSM,19035
1018
1024
  cirq/transformers/measurement_transformers_test.py,sha256=tkuevHQWnFWmxmvfJZ2T42uCIw4oaYyZ4XvjRGFGdug,27504
1019
1025
  cirq/transformers/merge_k_qubit_gates.py,sha256=dUsswQOIHfbb6Lu37fecgrpT6_45zmDE7eqCUbW1KOI,4390
1020
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=OFiTXms9EBYp1VJJ0NhlyuZAH8R0hY3PNbm4d2BwCko,14337
1026
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=0zp3FZpoNqUstrHxb7mGRQ79Ld6mV4a_inNqwfw8Wjw,14341
1021
1027
  cirq/transformers/merge_single_qubit_gates.py,sha256=NRREV4Z6Ptc3mZnOUgzQePdj4H0aix17WOUwZUB7iQ8,5826
1022
1028
  cirq/transformers/merge_single_qubit_gates_test.py,sha256=0U5oitYfOIka1hUOn1Cv8zVK1Uo34DVaOnGMgqfRg4Q,9966
1023
1029
  cirq/transformers/optimize_for_target_gateset.py,sha256=2f93hEA_9vXbutkoOtzBTk_bjKLfdLWqsuue4-w4Rp0,6005
1024
1030
  cirq/transformers/optimize_for_target_gateset_test.py,sha256=G73RDFhdhXqpXMTEPyl_t5huhcyY1u6XqOToVEFpVJA,13848
1025
- cirq/transformers/stratify.py,sha256=mdDdisvyDaU3G6X-0Z8lbYN07HBC8y2NzIL15SSzYxo,10474
1031
+ cirq/transformers/qubit_management_transformers.py,sha256=Uk1DcFCRFaFsLTxp_B5AKpSTDjqBKUhOGXD-kmEV0cM,9429
1032
+ cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
1033
+ cirq/transformers/stratify.py,sha256=EEcXD6PEdHTZAoaAfaHnsw3Hf1SftbIl19hZOU_ZnXE,10469
1026
1034
  cirq/transformers/stratify_test.py,sha256=LmQFPB4grvRVvOgV8mA-pXNK3k9UC-banFJgWtDx_cA,15270
1027
1035
  cirq/transformers/synchronize_terminal_measurements.py,sha256=p061MYYglY6HhWYYkFzIny0CtaY9LUygPg4UbGewZhQ,3842
1028
1036
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1029
1037
  cirq/transformers/transformer_api.py,sha256=beDdouAulWeg4SQRwAjgc5H1jrKD0maYY32XczsHokI,16964
1030
1038
  cirq/transformers/transformer_api_test.py,sha256=f-Vup0VCUvTqJKm5kWHf6xet7sFTerLMGYzJHy8Rc5s,13045
1031
- cirq/transformers/transformer_primitives.py,sha256=0QKiY2pEBzIfGsE4y5fGSfJlehOvHzIVaj10eNyHt8A,31574
1039
+ cirq/transformers/transformer_primitives.py,sha256=zj-GYew5sioNjOxOgjIjanxxDikYiewZcc9vPVCDZz0,37544
1032
1040
  cirq/transformers/transformer_primitives_test.py,sha256=pJhCN28Tev7F04waYRtTlgJEY8fqtBcYJZDPSPUAWLw,41319
1033
- cirq/transformers/analytical_decompositions/__init__.py,sha256=jUSQkbrFMGRi3ez_TXw8c487dJ_cTF-157JAQcIxUg4,2683
1041
+ cirq/transformers/analytical_decompositions/__init__.py,sha256=ZNtETntol3G_n6uqzGxOmBanGMbCj0QAc-5vicN2jkM,2724
1034
1042
  cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=DsuuP91pm2dX0CO4rWwmJAJyAfuXMcA1UJK0g8krp7k,6726
1035
1043
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=AAZh_9vEb5f2E_EItPZTlMRNdv0d47AwqTn4BytX0UI,7102
1036
1044
  cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=P-ge3093ayMAEiIf-X_Yv_UuEWkVBEEvJUKobhlXVuA,8554
@@ -1045,10 +1053,10 @@ cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha25
1045
1053
  cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=4GfU6wctBoG-OVFqFOE08xymd5dXzY-doE8ZNpsKohI,12308
1046
1054
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=0N6NbY6yc0VGuTheR37mhUIKFu5TYmToxJO2mbLp9xM,2439
1047
1055
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=CbWBFjdcswiJQRr68Asx5SWJeo_qZUJMPhfxPaOMjpk,2516
1048
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=MPktiQy4LFTQNbjbfO8LtGSPRuhZmbgSaCnS2jvIXO8,9789
1049
- cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=y-m1AP85Pb88sZ81i9Kwow9aawo-GIGnxfWwjjjRUDs,7888
1050
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=mRN8mOp0fWCuoETg092OZy4tMEt97g44EwhjfFoLP1o,4482
1051
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=GP1Yc__ePMz-UFqeeeP9c-7fqlBZFVQxRV8Ylk2MdwU,3627
1056
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=yMSsKf31MNXPAhlZ81W3ZhH6FDw2hrvxO0sa4YyF2fk,9762
1057
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=t2YovP9bbZTwaa9TJOAurYsKBnHnI0mKIrYTLorHuR8,7847
1058
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=-wahknipQWwt5J9lSKzxOuTqo9Of-SdEAGiuthzrrCo,6177
1059
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=YBIfOS_SzNC3ahoNdI96vrF9qupGlMt48yhi_S-6rqk,4457
1052
1060
  cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=l51weqMCTYqIb7BA1zALbmnSr4JsCI17Qtm35jm6kSs,8456
1053
1061
  cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=weo2k8OLUIeaFYr6xNsdBMbq5KVdnIxYyELYYVyP0Ds,9351
1054
1062
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=p3_Mgm-v1jmEAT82Z_jas0hoIUg-TUsZHJ7SC_k2nqU,9721
@@ -1058,9 +1066,9 @@ cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85Mbu
1058
1066
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=F_XpM4ApYHxV6hbWnV3C7Ud9L1BnpvBHBXShPh2mP3k,25397
1059
1067
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=eKOzjWkR7xs-CL2oPj__nWXR0LL9oO42wEHibnvWq-o,20618
1060
1068
  cirq/transformers/heuristic_decompositions/__init__.py,sha256=2KBAUk-vsVku-HuahLbDQxp8bjEQMZUUNiBz_cvUMUw,831
1061
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=cj9_xAxudXKlCFtLea6VitzEIyWe4h_iTpJKPm-j2LI,10785
1069
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=j9bbiIbC2rvwG830gTTf9zr9C7RVA5Ilhka_ZNF-N7w,10785
1062
1070
  cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=N02nlz7tISYVArvWNILwg-hnDB5Y9PCHbwIxk42Afv8,1534
1063
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=NXfLgggaMtDEVEtT4ukgec6UKQ4e_vUHbTtSb0RSHNU,20073
1071
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=de52YmIgxhv4YWnMMLPXJIPCe1O9MK_s5DHg5NBpNtg,20066
1064
1072
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=dn-lBXnK_MXYMBtrQjlIm1FUBBGECiwyCyl5wCd7lL8,3830
1065
1073
  cirq/transformers/routing/__init__.py,sha256=LqRtw_nMUtAVA2lkelb-WvEZ0ZJHD73rHfFaIvSTt7E,1019
1066
1074
  cirq/transformers/routing/initial_mapper.py,sha256=FJobfxRsD3uO6IbRBQuR36T0D1lcFYUEP0VrW6AdOdk,3036
@@ -1069,20 +1077,20 @@ cirq/transformers/routing/line_initial_mapper.py,sha256=9wph7XMgI3MpAAEPvJvQX6qB
1069
1077
  cirq/transformers/routing/line_initial_mapper_test.py,sha256=l48BRKOEnv-4c31Anpg4bucWUppHg9-LMeo7lUny3Es,7476
1070
1078
  cirq/transformers/routing/mapping_manager.py,sha256=m0XCzP3FXcIXvhiduSErmPROn31Dx2nfjlSPYYIaEJ8,8631
1071
1079
  cirq/transformers/routing/mapping_manager_test.py,sha256=ijlRd3mCOO1QFI6L8utQS0m6u_-GFtc_Sb5h07ADv8k,5921
1072
- cirq/transformers/routing/route_circuit_cqc.py,sha256=pcjTf7wrpVe0XP9_67HBsRnuidSzxsU8VAyXSgKGx_U,21150
1073
- cirq/transformers/routing/route_circuit_cqc_test.py,sha256=lywnwRqvrLBS4MsrqM33vNqHcC9K0zPqAPg6ZXedOjY,8058
1080
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=iiHgLX96l601pFZpJbUq-bHkVLEGoAkH4wDl9stFKc8,22021
1081
+ cirq/transformers/routing/route_circuit_cqc_test.py,sha256=gKGIBwftHR6CkUGdZ5z8t87o1Ch3rfcMjwjCO9CAn2g,9999
1074
1082
  cirq/transformers/routing/visualize_routed_circuit.py,sha256=cKYvswXnNIQJ0Okketzkpy9Tw0Z_Y2DaG4cJmK9ouHY,2917
1075
1083
  cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=MHL0DTdWCTsS1ayXlaJmBor8UbXo94lhgPKDXc97lRw,5040
1076
1084
  cirq/transformers/target_gatesets/__init__.py,sha256=Sy572ZdTcImWcFinPq53rwf1Yxm9S3tpp4mjSCx-_T8,991
1077
1085
  cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=XSHBerLgJVKL8gLYVSxSQ42zYr48GiYg2-m_SlGV5O4,12377
1078
- cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=qxoO0E4Mvrd0npmqaYve-yyAomSi9-DQVh8YVEK0rss,9518
1086
+ cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=-3pTUXcNvO-2OigtNco4DtF9jAaKu6SnnXBzlOmhxKU,9538
1079
1087
  cirq/transformers/target_gatesets/cz_gateset.py,sha256=lEHuFq59pK3mS6XYkt8eLtyMvATZzRPWSKYF6GIrYXg,4499
1080
- cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=MNjuxf-A2fmPdoGbBvpxj88PLCMXhnNN-NLMe9aFH_c,10584
1088
+ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=M5rhQPt2XGrX26cvyknTIFGLBqa2jPgg4D0z8rhFogU,10584
1081
1089
  cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=Rtoi2xmhlk_fobf5Hwc1nDQlLtmKPcJm2FJTR8JgpN0,6278
1082
1090
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=-Oi3b9oX-0_3U9SKAkijVO-uBy4ut4PrFnsx-yFJ9mU,14391
1083
1091
  cirq/value/__init__.py,sha256=J6nJSTfKIoEd5J2-2SrvWmtdXNZ4cuyVcXJxRCHFJi4,2005
1084
1092
  cirq/value/abc_alt.py,sha256=ELJbQucNpDCPG4ImN9EDORqJU9OHT90EF1pwMBU0bRg,5998
1085
- cirq/value/abc_alt_test.py,sha256=v3D9LoHIAMI9sUIibwjBfSTUE1vCKcj1a424n_mkw_0,9013
1093
+ cirq/value/abc_alt_test.py,sha256=-N4ZZPVhkm1E5LaB2ZQEkOVObGFcbZbkdhS669cTtOg,9013
1086
1094
  cirq/value/angle.py,sha256=vNZfTE3WmbWPYBKSPt--wvTub5bgUhmKR7ao_dIlyBQ,3313
1087
1095
  cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1088
1096
  cirq/value/classical_data.py,sha256=nJhGISrUyCi6poov3GTTNtyEaozVp0f0O5dUIF-YdQ4,11603
@@ -1091,34 +1099,34 @@ cirq/value/condition.py,sha256=QrxKBAox4C-z2pL2_xeKMvmfp0OP4tVFXJdPULx1pik,5900
1091
1099
  cirq/value/condition_test.py,sha256=FGnCFcpeIQFRbnszKsHKA5K7sderTz7kwS7zWbWwx64,4037
1092
1100
  cirq/value/digits.py,sha256=pUQi6PIA1FMbXUOWknefb6dBApCyLsTkpLFrhvNgE0Q,6024
1093
1101
  cirq/value/digits_test.py,sha256=evx-y619LfjSN_gUO1B6K7O80X5HJmxxBPl61RrOovo,3812
1094
- cirq/value/duration.py,sha256=SBgxd0Q3LMkriDpGKImlIGuwIhCvyQOTOf7qRTilFpc,9087
1095
- cirq/value/duration_test.py,sha256=mOuZkLdASZ3mjauJXFuJt3aoo0AmDBfec6tv6ap82IA,8142
1102
+ cirq/value/duration.py,sha256=isNzA1TuKb5rSaAYy4JpgT91Zt9_5XLQBSmMkuWCtD4,10358
1103
+ cirq/value/duration_test.py,sha256=C7nwg7IlHoQOUhWa_aX8vy7_qp654ZIDtmnKF35UiqE,8244
1096
1104
  cirq/value/linear_dict.py,sha256=BG3pckQPX4DPqNvp-HxI_dTzQf8sGx6nIRkn0-ye4Qg,10643
1097
1105
  cirq/value/linear_dict_test.py,sha256=uEHbvobWV4EypOXQGe6B4xh6atLbQq8YSOomNHgv38o,17107
1098
1106
  cirq/value/measurement_key.py,sha256=MThR6rFY_YuSvcvWOacCEfOluJC0u7d8VvnDkHe-HAM,4939
1099
- cirq/value/measurement_key_test.py,sha256=sfY-PHDfG__JHPpc1IaiNiUDF3vBmoVSP-Id4Vr5fKs,4466
1107
+ cirq/value/measurement_key_test.py,sha256=GnEX5QdEVbmi0dR9URcgXQH23aqW7Y_PKmTb2eIdRCg,4466
1100
1108
  cirq/value/periodic_value.py,sha256=U_tYBgWNVblZ6XDSwbXZin67KA0jUZiDAPpz-w7bnhw,3956
1101
1109
  cirq/value/periodic_value_test.py,sha256=mMvj_Ai2T8BWRbc7jdvb7JPX8OZxlL4H7jtdvy54ono,4319
1102
1110
  cirq/value/probability.py,sha256=FxbvxZJhQ4ttN8dBR3bhV1aQmOawUAl8fbcWc4zfzUg,1582
1103
1111
  cirq/value/probability_test.py,sha256=QXfihRBOfOIA_IoXlSbhoe7L-VGCBLLXYS99pL-R1yE,932
1104
- cirq/value/product_state.py,sha256=PDUU-LzhWxTK-DU1CmtJOe7tzaMa_ix2aIcaF9bxp2Y,9050
1112
+ cirq/value/product_state.py,sha256=5h-dM2o9JCTsJQsCZbED1TFjrbPswaoqrQ2VXFiZDYU,9018
1105
1113
  cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
1106
1114
  cirq/value/random_state.py,sha256=SA4owzMPof8P5FLPhGUPN7ODfciKAIY24PgxfmnJ5AY,2063
1107
1115
  cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5BU,1348
1108
1116
  cirq/value/timestamp.py,sha256=u0v5FmnSF_o3NE7aF-xIfQ5cDAVZzaUb-ZMdrxWYg2Y,3649
1109
1117
  cirq/value/timestamp_test.py,sha256=eZt9LLVK6TQy-2Bo1djitUD4at7i7M4lN60bLCx9UPs,4029
1110
1118
  cirq/value/type_alias.py,sha256=YD5m-77rx-hatIEVi5Q5j5tZ2Ji3Mmg4jUY9GT3LscM,1144
1111
- cirq/value/value_equality_attr.py,sha256=DknMj8jAAB0Gcht12dK67OcHIhC763w0f_BlLdE9Rjg,9501
1119
+ cirq/value/value_equality_attr.py,sha256=JX5urKm22YUi7xIc55foyhov8wSkHqwEHQh5sfbuAuw,10048
1112
1120
  cirq/value/value_equality_attr_test.py,sha256=k_nl5hWxo4yMO6WNu0wU68wyeb-RN9Ua_Ix7s9UTfOE,6412
1113
1121
  cirq/vis/__init__.py,sha256=e3Z1PI-Ay0hDHhIgFZEDwQIuO8C_aayNdL-EByF0J4o,1001
1114
1122
  cirq/vis/density_matrix.py,sha256=kMAPcRh6f0ghZKSe86nB_2iFngrDsw0pNael1EZ5BEw,4819
1115
1123
  cirq/vis/density_matrix_test.py,sha256=Xg41NQZBfoyrkaX3n9pW4q1LIxWpOW3Cr_I_Wx51GlQ,6965
1116
- cirq/vis/heatmap.py,sha256=sNLjAyebdO1vLbugySsIHe61TfvBIsZA9qgd3XbvZWE,16072
1117
- cirq/vis/heatmap_test.py,sha256=pk3-IpkbDBb75smvlyNp5_rn3YVeXIQgDRZ5xhFg-3c,13231
1118
- cirq/vis/histogram.py,sha256=xqgy77nF0vyBjeul83G0yH_e342ecqpWu2RlwVIGEAo,5061
1124
+ cirq/vis/heatmap.py,sha256=O7BM3POKmbAuSHjiWPEUc7-KO5d3ckCQ0ovz5BCx4dI,16203
1125
+ cirq/vis/heatmap_test.py,sha256=Hg4DwRKoTe7it2RQhsvX8aNZzs5MULtwaYteJvD6-_g,13605
1126
+ cirq/vis/histogram.py,sha256=gQUrcebsk5wgPT38pWFW55jG9zaKhxp8zLRGmmVDk8s,5107
1119
1127
  cirq/vis/histogram_test.py,sha256=Qlw0e3amw_MFga-hNweiLzRCH174W9bB2qkmX_RiS-U,1904
1120
- cirq/vis/state_histogram.py,sha256=hKU7frKG2wdXsrQjZu0-Fz1FqmAC-IVhS4ieArqN1ec,4208
1121
- cirq/vis/state_histogram_test.py,sha256=ZOakGIz3-xeoSICljLt-0ol5ovxBkCt7rmzD_UfOgSQ,3679
1128
+ cirq/vis/state_histogram.py,sha256=i8PvGLMHu74mJVD18EuS7YFGw9aM3pTa-ocnZHOW2kc,4298
1129
+ cirq/vis/state_histogram_test.py,sha256=KzxDJedwE-KZR-K_TZlMh01DroSnZPArZPOo4CBEYWI,3761
1122
1130
  cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
1123
1131
  cirq/vis/vis_utils_test.py,sha256=-aiL5WmhPDs_5BF2lDol1koD4JuHTiYxLK2ofyWrbCU,939
1124
1132
  cirq/work/__init__.py,sha256=wY4w2J9iPehTWTyETX9YDQG69D-oc1BvHoC0mz8PiI8,1381
@@ -1128,8 +1136,8 @@ cirq/work/observable_grouping.py,sha256=-FVJPuB-sDqoNQtiMxuO_TKhy-5uvMeRzfeWMfbx
1128
1136
  cirq/work/observable_grouping_test.py,sha256=lVLLhQlwpAuBPUEkfCg7cTS_AhtuojLbvy288XX3Rn0,5811
1129
1137
  cirq/work/observable_measurement.py,sha256=8XwQmlOpTYrFEdAPQo6c29fkghq6z6fsbLg3lJp57DI,28319
1130
1138
  cirq/work/observable_measurement_data.py,sha256=hEanWlODzShivKve7RiEJ0G62E490oWVVuymSyqnyro,20833
1131
- cirq/work/observable_measurement_data_test.py,sha256=yJWgtwFMApkmX8tplpCX8cLOlDhGTDmb4qzQ7oEnRdc,19698
1132
- cirq/work/observable_measurement_test.py,sha256=jVUkNJAOr-ZfwRcITIEj6sh5lxzKPnDUgzp-e_HnYHk,20191
1139
+ cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u73k6kxTWU6Vx_tfOI,19696
1140
+ cirq/work/observable_measurement_test.py,sha256=mKa_iXZ5lBy5zWD_X9UBabwm6MQnTwx2dDMTpPwpqBM,20189
1133
1141
  cirq/work/observable_readout_calibration.py,sha256=9lfeybebV4Fh3Y-ExtxIGErPzZcK16oyTbN5XHMIaBA,1888
1134
1142
  cirq/work/observable_readout_calibration_test.py,sha256=CHdwbwr4O84yVSRWkcC9Aysz8imiPs0Na5eT2jP86Z0,1807
1135
1143
  cirq/work/observable_settings.py,sha256=OsZS8XvHT2LCFGkzu-wh1WShOx93I1nZ2K7uce-iT4s,6688
@@ -1138,10 +1146,10 @@ cirq/work/pauli_sum_collector.py,sha256=N1IsIwudBi84XWP1x7LNE2uQ6DGR2LFIWPhGbdHx
1138
1146
  cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1139
1147
  cirq/work/sampler.py,sha256=JVv1vvfa6EgFiR3UeDk44U186dCrioH2NZXueCgsb9w,19828
1140
1148
  cirq/work/sampler_test.py,sha256=zo1Hj6sn6fLs_WZMxYRApBqgBsldmptn74NL0jhNukc,12325
1141
- cirq/work/zeros_sampler.py,sha256=D3hbNZC-jXKuNAWg2OUiUuT8pmDV_WFnEfMank6In4o,2357
1149
+ cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
1142
1150
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1143
- cirq_core-1.2.0.dev20230717225858.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1144
- cirq_core-1.2.0.dev20230717225858.dist-info/METADATA,sha256=3oPlscedL5z0guArfR3eAVAjeYewk1Kj-FNl2NR4k6s,2095
1145
- cirq_core-1.2.0.dev20230717225858.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
1146
- cirq_core-1.2.0.dev20230717225858.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1147
- cirq_core-1.2.0.dev20230717225858.dist-info/RECORD,,
1151
+ cirq_core-1.3.0.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1152
+ cirq_core-1.3.0.dist-info/METADATA,sha256=FqozoCYbhe9_-HAgdeD97J0UHlzVUdaegXNAZL86QiQ,1869
1153
+ cirq_core-1.3.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
1154
+ cirq_core-1.3.0.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1155
+ cirq_core-1.3.0.dist-info/RECORD,,