cirq-core 1.5.0.dev20250403060241__py3-none-any.whl → 1.5.0.dev20250403161251__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 (106) hide show
  1. cirq/_import.py +1 -1
  2. cirq/_version.py +1 -1
  3. cirq/_version_test.py +1 -1
  4. cirq/circuits/circuit.py +2 -2
  5. cirq/circuits/circuit_test.py +0 -13
  6. cirq/circuits/insert_strategy_test.py +1 -0
  7. cirq/circuits/optimization_pass.py +3 -3
  8. cirq/circuits/qasm_output.py +1 -1
  9. cirq/circuits/qasm_output_test.py +5 -0
  10. cirq/circuits/text_diagram_drawer.py +1 -1
  11. cirq/contrib/acquaintance/bipartite_test.py +11 -0
  12. cirq/contrib/acquaintance/devices_test.py +5 -0
  13. cirq/contrib/acquaintance/executor_test.py +1 -0
  14. cirq/contrib/acquaintance/inspection_utils_test.py +5 -0
  15. cirq/contrib/acquaintance/shift.py +1 -1
  16. cirq/contrib/custom_simulators/custom_state_simulator_test.py +6 -4
  17. cirq/contrib/graph_device/graph_device.py +3 -3
  18. cirq/contrib/paulistring/pauli_string_optimize.py +3 -1
  19. cirq/contrib/paulistring/pauli_string_optimize_test.py +0 -1
  20. cirq/contrib/paulistring/recombine_test.py +1 -1
  21. cirq/contrib/qcircuit/qcircuit_pdf.py +11 -8
  22. cirq/contrib/qcircuit/qcircuit_pdf_test.py +21 -0
  23. cirq/contrib/qcircuit/qcircuit_test.py +1 -1
  24. cirq/contrib/quantum_volume/quantum_volume.py +1 -6
  25. cirq/contrib/quimb/mps_simulator.py +2 -2
  26. cirq/contrib/quimb/mps_simulator_test.py +5 -0
  27. cirq/contrib/routing/greedy_test.py +3 -1
  28. cirq/contrib/svg/svg.py +1 -1
  29. cirq/contrib/svg/svg_test.py +3 -2
  30. cirq/devices/unconstrained_device_test.py +6 -0
  31. cirq/experiments/qubit_characterizations.py +4 -2
  32. cirq/experiments/random_quantum_circuit_generation.py +2 -3
  33. cirq/experiments/readout_confusion_matrix.py +4 -4
  34. cirq/linalg/combinators_test.py +3 -0
  35. cirq/linalg/decompositions_test.py +0 -5
  36. cirq/linalg/predicates.py +1 -1
  37. cirq/ops/clifford_gate.py +5 -16
  38. cirq/ops/common_gates.py +8 -8
  39. cirq/ops/common_gates_test.py +5 -0
  40. cirq/ops/control_values.py +1 -1
  41. cirq/ops/controlled_gate.py +1 -1
  42. cirq/ops/controlled_operation.py +1 -1
  43. cirq/ops/controlled_operation_test.py +6 -2
  44. cirq/ops/dense_pauli_string.py +1 -1
  45. cirq/ops/eigen_gate.py +1 -1
  46. cirq/ops/fourier_transform.py +0 -2
  47. cirq/ops/gate_operation.py +1 -1
  48. cirq/ops/gate_operation_test.py +1 -0
  49. cirq/ops/gateset_test.py +7 -0
  50. cirq/ops/greedy_qubit_manager_test.py +5 -0
  51. cirq/ops/kraus_channel_test.py +1 -0
  52. cirq/ops/mixed_unitary_channel_test.py +1 -0
  53. cirq/ops/op_tree_test.py +4 -0
  54. cirq/ops/pauli_measurement_gate_test.py +1 -0
  55. cirq/ops/pauli_string.py +3 -80
  56. cirq/ops/pauli_string_test.py +46 -0
  57. cirq/ops/phased_x_gate.py +1 -1
  58. cirq/ops/random_gate_channel_test.py +0 -6
  59. cirq/ops/raw_types.py +1 -1
  60. cirq/ops/raw_types_test.py +26 -1
  61. cirq/protocols/decompose_protocol_test.py +1 -1
  62. cirq/protocols/has_unitary_protocol_test.py +8 -7
  63. cirq/protocols/json_serialization_test.py +7 -6
  64. cirq/protocols/kraus_protocol.py +2 -2
  65. cirq/protocols/measurement_key_protocol_test.py +7 -7
  66. cirq/protocols/unitary_protocol_test.py +1 -1
  67. cirq/qis/channels_test.py +0 -9
  68. cirq/qis/measures.py +2 -1
  69. cirq/qis/measures_test.py +7 -0
  70. cirq/qis/states.py +1 -1
  71. cirq/sim/clifford/clifford_simulator.py +2 -1
  72. cirq/sim/clifford/clifford_simulator_test.py +32 -9
  73. cirq/sim/density_matrix_simulator.py +2 -1
  74. cirq/sim/density_matrix_simulator_test.py +10 -2
  75. cirq/sim/simulation_state.py +1 -1
  76. cirq/sim/simulation_state_test.py +1 -1
  77. cirq/sim/simulator_test.py +1 -1
  78. cirq/sim/sparse_simulator.py +2 -1
  79. cirq/sim/sparse_simulator_test.py +10 -2
  80. cirq/sim/state_vector_simulation_state_test.py +1 -1
  81. cirq/study/resolver.py +0 -4
  82. cirq/study/resolver_test.py +10 -1
  83. cirq/study/sweeps_test.py +18 -0
  84. cirq/testing/circuit_compare_test.py +6 -6
  85. cirq/testing/consistent_pauli_expansion_test.py +1 -1
  86. cirq/testing/consistent_qasm.py +1 -1
  87. cirq/testing/equals_tester.py +1 -1
  88. cirq/testing/equals_tester_test.py +5 -5
  89. cirq/testing/gate_features_test.py +5 -0
  90. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +1 -1
  91. cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py +1 -1
  92. cirq/transformers/qubit_management_transformers.py +1 -1
  93. cirq/transformers/transformer_api_test.py +8 -0
  94. cirq/transformers/transformer_primitives_test.py +2 -2
  95. cirq/value/condition.py +1 -1
  96. cirq/value/duration.py +1 -1
  97. cirq/value/periodic_value_test.py +5 -0
  98. cirq/value/value_equality_attr_test.py +1 -1
  99. cirq/vis/heatmap_test.py +1 -1
  100. cirq/work/observable_settings.py +2 -1
  101. cirq/work/observable_settings_test.py +1 -0
  102. {cirq_core-1.5.0.dev20250403060241.dist-info → cirq_core-1.5.0.dev20250403161251.dist-info}/METADATA +1 -1
  103. {cirq_core-1.5.0.dev20250403060241.dist-info → cirq_core-1.5.0.dev20250403161251.dist-info}/RECORD +106 -105
  104. {cirq_core-1.5.0.dev20250403060241.dist-info → cirq_core-1.5.0.dev20250403161251.dist-info}/LICENSE +0 -0
  105. {cirq_core-1.5.0.dev20250403060241.dist-info → cirq_core-1.5.0.dev20250403161251.dist-info}/WHEEL +0 -0
  106. {cirq_core-1.5.0.dev20250403060241.dist-info → cirq_core-1.5.0.dev20250403161251.dist-info}/top_level.txt +0 -0
@@ -68,6 +68,7 @@ def test_param_hash():
68
68
  params3 = [('beta', 1.24), ('gamma', 4.57)]
69
69
  params4 = [('beta', 1.23 + 0.01j), ('gamma', 4.56 + 0.01j)]
70
70
  params5 = [('beta', 1.23 + 0.01j), ('gamma', 4.56 + 0.01j)]
71
+ params3 = [('beta', 1.24), ('gamma', 4.57)]
71
72
  assert _hashable_param(params1) == _hashable_param(params1)
72
73
  assert hash(_hashable_param(params1)) == hash(_hashable_param(params1))
73
74
  assert _hashable_param(params1) == _hashable_param(params2)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cirq-core
3
- Version: 1.5.0.dev20250403060241
3
+ Version: 1.5.0.dev20250403161251
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
@@ -2,10 +2,10 @@ cirq/__init__.py,sha256=rUfvQDtywCak2mJQoihOSyRjGxQahK-YOv909us0w5M,28132
2
2
  cirq/_compat.py,sha256=_DknO27XngcjEidNApRsCzLUWDS4QmDk9M12BaqP5Is,29531
3
3
  cirq/_compat_test.py,sha256=0m3sYIyxRNv9jvAo6rzJ-cnbpny3KGnAByrbU7bApgQ,34720
4
4
  cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
5
- cirq/_import.py,sha256=TZOcGFGV9cW53VvNe8ufqOQmrlxRVP9UP0CdRdTbcBw,8401
5
+ cirq/_import.py,sha256=cfocxtT1BJ4HkfZ-VO8YyIhPP-xfqHDkLrzz6eeO5U0,8421
6
6
  cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
7
- cirq/_version.py,sha256=EXcD4xPxhelJ_U1y5DMKwGR6EuZPkgrXLq4YB9wwO7I,1206
8
- cirq/_version_test.py,sha256=osLkKnZLecID4ZoG4TaYkw36-KCZ1LdSUMZHgLEEw44,147
7
+ cirq/_version.py,sha256=j-fCpPvtBglIFUo8ATvJCI4xENyO73P55NP5YmIpS44,1206
8
+ cirq/_version_test.py,sha256=kn0qsgomvRNSWbU7t_oRQLZEbf8eAhXInRTj2hayBY4,147
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
10
  cirq/json_resolver_cache.py,sha256=YVamU72nCUT5dG0bhAvRKVX5lXcZMNTwP3H36v-cYag,13615
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
@@ -16,43 +16,43 @@ cirq/circuits/_box_drawing_character_data.py,sha256=5Ldk4XlJRacmyvsfcl2KhlMdXqO1
16
16
  cirq/circuits/_box_drawing_character_data_test.py,sha256=b3BN-iVUkQENi2Ja-RYQ_-_lNcKgwV1F9DyalXxiI10,1624
17
17
  cirq/circuits/_bucket_priority_queue.py,sha256=ml98_VAwGXzASUS0hE7lT7PeA0Hugz-qAZtjtAdBsvw,6744
18
18
  cirq/circuits/_bucket_priority_queue_test.py,sha256=1FnB39rJKODvXP3SpSD6B8Tu02yQWCWOUQSPmR-22Pw,5288
19
- cirq/circuits/circuit.py,sha256=F718lMtWoEa1XlMhs-yU_0LajouDr363ymuwYB4ugvg,119444
19
+ cirq/circuits/circuit.py,sha256=XXyjI_qPkH5lYROVZsargpFk0-a5YO88plG_D5Xpebo,119484
20
20
  cirq/circuits/circuit_operation.py,sha256=1hnNilAMeLfPIXjmIofzHeJ5MDucjmOl7LB6mPq8J5U,36438
21
21
  cirq/circuits/circuit_operation_test.py,sha256=SFyM12Ky7-OVwl-jK3OTMMN0DD5hR6tWfx_v7m6HUMo,48866
22
- cirq/circuits/circuit_test.py,sha256=Yx8LQjqMDuyeG-OGi2cD5U_ub8bLoIIXOsTLekuqk4U,163298
22
+ cirq/circuits/circuit_test.py,sha256=FoGpOv8qBjNaMkSPdO8EKldLXEcDgUhM9bk2mf-dH3A,162812
23
23
  cirq/circuits/frozen_circuit.py,sha256=FrCdTS7kNqd9t3WtwzNLxL-kO6ei7w-h4MwNZfZJhRo,9252
24
24
  cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
25
25
  cirq/circuits/insert_strategy.py,sha256=JU_KPe74P3OpbVQei5iDPgEpOjpts5JFKXU5Xy1QYHE,3211
26
- cirq/circuits/insert_strategy_test.py,sha256=LVtUECfTe59tYO2piuD1kCA6lhI7ioerF7tp2cQ3bnk,1136
26
+ cirq/circuits/insert_strategy_test.py,sha256=ttqhNP1G1jrtwFd0KIlqkTj_1C8F1K7Jqnaz0rEWAiE,1185
27
27
  cirq/circuits/moment.py,sha256=YayXeFGm5eU5m0yGFah8tf9XrgoFZbBZ6yPb6u-KJjU,25996
28
28
  cirq/circuits/moment_test.py,sha256=672QcwLSTuuJzXIISH9UyMIOX89aYZZD3odvhyzhxLo,31116
29
- cirq/circuits/optimization_pass.py,sha256=JOeTTu_iOemp51pwE6M952glfKiQ8RmaDpav98-pgIQ,6468
29
+ cirq/circuits/optimization_pass.py,sha256=7-5e48vhKLdZSzeucUeJ15wkQu28Kh1lyV9NIHeuAtQ,6528
30
30
  cirq/circuits/optimization_pass_test.py,sha256=jN7A05bLY7jIfGy_OuAg56ZpLiFtMDbCucawhgyS8-M,5948
31
- cirq/circuits/qasm_output.py,sha256=IUKX5N7GfsLa2fxjQ_HUZWEvBGQKswXvqS7qdWsFQJ0,13090
32
- cirq/circuits/qasm_output_test.py,sha256=b8qQkFlLjTogYT-Lc-eQ61c_8Rkbu-D4bvhjZw66Rgc,13635
33
- cirq/circuits/text_diagram_drawer.py,sha256=5zX1sq62oY51dKUhIjgZr0oAYzs74JwrhxKm2hzxjMk,16572
31
+ cirq/circuits/qasm_output.py,sha256=dHS4oJyocfrq_txxPj1gCsoSyElWcGkLKp_XSEnRq7Y,13110
32
+ cirq/circuits/qasm_output_test.py,sha256=o4A24t-gcQF6EptY5zQE4SoGjycSQAyMJux1no7FPsk,13840
33
+ cirq/circuits/text_diagram_drawer.py,sha256=y3hKVR6yYM_yneUzL94072RH30Ny5YN-8sq96gFkmtc,16592
34
34
  cirq/circuits/text_diagram_drawer_test.py,sha256=CAp28ZagRpOZjRJ35uGQR7QmKxSLl65lgq8Vx8GKsjg,10751
35
35
  cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
36
  cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
37
37
  cirq/contrib/json_test.py,sha256=GKP_XKouLW1WPotgUDyHvdaOagrHnwdq2MVbhaseeQw,1117
38
38
  cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
39
  cirq/contrib/acquaintance/bipartite.py,sha256=JvWXCADkdHjsVOkdlAoPniffjFWz1noWO3KeQJ3QLkE,6525
40
- cirq/contrib/acquaintance/bipartite_test.py,sha256=y2hL8_MwdUAQ0meLaojAt6miJQP_vbUl814PHV1aUJQ,15647
40
+ cirq/contrib/acquaintance/bipartite_test.py,sha256=_Sx75GV9DEbyZB-zQ9mCj--SCr0aGVBFzo-YIwq1E6I,16064
41
41
  cirq/contrib/acquaintance/devices.py,sha256=rk04cWBdOcbV05MPzBaVCBCMDkzFaHs-fzZCCphPSgQ,3030
42
- cirq/contrib/acquaintance/devices_test.py,sha256=-katmWDHRG1MRL5V2HE3n5zKeHQeA-alLjfa0viJbEw,1087
42
+ cirq/contrib/acquaintance/devices_test.py,sha256=RnNwPp1PHNrcygibMdrJEMViBCm4eTXZgI0PUqAeoCM,1207
43
43
  cirq/contrib/acquaintance/executor.py,sha256=N96PewFMtjmNnV6e7OmZv_BG4_RXTOQKXfnvdVwk050,8679
44
- cirq/contrib/acquaintance/executor_test.py,sha256=gSH4gyKgYFfAdIJG7xhyyxvMNJnGscDTvokk0y7D658,7837
44
+ cirq/contrib/acquaintance/executor_test.py,sha256=VxmGijgjAjuy6s-H5L9Ynu4CxYXFr9rPc2FfuoQjdXs,7903
45
45
  cirq/contrib/acquaintance/gates.py,sha256=F-B4Rmn4jjjTWkVyKy8jQBkBerf4VDuATxutIrjdtOg,13576
46
46
  cirq/contrib/acquaintance/gates_test.py,sha256=m_QMKqElKXqDbtviwJcgwYf8E1ZM7jcFmb2iPbAIrGM,15010
47
47
  cirq/contrib/acquaintance/inspection_utils.py,sha256=n4IUZ9Kl64jU1HsDvs8A-u4wyfFAzrdSa7V7ATq2te0,2606
48
- cirq/contrib/acquaintance/inspection_utils_test.py,sha256=Mk47PrfEfGN0blerbp5oLcrggS9TXJj4UDClM_sVMj4,1250
48
+ cirq/contrib/acquaintance/inspection_utils_test.py,sha256=_ksOZ1fBkRsylRWKHWa2-sNgqJdlQK5mb5xZx57--dI,1426
49
49
  cirq/contrib/acquaintance/mutation_utils.py,sha256=I2qra9c1_yxt8rM_hZt7rKx__MlWoJZ-ydVomcqe5Aw,4730
50
50
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=r_0IdvjSqres1KWs4o4HEb8a5WATovIBOUIAjVeIzns,7848
51
51
  cirq/contrib/acquaintance/optimizers.py,sha256=YsIuyrXu99aFaSwEtmHdE1D8SRvKQUbCCZA9n2tGxec,2091
52
52
  cirq/contrib/acquaintance/optimizers_test.py,sha256=R_r_G7bBPBo_8qOjKgZsEBLMihZO6jlZ0yor-U25vBE,2455
53
53
  cirq/contrib/acquaintance/permutation.py,sha256=hZKa9E2MATubm-14mHGhlm5h19EzwFD22jMV8HHBOVU,11854
54
54
  cirq/contrib/acquaintance/permutation_test.py,sha256=6Q9s-qvEoLbDEmoPrtyXv_57uIDzggooJEcqY3mRzZg,11503
55
- cirq/contrib/acquaintance/shift.py,sha256=_n7fGYj2LHPo9L8Qxfos3v9eENPMJFvy-z4ah7RjRq8,3059
55
+ cirq/contrib/acquaintance/shift.py,sha256=KGQ5gjEFgUTyVdh9E_uQvHjEpAunySjkMEN2IkjnIV8,3079
56
56
  cirq/contrib/acquaintance/shift_swap_network.py,sha256=XQaF8akqi4F_zb1_dYmV3u_T9Yumnene36AtkqcEtQo,5283
57
57
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
58
58
  cirq/contrib/acquaintance/shift_test.py,sha256=FnY-D0i4CZsE0v1GLf30u_JyIYDtzV06O-Hd0tDnuXc,4555
@@ -73,9 +73,9 @@ cirq/contrib/circuitdag/circuit_dag.py,sha256=w5e3zImaCV9stX9GC9wPN0ricafloO0zqJ
73
73
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=Daj480Yk0eisOsQXvYITy2kyLSQJ7g5AHirZzNs_dYw,8222
74
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
75
  cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=xSQLAyAQSghi5nbrGbJqoBnDKC2twBidpf77F1PUuss,3198
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=ZKtvswStMBzJHtqSNMOQWuPHfD0C3WiGFTjTj3TUON4,7686
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=7wyFF6-d9SKnIbIQN2sfhX8NUCXxU0xh-485fSyqEfA,7788
77
77
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
- cirq/contrib/graph_device/graph_device.py,sha256=kJBMz8EYVPFgspvEn7C-TyQcvXmeHZwhnwQTKn6_ZwI,7970
78
+ cirq/contrib/graph_device/graph_device.py,sha256=kQ-P-xSkXTLJFmfS2IHE4dkTjKhBeWS0nvotZBPGnc0,7910
79
79
  cirq/contrib/graph_device/graph_device_test.py,sha256=2Z0jTprCZL4V5-gnOblOpz3p6IRsei1VCNxqLWoWnSo,7203
80
80
  cirq/contrib/graph_device/hypergraph.py,sha256=6hdKri90qqU6ujmR2y8nVyk2pr5wHvFhHAhLYbg5T7o,4716
81
81
  cirq/contrib/graph_device/hypergraph_test.py,sha256=ccwPqqHOWq-ZJ4abhyDrCjXQdrmY1Nb6lP9G_jdi6pw,3769
@@ -98,10 +98,10 @@ cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOW
98
98
  cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=4XQ2IoXx-2g5OUU1SMCLbEvDWoGyDg9FMy3_rTTqfBk,1124
99
99
  cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=6sX2EBxwtgZ0F3ANaJVvfO_GEedLBSzu_K8wQA2Zq7c,15674
100
100
  cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=r2maZa_9bhuolXWn2OaSe3DucOFchIMoZrX3gWs1_l8,21435
101
- cirq/contrib/paulistring/pauli_string_optimize.py,sha256=81MDk6rKl0jmw7DXFkA02YmluiXLLznuuCTvca7mVoY,2815
102
- cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=EbgbY6cohl5vi2XCz8VzYFYn9Rv85yA7atDKE68Dp4Y,2896
101
+ cirq/contrib/paulistring/pauli_string_optimize.py,sha256=KPFjsf_gzgvN7_hIcNslawcI2RGJKf5F0pDmYTHNAb8,2867
102
+ cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=2wSpV7EVwuuK8wI_Pp31V4vCIkq-CEmQz3EjaFWi8fM,2895
103
103
  cirq/contrib/paulistring/recombine.py,sha256=zm5AJL80Xl4hgTe9U1YUEgWfcHZys_YcWNpnv02DcL0,4355
104
- cirq/contrib/paulistring/recombine_test.py,sha256=uo6XyWCz5eIbpUvsCtAjRJ4cUq7Ij5-RlIt3SVgOEhw,1895
104
+ cirq/contrib/paulistring/recombine_test.py,sha256=ClvleI2hVVBOA7sbi3yTth-fErJQYYCw-6ebAvXt-Ns,1915
105
105
  cirq/contrib/paulistring/separate.py,sha256=clzMvgTUyEW1l-fghk3EYUsKZNOBicy1l2MiuZaoc7o,3960
106
106
  cirq/contrib/paulistring/separate_test.py,sha256=FzR78MSHDhNJxizbXreK6u3BeYhT7xn7W1QyHfEZ34E,1267
107
107
  cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
@@ -116,18 +116,19 @@ cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQ
116
116
  cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_q9V9GFeQ_n0I,2749
117
117
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
118
118
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
119
- cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=cLE5Ikypxpi5anx48FEyDJVh2kv4DbRU-7F0iaaTu4Q,2412
120
- cirq/contrib/qcircuit/qcircuit_test.py,sha256=TJI1mmIEhKkTQ-z1RBvLYU8oMu__x_eLP9aWAicJWjc,6021
119
+ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=VjE0vJOGtfR9gIFUNeOPBg9gJCCnLrgNpAg2v65_sVM,2603
120
+ cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=ICKNgx-sxj9TQxuixhYX6n7MJ4a0YI1D_CqyHOMkvH0,873
121
+ cirq/contrib/qcircuit/qcircuit_test.py,sha256=g6lbhtkq85hKAwp1-dcU73LpAt0_RcmPKMApxd6X_6E,6041
121
122
  cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
122
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=DLSvxQ9YtLqtqJfib-qnRVEORcaprXoqxVKFVO0bsyU,19597
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=_1jH4TCTBiHzQU04DH7sWqR4ojiIwsRACS6rJIiDG48,19397
123
124
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=hVwInjcdS9jKPKeDoQ8EnxjwESC_QLvgEOaykwk27rI,12400
124
125
  cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
125
126
  cirq/contrib/quimb/density_matrix.py,sha256=Q1MOZYFsymYwx5QIi89ydzctO3mj2Hb5fpHujubykHA,8637
126
127
  cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
127
128
  cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
128
129
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
129
- cirq/contrib/quimb/mps_simulator.py,sha256=wz7Et54hzoShXtxrXrJ2T2Im5c_hvz7N-SCaAQ3G7qk,24705
130
- cirq/contrib/quimb/mps_simulator_test.py,sha256=6sjC95Ba4WCFoI6zlJmZCYi8GFwI58wkpXQdAoF2Sms,17007
130
+ cirq/contrib/quimb/mps_simulator.py,sha256=70DpXBhQJMZxMqn7nTcFBgdto_-4G1ivntRP_QBq7ug,24745
131
+ cirq/contrib/quimb/mps_simulator_test.py,sha256=sg1l7mtJh3HrUQkS3cRv5M0LAQG2RUR0Tr2osjjXG0k,17142
131
132
  cirq/contrib/quimb/state_vector.py,sha256=wc4-d6ZH-Mjqhb6vfftaV-YDoMJqJPNqQcNjfGcQTAw,6686
132
133
  cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
133
134
  cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
@@ -139,7 +140,7 @@ cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GT
139
140
  cirq/contrib/routing/device.py,sha256=bj0AdDB9xnXqzrsSy2C3puVOza0bU-GhImoEr1IBZDw,2889
140
141
  cirq/contrib/routing/device_test.py,sha256=fGGN9agUEEusrzCaodsmCWMJE7LBF4Vc9JQ9KL_7b9A,1926
141
142
  cirq/contrib/routing/greedy.py,sha256=M6ywWixJAna1Ce4PMxhqf5zDk5PBWEEVkfoN7gvsMl8,13899
142
- cirq/contrib/routing/greedy_test.py,sha256=Q9DMsGPJZdgv7KtVkk4PQrUa1_9R7sTZIFLN1EqWtkI,2204
143
+ cirq/contrib/routing/greedy_test.py,sha256=e658tKz2SSqIUah6r9EMup2yxaaLBz0dz6xRryV_jDE,2238
143
144
  cirq/contrib/routing/initialization.py,sha256=nlEPDO11a6OVbqrSyHjRb2HGbo-ATE93au-eXjC1F_4,3699
144
145
  cirq/contrib/routing/initialization_test.py,sha256=_-nePdUmoE3IdW240GEMBCm0P8rlOWF_ENXb196LlQo,2473
145
146
  cirq/contrib/routing/router.py,sha256=KK4b8eZGxz3OrJVOaj9DnGONLXNGrOv1SBgMWcaa7tQ,2529
@@ -152,8 +153,8 @@ cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTH
152
153
  cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=d7tW83RW5RW3s5NUTXSPlw1-KAk7mll3wrkJkuJXlcI,10844
153
154
  cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=TaO33Z5IYLQcFxpaYXbCiTjQdtgeBwL5qhT2TjbHpDA,13847
154
155
  cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
155
- cirq/contrib/svg/svg.py,sha256=HB3yndrATnYU-osoDL7FvypKXrFnCQ_oWxRc299zhjo,9365
156
- cirq/contrib/svg/svg_test.py,sha256=gBHXeosNRHzrKWVo-JwhZLguHbksKQSiFwZ8fUXp-a8,2379
156
+ cirq/contrib/svg/svg.py,sha256=7SkOG1C8vxX2a4bke9aLe27c5QcnrcnSZC1wBopjGos,9385
157
+ cirq/contrib/svg/svg_test.py,sha256=VUuaQGu0ZxnWXgbh7BgZYQK4zyaxdPfBrX9ifJ7quUc,2430
157
158
  cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
158
159
  cirq/devices/device.py,sha256=9WCe_d-ahPWVk4sSijhUiQGmAK1sCQQ73jOeIN6LOyU,5363
159
160
  cirq/devices/device_test.py,sha256=9MDFBoTA2AwjhR65Dzmibohecah82yEM7d6w_ujWiSc,1125
@@ -178,7 +179,7 @@ cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=znS1R4chjxZe
178
179
  cirq/devices/thermal_noise_model.py,sha256=3vD8OGIZMjs0t-De0DwYHIqCxSEcAXppDejVCIHZKsw,11609
179
180
  cirq/devices/thermal_noise_model_test.py,sha256=ox9b0BoHH6d73CjWWI1fIAGd_o3r-4qy8v2ggUwc-pw,12246
180
181
  cirq/devices/unconstrained_device.py,sha256=dtpB_n0RpjyoUzcSkfT5dUuY9O2U1c-YM3m6V-jL9xc,1525
181
- cirq/devices/unconstrained_device_test.py,sha256=OF9E2m1HPpq6hyrNAwFGWaNOpQ3H2efAEj6V8Y-hRW4,832
182
+ cirq/devices/unconstrained_device_test.py,sha256=PZ2FeLbRYh38stk3AA03j3k_a6VaGdtHh3D2jrnjAIc,1047
182
183
  cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
183
184
  cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
184
185
  cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
@@ -186,11 +187,11 @@ cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYF
186
187
  cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
187
188
  cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
188
189
  cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
189
- cirq/experiments/qubit_characterizations.py,sha256=KC0hAHYSflSsKFCNtKw3ofJcqis9xsj1MELDVatoWEA,36731
190
+ cirq/experiments/qubit_characterizations.py,sha256=QBEUJGWVZxFzh28oZetAFpMagjhyhJk8qVjScwktZ7E,36785
190
191
  cirq/experiments/qubit_characterizations_test.py,sha256=km4-D-JrsxhjCjbpf7DTgHnGSNS3Iadtqt0b5hfTQqI,9716
191
- cirq/experiments/random_quantum_circuit_generation.py,sha256=c04WmY36y8VEZKL995ZhTy1mEeR3rKh2itVQ0ZjFv8U,28255
192
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=7O2aQ8cPMrEsdu1yHQW0GWittRX_Q2y1f7H7m1G384g,28228
192
193
  cirq/experiments/random_quantum_circuit_generation_test.py,sha256=7Hs4bSxvOZOgiuAMKgLvTRVhu-kNykjlGLqFwoEbdaQ,16522
193
- cirq/experiments/readout_confusion_matrix.py,sha256=RQ1d-iJXqRhKYIXU6NCPid8IAlhX8wZVx9aQ_WW8RYQ,20807
194
+ cirq/experiments/readout_confusion_matrix.py,sha256=O7fLHGAZQ3UG8AhBBcQPeK2NO8jNE_70W8JF2PII0PI,20727
194
195
  cirq/experiments/readout_confusion_matrix_test.py,sha256=fIL-r9vi6QEp0Bt5Fv9BlJlPh-aWPSj58_enzNLafpE,10632
195
196
  cirq/experiments/single_qubit_readout_calibration.py,sha256=WJ6wM7hS5xEi71Nm4r-bwOYQwf3P8N0-wmax5EltVo4,14723
196
197
  cirq/experiments/single_qubit_readout_calibration_test.py,sha256=ivc7IDyxmrZXCYNWSOgJXJ4ZdYFbatmlFUf_u2Rh_uo,7718
@@ -249,14 +250,14 @@ cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=5bl-maazy7Dr8u6kwK1AhG
249
250
  cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
250
251
  cirq/linalg/__init__.py,sha256=9WLnBqLQ02FzCIUcchHBMYpOGVcENAjzv7GyDNgh89I,4013
251
252
  cirq/linalg/combinators.py,sha256=0tts29gbwQg9lpZvCSX8QKMIMf38NGGdBJqI911m7jA,5336
252
- cirq/linalg/combinators_test.py,sha256=45li4cqyuhVSYer5HbVJbxUmppe2RYvspIH0sj1p_sg,4699
253
+ cirq/linalg/combinators_test.py,sha256=eRy1FrGujE8UC3pP1X5MfWmKlpjimHTxdiixr-G4nJM,4829
253
254
  cirq/linalg/decompositions.py,sha256=9dOJSJuYG8_dk3zdBO5rXDONKkw7SKZd5ZpWK4FnypQ,38652
254
- cirq/linalg/decompositions_test.py,sha256=djww45_ZGCwmUoWahCB5lxyZcJDntJRu77RXeBS5rR4,25647
255
+ cirq/linalg/decompositions_test.py,sha256=cPTOr6Cmyx9oVQStIwxN8TA9jAJzgh6QGdbCmGc-rBM,25438
255
256
  cirq/linalg/diagonalize.py,sha256=Y3fFcyEWKH5CGbGY8KeQPGBgdDgvETF3WUCkVNIVfNw,10051
256
257
  cirq/linalg/diagonalize_test.py,sha256=Jn6Gc1R_1MaL6vUUqjIx_6WvMDTIj7l8OxUNJgWKmsc,9089
257
258
  cirq/linalg/operator_spaces.py,sha256=-i5DEAW-b_sgmfZKXFf37XzX5h7cZ7R6EeW7RcFNeE0,4128
258
259
  cirq/linalg/operator_spaces_test.py,sha256=Hbm8e4kGbGw9c4O3v5o0kYbcikwDkdIoAy3V8EofJr4,10605
259
- cirq/linalg/predicates.py,sha256=5629wZyDuXXcdEnplhNNEVy3DzrkoAtW3mdLPFrXK7Y,12056
260
+ cirq/linalg/predicates.py,sha256=vLTRaAYqVf0mk6Qgm53ROhLDtXxxoEhHbYxQN74aGRk,12076
260
261
  cirq/linalg/predicates_test.py,sha256=syNiyS-clEGeZnbKT7zyR8_ClDnXFYtDnLKozLbitzw,21504
261
262
  cirq/linalg/tolerance.py,sha256=a68RNOmCw0ybFwhXOq6DERK5gHAOlPJIRdPuMzV6xuU,1870
262
263
  cirq/linalg/tolerance_test.py,sha256=wnmuXIGEn_mugGoNm3AigSgjV2DMFdj8xpgRTMBbO7A,2355
@@ -273,44 +274,44 @@ cirq/ops/boolean_hamiltonian.py,sha256=li003lNq6zS8pNPTobqzfzYJvyvaIpCVo3wkliI6H
273
274
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
274
275
  cirq/ops/classically_controlled_operation.py,sha256=ePhBPrHymodrsztJFk_g2IGI3QSbFnpQ54d-6AH9CN4,10374
275
276
  cirq/ops/classically_controlled_operation_test.py,sha256=nIYyXfNH4E2IibZSLk6QDVHpfJQbuI_iWwirCH8rhi8,50209
276
- cirq/ops/clifford_gate.py,sha256=xEqlp5tIDBTxqIu-BXzwchtlU9LkuibSjrAIB20J2B4,39899
277
+ cirq/ops/clifford_gate.py,sha256=5mE97WQG6kW9ntRcn20hoFip71TFofnNKMx01RHETO4,39488
277
278
  cirq/ops/clifford_gate_test.py,sha256=dqghYb7_afYxCLceBarX56Tn9y_dSWCKF75W-Qrzvcw,40341
278
279
  cirq/ops/common_channels.py,sha256=LfIjy4WBRF_K81kc12Y4nLjdVZnJUhIKHL7sxiNNINU,37259
279
280
  cirq/ops/common_channels_test.py,sha256=nQsSSxu7vtedb3ZUuw4hNKIX7MYI4x8lxvLyWMZNt10,30079
280
281
  cirq/ops/common_gate_families.py,sha256=2E31Qr_Yv1zI-r_MNWmr1xJYrEHHU45274iDrt_oKPE,8611
281
282
  cirq/ops/common_gate_families_test.py,sha256=bEF6Q6GtEOTc9kHM5WC1UIULPGnMPXdtm8gzLT_aNBI,5276
282
- cirq/ops/common_gates.py,sha256=NbdN7UmlE8-4rMeviHMRB6CfwT3Bm8BDFeaZR26TgNk,58170
283
- cirq/ops/common_gates_test.py,sha256=tNymwCOXCgVe6JnrHSq7kwzCO-ucQZYHdBF9cvdZRMo,46731
284
- cirq/ops/control_values.py,sha256=oDGOBTr8MCIdFdi8GxQ78OMloJJ1L_XFFN-185vusAk,13410
283
+ cirq/ops/common_gates.py,sha256=nTW9PAOdkbDei01ZUx6N-D2V1zslRJnk8WS_-NJSdlg,58330
284
+ cirq/ops/common_gates_test.py,sha256=6y6uPS29Lnby3YesV4YG8fmI1FWqj7BfPQEGbvJl928,46882
285
+ cirq/ops/control_values.py,sha256=Loi_voLNOzPJpjD6AnQz8JrqJLOAUe0jvV3XB_0tTGE,13430
285
286
  cirq/ops/control_values_test.py,sha256=K8tbKM6b6PqMEL_lHLFzdrnWF1SkLN0Scft6YMT7FlE,12907
286
- cirq/ops/controlled_gate.py,sha256=OUF-pTJbabYiRriPhj5JoLKFRQUPLPqhsh-nWmGafqk,15511
287
+ cirq/ops/controlled_gate.py,sha256=Is4s8-yRZye3gkhg-dlte5zfdAiXYtioC0oP-BXQ37g,15531
287
288
  cirq/ops/controlled_gate_test.py,sha256=6Z_HaIbXXKOJOhwb2l_Dmtfx9tcggl_vYf8pkB_UDms,25205
288
- cirq/ops/controlled_operation.py,sha256=pgDUCc4Rwocu9ujrXSHXUcpr7DtIgEHKb1-4DzTaygQ,14057
289
- cirq/ops/controlled_operation_test.py,sha256=iRRkzxMmsChYiWYMuz5-q3xq2mWV1wJY8Y8QQ1ieP5c,16443
290
- cirq/ops/dense_pauli_string.py,sha256=BhLVNLjq18680Xgw_WcFA7L6_5Aej5lRZLNULEDAyBc,24457
289
+ cirq/ops/controlled_operation.py,sha256=kfZUj5XISlHJGvm2mzn7-UzNmIFimLMNvn9QhD68Lro,14077
290
+ cirq/ops/controlled_operation_test.py,sha256=kHdHGR6Q6ROgUJqG4DSKOvyrLJhi-u4uMh-rM3QRJ8o,16525
291
+ cirq/ops/dense_pauli_string.py,sha256=nQs4lfm9zSGPGE9p9KAJbEhkldpg9krqTwvIkLePs90,24477
291
292
  cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
292
293
  cirq/ops/diagonal_gate.py,sha256=NpCGuZpdqMGoM6ya8Q8Jp7UTut2WglMB7DK5oqBRXiE,9021
293
294
  cirq/ops/diagonal_gate_test.py,sha256=wsPZWhImVGNrEg1mYnXsO4nJ6VziDBfvEilAFtJJ8b4,6224
294
- cirq/ops/eigen_gate.py,sha256=Xq7kkaZkn8-WD6oaK27GRgfJ5ZbyjyrBgTYq4e2bqaQ,18323
295
+ cirq/ops/eigen_gate.py,sha256=ci_5rhFZxiSIKa7e1-jTPrVX3AsIFsEF7lkGbww57eE,18343
295
296
  cirq/ops/eigen_gate_test.py,sha256=vWYAMKN9EwDRxXelkOXu0-c3TGz2l6A2atf-zqr7hfA,13928
296
- cirq/ops/fourier_transform.py,sha256=tAApBWbuKIXhpW_rZc-fTZHJg32XMaGzH5Z94Z885yk,7579
297
+ cirq/ops/fourier_transform.py,sha256=_YWqBq7zqRv7rH5oQPPg7zdUSiTp2px8kaaWZZmakZA,7513
297
298
  cirq/ops/fourier_transform_test.py,sha256=mtWhiC_Tg60uNh7mhhMb02cckGfNC_Tjte-Q4gRcF8c,6226
298
299
  cirq/ops/fsim_gate.py,sha256=Avzlcb_O201K0_tBmNR5m9fWkpBM7Nby0MfJjNJ9g_8,20136
299
300
  cirq/ops/fsim_gate_test.py,sha256=4kFk0ALzTmaskQURHPl6JerNvw8gbZn49nt1_WAjpdY,25671
300
301
  cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
301
302
  cirq/ops/gate_features_test.py,sha256=mnlqJnSpllcOnTUdvmUs_ssnPRhAIgHhKIAK2Z86Dfg,2347
302
- cirq/ops/gate_operation.py,sha256=1EQXqo4xybDMa68PDW23Qx71dpKHlwW5sbOQ0zVbfCY,13708
303
- cirq/ops/gate_operation_test.py,sha256=IsZ6XsrB3KbO6GWSpenBu3fsdAdlWDvuBMTq20Vqpms,17482
303
+ cirq/ops/gate_operation.py,sha256=0o-lkWQSwtdFTorMHYXL_7VxEvaQmUI6RPpl0j5gvxQ,13728
304
+ cirq/ops/gate_operation_test.py,sha256=24RJmqG65_Z2ZeO1jnVT_VCKwfHcxP25Zfh3_JmjWpk,17517
304
305
  cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
305
- cirq/ops/gateset_test.py,sha256=1uBhmu2KBN-y010d6gtA6USiTwHB3CbkooCwvtH5-5k,16363
306
+ cirq/ops/gateset_test.py,sha256=XqEgjuUga5gGUjHRBIbA6Pe7JCgCX-UBxrnXALMvrxM,16557
306
307
  cirq/ops/global_phase_op.py,sha256=3WLv4ul5Ifhgra4I6uf1yj-zKoMkh829NVemhzyEC74,4885
307
308
  cirq/ops/global_phase_op_test.py,sha256=C-YMN5ja9IKKgmwC5w2sPDBpFr8p0pJrE5WFikCVZOg,9833
308
309
  cirq/ops/greedy_qubit_manager.py,sha256=O9qY8GB1KGxm3B7JEjq50sGVD51bNwTSupJpi3WUeAc,4039
309
- cirq/ops/greedy_qubit_manager_test.py,sha256=iVZDKes-r08raTiJHpYNmP-Dp89ok3hIU-QboL2BHdw,3300
310
+ cirq/ops/greedy_qubit_manager_test.py,sha256=aixmKja9mp0WvLQE92aFpQLVEwJilsKV-5YWDO2a4_s,3404
310
311
  cirq/ops/identity.py,sha256=InfS8sxU0pJT0W1Gvp-QwC1-1TGATqKWQV9OZEaFVb8,5892
311
312
  cirq/ops/identity_test.py,sha256=OIrm8v4wBVq8bbAGZ-f5TERt8Hl6aD1bL8iHCOEhzNo,7939
312
313
  cirq/ops/kraus_channel.py,sha256=qX828mvPSFgEaG0I3Jhj04y5rD7dUjeEl2HYDn7_7j4,5086
313
- cirq/ops/kraus_channel_test.py,sha256=e7tpMzEorAAr7dIWHsIzlYzaQAgXlhOhE8zz3FfM_R0,4727
314
+ cirq/ops/kraus_channel_test.py,sha256=-E6ExIO3P0y2T74Gx-RMu0kLpy1RWP9wH6UGDI21oFU,4820
314
315
  cirq/ops/linear_combinations.py,sha256=PE1o_mvpdnlg3o95iSn5ID18kuxwS2q3DGDuFnlNC90,39916
315
316
  cirq/ops/linear_combinations_test.py,sha256=ip-wN8T8nUQviD3ql42eet7k_MQ6DVUfIK8aX-_ygOs,67217
316
317
  cirq/ops/matrix_gates.py,sha256=q-lyxDVg5K-eokmZWPN1woUmJkR90IpbNhnFqQgjw4Q,9297
@@ -320,11 +321,11 @@ cirq/ops/measure_util_test.py,sha256=Yzlced4nb4DHO-0cM_a-QZGO_3R8oqExkpIALN_pG4A
320
321
  cirq/ops/measurement_gate.py,sha256=yc9ccbzpy-si5TKF72Vmrqzqgsxg_60RXCWHOj1d9w8,11993
321
322
  cirq/ops/measurement_gate_test.py,sha256=1DenBunnVVqx8uWxhdi4rCMQHxmQ3X7hqPdsB27FUHA,18299
322
323
  cirq/ops/mixed_unitary_channel.py,sha256=IqkZOBTf7wSUJaYIznPZnB50Se8YZPBws_aN1EYBZR8,5260
323
- cirq/ops/mixed_unitary_channel_test.py,sha256=uYDaTGlK7h9nvUeXjxglGm6gWxFKXJehe1qEG8_P-RQ,5059
324
+ cirq/ops/mixed_unitary_channel_test.py,sha256=bP3fUC7dtIFOZaJd04Ovz-lChzLsXF1Jsq8tFlQNpfE,5152
324
325
  cirq/ops/named_qubit.py,sha256=WzGsxgkjRI8rS692zpIrKS3rWBF0wvX76GjsSnF-g7k,10005
325
326
  cirq/ops/named_qubit_test.py,sha256=mtJVRe4JzFSNckMQJSGCj1P0VBtpGh--6YxKbIEE3TQ,5221
326
327
  cirq/ops/op_tree.py,sha256=wnOa8fhAWHHVIJCTRhX37IM6BPqQ2QA_0XaBW3Y0syY,5276
327
- cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
328
+ cirq/ops/op_tree_test.py,sha256=FzDaDjooimUEYvCvXrTCXbR2Je8QjRTZ0VXoeI7AGyo,5700
328
329
  cirq/ops/parallel_gate.py,sha256=lkwaatEWd0roRbRKq_fkBz7nmZoMB4hdwFT6LUNxmJ4,6318
329
330
  cirq/ops/parallel_gate_test.py,sha256=lWCLnlEhs_LDNgewp7e3uN-23Q513i4G0JMva96_GiE,6299
330
331
  cirq/ops/parity_gates.py,sha256=WjuWb69Deym_g22ZJIurrMGY0AWdLQjxNkOFnnrbzAg,14383
@@ -334,20 +335,20 @@ cirq/ops/pauli_gates_test.py,sha256=3AX2hzr-xeXrZUeSr-yBFYhbLeHK1qEh7_Bq9vGUAgo,
334
335
  cirq/ops/pauli_interaction_gate.py,sha256=MmFg4U_y0uomIwb03FaDPGiGzBCVRk7Kuo_eNXpLdXQ,5519
335
336
  cirq/ops/pauli_interaction_gate_test.py,sha256=adnIIgCvFzO-inNaN77HER-WJ0hg6L63_HfiT60oV3M,4543
336
337
  cirq/ops/pauli_measurement_gate.py,sha256=ODHQJgy7oEuDb7qOJ2ja_i0w4jvbV202FaO4O_deo6Y,7239
337
- cirq/ops/pauli_measurement_gate_test.py,sha256=uh3J0Ps3V3578V8qkRiEgIl6jBiv8DsXlk_vzLvOEhQ,6720
338
- cirq/ops/pauli_string.py,sha256=XGbRrvWdLf-ohkFS6xzwBulHBd2sfsV1sm2VdP-TL0M,69675
338
+ cirq/ops/pauli_measurement_gate_test.py,sha256=acKmYvwSQniIX2FtOCVrIPRPmyUBeV4uNUFmyShJixE,6778
339
+ cirq/ops/pauli_string.py,sha256=09vO175cvhA1H_c_X4Hb9uSSIjWx3mKRx_XV8wGG_SI,66968
339
340
  cirq/ops/pauli_string_phasor.py,sha256=-86hl5D6TIgV5WaQLd1X0sARnNebFTXDpSTlS7T0Czg,17518
340
341
  cirq/ops/pauli_string_phasor_test.py,sha256=PT2PmSeXG8JS45gyUrVpXdTifwpNTCmU0ASUZ9WDk1Q,27865
341
342
  cirq/ops/pauli_string_raw_types.py,sha256=IdJgzqF66hGkuJckAxxnyRLc-jMLFTPjnpePzhNdlRw,2241
342
343
  cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BEX6dQuawRQE,2648
343
- cirq/ops/pauli_string_test.py,sha256=JlS0nxddL0L3uv6-kjT7RgSaiN2ME0j-XcLulQL0JTg,77371
344
+ cirq/ops/pauli_string_test.py,sha256=OcOUSiR-ja1yfEr3GY8Mx3yogmDwr6_yCuXOU2XF3W4,78869
344
345
  cirq/ops/pauli_sum_exponential.py,sha256=6sKJ0ky2pcxoSXaRtYnlIdB6A3oMYHX7nqBx1i_GEkM,4876
345
346
  cirq/ops/pauli_sum_exponential_test.py,sha256=Vi2-0zDUCS4XtFn9dfmkgh9dH2ncuKYOiQLCZPoLMkg,5369
346
347
  cirq/ops/permutation_gate.py,sha256=2h8n76N2M3nu5MA8JkRQgVLByq5cOEluKUN042ClSRs,4196
347
348
  cirq/ops/permutation_gate_test.py,sha256=qroZ88JYhSU6rxuQsJ2pS2XqPFJ1BGvXYVy3cnpUc9k,3281
348
349
  cirq/ops/phased_iswap_gate.py,sha256=Q-1PuSc4F3gsZL9UUN8EgrO31Ix6mA-7HoUIndvePbk,8990
349
350
  cirq/ops/phased_iswap_gate_test.py,sha256=tB1MqH8Y0Kgr0QIxs1kq1yl2g0mKYI7Q_AaadBhFe2U,7360
350
- cirq/ops/phased_x_gate.py,sha256=7qMHCcDcd-VQt5Ou_guFHrvNSdlvQPLdCF2xO3T8AyE,9960
351
+ cirq/ops/phased_x_gate.py,sha256=jSXLaDpAB3JqHsy-xuMQN3WEgFsPyyL8043oiQCujCw,9980
351
352
  cirq/ops/phased_x_gate_test.py,sha256=IpY-Z-MsqtYbyIEdxWu1NqgAJF2B7nddxPc2Hxafr4s,10202
352
353
  cirq/ops/phased_x_z_gate.py,sha256=E96p1za5rN3Q2jwOfV1HWnkvb9mcxdV9ZaV8FzcpJHE,11518
353
354
  cirq/ops/phased_x_z_gate_test.py,sha256=KK5-FD5zoaqZkw7p6UKxFddzaFWoxnQnE8LpCiKtIk8,10690
@@ -361,9 +362,9 @@ cirq/ops/qubit_order.py,sha256=2jCQE6bebhwkTphxJvPfAvGp16Dyees-erbPrBc4ibw,5616
361
362
  cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
362
363
  cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
363
364
  cirq/ops/random_gate_channel.py,sha256=Xe87IijowzE8UPtgKgmAiA2iwKwC0_poON5D5TfBVoE,5121
364
- cirq/ops/random_gate_channel_test.py,sha256=U3EAaAlCZkgFIYxqwcSkPsaVGrKA2PSeG_DK2ou--AE,8606
365
- cirq/ops/raw_types.py,sha256=tnm6KgsXZOvxmHQg1wgNWWRDnfkcfpbQ7YBo3LynmvM,43854
366
- cirq/ops/raw_types_test.py,sha256=sMUbeAPKsZ7k--ax5h7jVkuCZ5LX16ufCWUBitY_d14,33940
365
+ cirq/ops/random_gate_channel_test.py,sha256=6pJgavUZAw9WSxgcDPNwQk1Wzt4ffD-1dED2IcpKUcg,8398
366
+ cirq/ops/raw_types.py,sha256=IAPFbqoqTX9Y5DjZx9mhmo44nKRY868nyf_H5aB_ixE,43874
367
+ cirq/ops/raw_types_test.py,sha256=HkrTqWqKtReUgCBTPsljrdfZndNkpiizHYX0Sbyuf-0,34669
367
368
  cirq/ops/state_preparation_channel.py,sha256=0t_mowWYTFspRpRWJ2xvQtbl7iAQTF282TdP7nF4Kto,4778
368
369
  cirq/ops/state_preparation_channel_test.py,sha256=tSjrd5cCkd0nEV26WzJN-IVVHtm7HjfHGImYcvhYec8,5923
369
370
  cirq/ops/swap_gates.py,sha256=OO6oPeXUiCgp_I_6-X6po4Ql_i7hm0kCmNs3_S6mwpg,11792
@@ -396,22 +397,22 @@ cirq/protocols/commutes_protocol_test.py,sha256=h0Lky4jrs7Hxrh4MeHxmxNciuofKGGZ2
396
397
  cirq/protocols/control_key_protocol.py,sha256=sq4CswLr5TDHPmviNMF1shlL14D6XXlPxt3P985Esy0,2614
397
398
  cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZOOWGOXp0RIFgqc,970
398
399
  cirq/protocols/decompose_protocol.py,sha256=YkpkZrvcXQ0fk1Nf7fT0Rfnee1SDzk0-d6dVE_ODCPY,18874
399
- cirq/protocols/decompose_protocol_test.py,sha256=x6Nok7yqWL2CN9uqBRBiM2Qfkp3nDdWWVBXcY6XD5vE,16026
400
+ cirq/protocols/decompose_protocol_test.py,sha256=C3iON4sHaU9laztTV4HDbHnaSMwvpMYMG-ikKSnPf_A,16046
400
401
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=7uF0v5c8pzmj9j7SbgG-dJ9nd4zddKMRf8tPx-Zr8Ys,4070
401
402
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=4lTuxGY4-JfoK9vr_2OUHxr5IAnVeveq3OAZFkLi_eM,5965
402
403
  cirq/protocols/has_stabilizer_effect_protocol.py,sha256=JyJFMS_OdSr9kCS7INgfHrqjym9vSjOdTg6lK17KkK4,4295
403
404
  cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=0ia7ehyGpmscjRP448dBANZKwnlbqSODdPUYRUhDEN0,3879
404
405
  cirq/protocols/has_unitary_protocol.py,sha256=sOP_qz-9JKZ_yg9QDpF0uw0qGfV8dTS_UpPtEpk512I,5372
405
- cirq/protocols/has_unitary_protocol_test.py,sha256=IjmJ3dqvteFUUO4FLwCTokgUvYy8H2HJjLmTDzt2__Q,5610
406
+ cirq/protocols/has_unitary_protocol_test.py,sha256=4KmFfE3ciJtHBwnYwXcu0uTzQyfeVz-YI3EyAxM9ZP4,5761
406
407
  cirq/protocols/hash_from_pickle_test.py,sha256=YvDlLEQKZLhTaVhtHXGB4MntUhxN1Za9rQqf7ZfAfdw,4634
407
408
  cirq/protocols/inverse_protocol.py,sha256=aicyqdJVDbd-ZO-wKHA8S_5CcPl3HDhRklSSdosRdy0,4115
408
409
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
409
410
  cirq/protocols/json_serialization.py,sha256=VJCEXB9fkIZh3_d6dkh_QDxwjC3iJAlELGHsCmAMvE4,24779
410
- cirq/protocols/json_serialization_test.py,sha256=AU2Rdr4gpjkSK0g5LasGf0n22RrdA0MK9ruKPeUmOUo,27976
411
- cirq/protocols/kraus_protocol.py,sha256=9DROCafRytKDE2VNFtPBV9AGmaX7Ju4h-jPTXy8LDSk,9139
411
+ cirq/protocols/json_serialization_test.py,sha256=qrh6XTy6k-FCVAd3QvSV_ENHVf9UUgHOt_pzsniI6UM,28144
412
+ cirq/protocols/kraus_protocol.py,sha256=Icazcmk9J1GSC0FL_dYLkrnpE_FH7G7xtawYuYbx3_g,9179
412
413
  cirq/protocols/kraus_protocol_test.py,sha256=NYVayiCaEpfvelsoR7bP57lUKn2pjFKYOiVOFHeZn9Q,5400
413
414
  cirq/protocols/measurement_key_protocol.py,sha256=vqoxjmthtmQ1nWbi7Xd4fdxFNe5y3WL7DZkQ3M_VPnc,13409
414
- cirq/protocols/measurement_key_protocol_test.py,sha256=M00RM-ujC2btd5UxN3BK92AGhZivDP1lRpxewj-G8VI,8514
415
+ cirq/protocols/measurement_key_protocol_test.py,sha256=W7yWKFVo6fMr7JjTECe8bMh1-NMDOpGMh3S-vmNl_3s,8654
415
416
  cirq/protocols/mixture_protocol.py,sha256=Hva80ZD09ZEfGa_jCGVNYygk_yyI02zzOEDykHejxPo,6301
416
417
  cirq/protocols/mixture_protocol_test.py,sha256=N09cs9WoXj3CBvs1p95yDpLK-h6WTManz3-xvHcFGO4,3615
417
418
  cirq/protocols/mul_protocol.py,sha256=ZhkowiHCulggWanjoz6HpMGf0ODqDNIjM32knFKPuJ0,2770
@@ -431,7 +432,7 @@ cirq/protocols/resolve_parameters_test.py,sha256=LrgTQRxeL8VSBqs_YOM3JxikIBg-bZw
431
432
  cirq/protocols/trace_distance_bound.py,sha256=vfZ1ecyjpOg-zg780uLy9vL8cBD_Vy4xY5TRP-CAPNM,4172
432
433
  cirq/protocols/trace_distance_bound_test.py,sha256=FHec7-ngnDjdEf9APIMqU76XCcGO7bCjHkinjA0k5us,1936
433
434
  cirq/protocols/unitary_protocol.py,sha256=ZH7sVFIKSqWQD4GrsM3BLlswWPiErXCl8aWSO1taow8,8152
434
- cirq/protocols/unitary_protocol_test.py,sha256=sby0_pto_WqznJd9xAXG-VtBNz_Sn3IQjEM4pUBtzjM,10189
435
+ cirq/protocols/unitary_protocol_test.py,sha256=PTvhsLPsRpfto5pkiaMSPcrxMkM9_53M81U6Ev7pwjU,10209
435
436
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
436
437
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
437
438
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -897,51 +898,51 @@ cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdD
897
898
  cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
898
899
  cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
899
900
  cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
900
- cirq/qis/channels_test.py,sha256=iqkSyfvx_c2ZpJKAVEsFyZRmKpzNrJsyFjHbaJUMqcQ,14454
901
+ cirq/qis/channels_test.py,sha256=x5pM-H790sck8uzon0dp4zHwLGxvZNZuJNGzjxw1rcE,14092
901
902
  cirq/qis/clifford_tableau.py,sha256=fD5JCdQgJ5801Oohm3rl0bi83E0XarfuF_iJXTiH1oA,26232
902
903
  cirq/qis/clifford_tableau_test.py,sha256=sHmHC3APFc5tpAkSSpVsywVgvAnkg5cYcj8KQjifcBI,18440
903
904
  cirq/qis/entropy.py,sha256=KFMp9oH_4_q7emYiD5wIVRZFpgamyBXrA61_Ul7XGCU,3954
904
905
  cirq/qis/entropy_test.py,sha256=FEx-cK8LMfj7iDwX3u-60U_Kg38l00K3uJfkLTQbuKM,1673
905
- cirq/qis/measures.py,sha256=vg5g-hO5lNCphtEG7LkeaPveNYff_KFyxnVFNOi-Kuw,12194
906
- cirq/qis/measures_test.py,sha256=3LTTGdvuFfZWmFyWFeUHpg1yGc9z0VE8j7Kd7J7y8i4,10092
906
+ cirq/qis/measures.py,sha256=JvqbqMAlPeKlRNH2jPEpHHWlSPN7Id3axsSeFw7z5ik,12257
907
+ cirq/qis/measures_test.py,sha256=avHuP1sbU_uOnaJDMQFoQULPO7Q9npOUGZgZmXigHJY,10268
907
908
  cirq/qis/noise_utils.py,sha256=wakkdQdBzOUWCf71sCxMCWwfPPAnJi5bNYsXDzGzkx0,3680
908
909
  cirq/qis/noise_utils_test.py,sha256=EX392K8scTM7gpSyfTk6KxH5OHA2zfzRQ-Hb2KiT1mU,3391
909
910
  cirq/qis/quantum_state_representation.py,sha256=dDWjauyL5WIGuPJ0eCU-LSIh5eG3nTtg0tXdjbcvxbM,3238
910
- cirq/qis/states.py,sha256=Lk1RXpvzm_b9luFFbxXr36zA6y-cWma6GXM_6BGkc1s,41888
911
+ cirq/qis/states.py,sha256=m_pkBFBX6FjuZkJf7e64PemCAlpnzC2IUvoxu-aKilQ,41908
911
912
  cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
912
913
  cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
913
914
  cirq/sim/classical_simulator.py,sha256=zrkFEiCuRo1lbO4sx6WVi_BQb120Dm18t8iRjrCGWPg,9335
914
915
  cirq/sim/classical_simulator_test.py,sha256=FzQlf2hsyOjn0KL3QGpzXFPzJ_n73G5RoeuDxSV0-6E,12703
915
916
  cirq/sim/density_matrix_simulation_state.py,sha256=XRxKsKq13OlXR7429WBbKps_jmOoCBRa6U9PzYrYrTc,14065
916
917
  cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
917
- cirq/sim/density_matrix_simulator.py,sha256=UHIImpJzYb8WRb1PPeMdAeGO6o3ioF8-QzIczyjP_JM,17462
918
- cirq/sim/density_matrix_simulator_test.py,sha256=Wnj0gWABa-EJ6zP5z9G4fyTN7641Q5OrAo2u1FkY1QQ,61122
918
+ cirq/sim/density_matrix_simulator.py,sha256=tBXKxxt_RyUXfZPqgIY8BcwOR8oguM9RfywjxAl7gfE,17564
919
+ cirq/sim/density_matrix_simulator_test.py,sha256=6m9V7ujqy-PML8fAi-42y6OI2sdeWl4TpLSypOHpJPE,61348
919
920
  cirq/sim/density_matrix_utils.py,sha256=miwBOle6XjA3VdfF_wdAj1xeSGT5QPwYpjrZ_q5b2x8,10273
920
921
  cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
921
922
  cirq/sim/mux.py,sha256=lZdA2wczdnK40GBTVtCMu89-6Ow6j6LvPRxG2pPWIE0,12509
922
923
  cirq/sim/mux_test.py,sha256=uJUUnE9qg10rF0pGWo_bAWhp8JzsmOGW4hFRZeTKwdM,13680
923
924
  cirq/sim/simulation_product_state.py,sha256=ehrEXLCZkcthtdYMZTZragWsPmsgzxxnmXuPQNEEg-k,7052
924
925
  cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
925
- cirq/sim/simulation_state.py,sha256=uBHpo1RYy3tN_ph7PQ_Qv729BlgNpY81Kfly2dN3a4I,12639
926
+ cirq/sim/simulation_state.py,sha256=lnOKBgwheQnl-iaGLxys5AVhul04CM_8VIHiUbdLd78,12659
926
927
  cirq/sim/simulation_state_base.py,sha256=QYlVrDkW3xC7tSG65WySpW63_1HdEAEMcAhGXeKE-KM,4180
927
- cirq/sim/simulation_state_test.py,sha256=ubfkvFui9zPQwC6aJw9rmehd_4oDQCi6L3Pe1EVznAE,7410
928
+ cirq/sim/simulation_state_test.py,sha256=dGS7F9IjEMyHp_WEJ3jtY7nCM20yY6Lt0rh3C3AUZG8,7430
928
929
  cirq/sim/simulation_utils.py,sha256=hsR4ea2eERW3ugNPSheE0bNBYEcJl6US-a6rmu7CSOA,2598
929
930
  cirq/sim/simulation_utils_test.py,sha256=iBJJxPs0J2HVpAIvuRwg_kiq3-VjhWSJhOM8irQVAkQ,1332
930
931
  cirq/sim/simulator.py,sha256=d5EFMunjzPATr5p3O4e8x0c-Ee3Bd3XQeOfyPXBwPsQ,42046
931
932
  cirq/sim/simulator_base.py,sha256=KUkNDra8sSIPl3i9BTkXa8RH45wr7Qi-oc-2UGyDWPQ,18186
932
933
  cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
933
- cirq/sim/simulator_test.py,sha256=ofu89IW24GtXr2HBC-OGgG0zZ1BCkw9Wkvj2aaa3uUY,18589
934
- cirq/sim/sparse_simulator.py,sha256=-uoZG1CRW7LbM8zbN7xqx4YQiFh-PlPpCBxHdgScqZM,12854
935
- cirq/sim/sparse_simulator_test.py,sha256=rrv4LgoMSP__a5b9_YUwNnpgryDqnJm7vMdodprbw14,53584
934
+ cirq/sim/simulator_test.py,sha256=6Yna8Yuhz9iWIByPbLrFJct7f1QSrhb9JSIo6Beo6EI,18609
935
+ cirq/sim/sparse_simulator.py,sha256=ELRhQblGnEfyGMJuM0QZ5Q0zlXEHuW6LovWZ_A6TfuM,12956
936
+ cirq/sim/sparse_simulator_test.py,sha256=epPvf_e3TVQTSBDq82lBZj4oCHKt_JX1oZGfOYRkkXI,53806
936
937
  cirq/sim/state_vector.py,sha256=-uPCN7MjorKZfD-LZU3-0Ld74zUgmOWD4cGx5BxB1HY,13428
937
938
  cirq/sim/state_vector_simulation_state.py,sha256=e4it_DT1J-30S3OX_gfMJiWAttFaVOMEPQ-Y1ARWnDg,17616
938
- cirq/sim/state_vector_simulation_state_test.py,sha256=UtGMIurlV6N74nX7qoVnGoRhwF35-ghDEIP7Mj5AXmI,9841
939
+ cirq/sim/state_vector_simulation_state_test.py,sha256=DyHEbI1ahfjV-jqE9Iak2qKWYCM1IsirrbSuSCJ5GWA,9861
939
940
  cirq/sim/state_vector_simulator.py,sha256=uHK8nEWAu0oOlgGhwHsnwE05BxY1X2GEoMpyoC5K9DM,8201
940
941
  cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
941
942
  cirq/sim/state_vector_test.py,sha256=AF5LbyRymSjuFDG19gPetp7morKLl8v5yfgf17TFCNg,16586
942
943
  cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
943
- cirq/sim/clifford/clifford_simulator.py,sha256=QXXGNagV1ljuR6oIJiw2i2Bi-PzaWCezAeXK_eUPg_k,9755
944
- cirq/sim/clifford/clifford_simulator_test.py,sha256=pgLz8-SSFLBq6kcJ516ufQMJiJI2dG9NM2nkmzwY124,20380
944
+ cirq/sim/clifford/clifford_simulator.py,sha256=vE25toK-IROCSFgnN5e7xY_fPUqV3kDx7gCfuQCNyx8,9857
945
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=E-OGm0ec6qBlGdr4cepouERc-4PkwT9399uZj_FA6M8,21381
945
946
  cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=YO_I-k-WeIqbwRapUMoJxKA3B93uof8ewbBvVNNIu8M,2159
946
947
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
947
948
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
@@ -955,17 +956,17 @@ cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2
955
956
  cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
956
957
  cirq/study/flatten_expressions.py,sha256=XUvPFOnuV8jOO2ZyvL4dsD3UWJXhyN2YfyVyq01BJgQ,15582
957
958
  cirq/study/flatten_expressions_test.py,sha256=bJZKjgz_brS71Zf-cdpI7MCY6TMhzilHp96Vhn3DoOg,6078
958
- cirq/study/resolver.py,sha256=UtiHmW31es44caMMohYS1afCVTq3vbaSoyz7bqyMGgc,11907
959
- cirq/study/resolver_test.py,sha256=QQe9Rr0z6qNbSWPEvCKd_DNka6454AWVKbG2J2DD1Wg,10228
959
+ cirq/study/resolver.py,sha256=h0K-oymS620W2vLlC22FOe8TfraLNF3N_F-Ra24y8os,11790
960
+ cirq/study/resolver_test.py,sha256=VjZn0408VHq9JLB5Che2d_cZhO4JchnrMgnyLL6gjtE,10531
960
961
  cirq/study/result.py,sha256=IjeBZ5eiYC92xDG8VbbH5avZzJl0nh_rArZu5oOIIHY,19285
961
962
  cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
962
963
  cirq/study/sweepable.py,sha256=TXry4R8jDqhbq_FXPFdLlF9vEHA0MQrmFbJd4K6PlPc,4358
963
964
  cirq/study/sweepable_test.py,sha256=ENv03_GJmbUc_ukJoqfgG-H5C_yyx1jCcvxohSMyQVU,5502
964
965
  cirq/study/sweeps.py,sha256=q6wHpIEjK5sQQdxTERFqp_BxDtiHKVQ50zyS7TOrYa0,21673
965
- cirq/study/sweeps_test.py,sha256=8jq4l_W7eUc2S2A80s84r-KuhtOAzfGC9SoNlWRskAw,15427
966
+ cirq/study/sweeps_test.py,sha256=1DZboNgbOMvnP-UYzjVN8uPCbkuj0vw7gKi2FW7fMzQ,16160
966
967
  cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
967
968
  cirq/testing/circuit_compare.py,sha256=7Y9agOcdxDnOvigN58OH9NNvlW-HGTGLjZaj0tRVep4,19175
968
- cirq/testing/circuit_compare_test.py,sha256=clT6K6PEq97ICDL6e3l0tgci5Q-RIDovFRt2qIRjxMQ,19742
969
+ cirq/testing/circuit_compare_test.py,sha256=yGf1ZqiYzvEj_mepbwHo230d3mwb_4N7K0E_Lhxms_Q,19702
969
970
  cirq/testing/consistent_act_on.py,sha256=aMdeUGXQFQpBAEiKPOQPS75HlKXR8cgA7KDJCUknhmw,7733
970
971
  cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
971
972
  cirq/testing/consistent_channels.py,sha256=hrPRjaabPko2l0xqqkJ8F3OM7pornkDNCP-St2noHXI,1737
@@ -975,12 +976,12 @@ cirq/testing/consistent_controlled_gate_op_test.py,sha256=L1ZBrgcwYoaHiwfhc9PBDP
975
976
  cirq/testing/consistent_decomposition.py,sha256=FecPij4-79tDS76tumbzFmCXVNcdDNS7DkTFzKF_qbQ,3704
976
977
  cirq/testing/consistent_decomposition_test.py,sha256=QZ6dp76_X00a0z2Quu_jjwDnCfq5MQo5ochC6do9mFo,3819
977
978
  cirq/testing/consistent_pauli_expansion.py,sha256=NVloOg1I8LGGIEoZxvtUQIUHRvMgo9CNgw5-atuXGsE,1580
978
- cirq/testing/consistent_pauli_expansion_test.py,sha256=Gy95osE-L4uQs1E1oxAKHCgVguXl-hjI5UNQJW5cEdI,2402
979
+ cirq/testing/consistent_pauli_expansion_test.py,sha256=tElSpORomKnd351GsdBUZUtUXViRfN4YVAZav34Ocu4,2422
979
980
  cirq/testing/consistent_phase_by.py,sha256=mxZiGh5NV4CFpta8mleJc0yLSWrwVUMsyD1c8v229vw,2085
980
981
  cirq/testing/consistent_phase_by_test.py,sha256=ik887z3ZsJs949Rbx6gvdIicNf5pc6uyyUqKgA3IfvQ,3272
981
982
  cirq/testing/consistent_protocols.py,sha256=xf9F41rUENCj6wARpmhWG_-xg0kH5P2tfxwNNAiH2b4,7754
982
983
  cirq/testing/consistent_protocols_test.py,sha256=1lizbN-A19lY0Ii9T2ulySbM4SMAp_rl2RrGC2sT5vA,10003
983
- cirq/testing/consistent_qasm.py,sha256=0to-JPll3LJTiaPP50jm1yB345JWzwyjfEI6GgigbEk,5021
984
+ cirq/testing/consistent_qasm.py,sha256=oXd20Hfkjkdl9n5i4tgxIwuE5wx1-2GF8XHXj8uCpG8,5041
984
985
  cirq/testing/consistent_qasm_test.py,sha256=KRIP7WbaPu8QZ-KalZvV6kQSjLmtjzhU6Tz51rnTaHw,2883
985
986
  cirq/testing/consistent_resolve_parameters.py,sha256=fa8_3KjsS1O0vPJ7P68FBjg56f2IqadSCYfU0ClnoKc,1974
986
987
  cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
@@ -991,14 +992,14 @@ cirq/testing/deprecation.py,sha256=neyww8gBZZmgwPX8xPw8Mg4HgG0OXwSixhOAHnIU2ks,2
991
992
  cirq/testing/deprecation_test.py,sha256=bWq_VY-rGnfvdeJVqdkMIDzMtxQRj9rdR6gu0kCHtzo,2166
992
993
  cirq/testing/devices.py,sha256=i3v7hOGgblJXxOdZhWeAd-XszsF2PX4-ooTmqUdkAoM,3259
993
994
  cirq/testing/devices_test.py,sha256=TDtCNDj4VemrpjJxJsUgwz71crvpJLM3h-HDoAvfZFo,2853
994
- cirq/testing/equals_tester.py,sha256=TJbOlUB4-8H4plssc0yOSvhiiyt8ISG27YCZHo6CCL0,6567
995
- cirq/testing/equals_tester_test.py,sha256=h1h2gFceSojsKwjokXi79p2ErOjvd57HwYdIGsmF2Gc,10266
995
+ cirq/testing/equals_tester.py,sha256=3rTAyPAQs-Ocy8v26SzSSjmaqz3ROk0oZw0DpNWaWs0,6587
996
+ cirq/testing/equals_tester_test.py,sha256=9Rl9i-ccl7OAF_aXbVUiBgF08BeHJfn37I5Nk1etRag,10366
996
997
  cirq/testing/equivalent_basis_map.py,sha256=y9OlbBOWn-AC7l5x4iLfq5T4q8SxaWX_a-__QjL8_p0,2633
997
998
  cirq/testing/equivalent_basis_map_test.py,sha256=4oRrDR5e9RilUF5QEGg5QAg-pCpIeALHGmUPLd3CtrU,1487
998
999
  cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
999
1000
  cirq/testing/equivalent_repr_eval_test.py,sha256=FTe_1O9sl84cSmTuxPP8m38P_3mzXrF4yU5X8Bj2wnc,2964
1000
1001
  cirq/testing/gate_features.py,sha256=39lXCy54-V-b7WT0UC4CQaNCsFLHDLagJVVMG8fCz98,1367
1001
- cirq/testing/gate_features_test.py,sha256=I5hTTazOYucDCqowWtdYN4rvd9hK-9Nlv3fRjs21Bvw,2168
1002
+ cirq/testing/gate_features_test.py,sha256=yqtiMXKqktYnpkceXQnmkBixHf7DO_RRbJ4ccuKd0jQ,2314
1002
1003
  cirq/testing/json.py,sha256=vFCtegpsu7LG2Bc83Nxy_dM8AuIpxA0_10PWE1vIpVE,6639
1003
1004
  cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
1004
1005
  cirq/testing/lin_alg_utils.py,sha256=SiW2C_ugq3OKfyioD48INjILg7AjP24Jz6q5l6L1uEI,6353
@@ -1069,7 +1070,7 @@ cirq/transformers/noise_adding.py,sha256=UPqLAqXxeDkj0HeYGhFE6oCKGRdT7mQOA60UbUH
1069
1070
  cirq/transformers/noise_adding_test.py,sha256=8bTcxE4oiqmZ3H1QJhjP_VImdBVpmdI1b9dxQ-Mz-Pk,2135
1070
1071
  cirq/transformers/optimize_for_target_gateset.py,sha256=Kawt_ltBP7DX0Wo-f4U6_lEDGfSfCDYU_Qj5mvHdM7k,7229
1071
1072
  cirq/transformers/optimize_for_target_gateset_test.py,sha256=NJ8H8BPHVEPGhJ-4mewq-49st8Vqz2hHhlcGr6QqBdk,19525
1072
- cirq/transformers/qubit_management_transformers.py,sha256=A7Mweu9ElLSCsy_atmgFbYlzOFXKhct5gQ5YNTjjaVU,9430
1073
+ cirq/transformers/qubit_management_transformers.py,sha256=fIC5rGPdDmYJ3rZNxcJ_aWtvoEkTFZjAjq-MdS0BTI0,9450
1073
1074
  cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
1074
1075
  cirq/transformers/randomized_measurements.py,sha256=BR0UQympwlJ9NqxmWkx2r83qBRZGURtQEwJXLAzvUu0,5687
1075
1076
  cirq/transformers/randomized_measurements_test.py,sha256=udQZWgM8_atTQ4i5tPhGnrLu7D9WGvRaLNeeAwUGWeg,2737
@@ -1078,9 +1079,9 @@ cirq/transformers/stratify_test.py,sha256=17ic2VAUPEGuPG2o5j98yDxQ2j2J_PN3EsPsfh
1078
1079
  cirq/transformers/synchronize_terminal_measurements.py,sha256=H3O1TiKGLYx1po7RCrSXhhLTTTNNRMCylDv5Ww2dJnY,3843
1079
1080
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1080
1081
  cirq/transformers/transformer_api.py,sha256=d_voglut7ogMtxrEY00ZnCYSnwmofaT8AKJulLl1QZY,16957
1081
- cirq/transformers/transformer_api_test.py,sha256=yrA1r7gBNeMAAXn2ChQO4xsCySVtDCbbva6PqQe3UQY,13045
1082
+ cirq/transformers/transformer_api_test.py,sha256=YBkIX-R6vYeQz1Y_sqpzDlvNYszEtfvkegoA8dAVVVc,13286
1082
1083
  cirq/transformers/transformer_primitives.py,sha256=LMZ0CIIKpyyfkF4l13LGCP5AItptjzdyLL6xyfYkCq4,36660
1083
- cirq/transformers/transformer_primitives_test.py,sha256=5yAD9QtAboL7vRdoM3xVJfxKUJx6_nAlmfMswoi9xrs,41726
1084
+ cirq/transformers/transformer_primitives_test.py,sha256=Q0j8XmmDsTYpoZj1Qc4kDlMhpU4cpuBf77eBV1epM3o,41766
1084
1085
  cirq/transformers/analytical_decompositions/__init__.py,sha256=hMsoQSQtSvEn5mNohSvGPjsmf58VN4jzmIFnchVhZi8,3760
1085
1086
  cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=x8Xvuvp_-Qf2_Xo3hY6YhgjYO5gGY1MkyMw_47C5ndc,6727
1086
1087
  cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=iIU5FhXlmnKoA0cIIp0lnYGcpyCJ4bevNheYNN-_FAc,7102
@@ -1106,7 +1107,7 @@ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=Jv5zfIDS
1106
1107
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=U4FJj3Xn417yqyg313ONf4l10d7FR5pKUwMlb87mfco,6989
1107
1108
  cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=MUt2ThFMbCCapcRYGY_3cBRwYoZSb4ZFuua1doZsyJA,3772
1108
1109
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85MbuIAos7o1371wXs_KH-Bk6jsPqSBKAx9GJ9c-wVo,4160
1109
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=E8Zi0EsJ2WNNJZ3fft9zc_oMTYrKLmqxj6cLvCn0HSI,25397
1110
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=J1az4caLRz59cHRtnZ6T-8HRXvaP2tf19O3gqb67PHE,25417
1110
1111
  cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=VsbjaDbwy94sMYVnqN02gw66k2g-cRTUyto4o0NPbII,20619
1111
1112
  cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
1112
1113
  cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=GEw5b1865_5yBmX1TXxrh3JX8KrUvGDspIE8fjp_svc,5540
@@ -1116,7 +1117,7 @@ cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=_2RMzwuMoqytgsVZEET2m6
1116
1117
  cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bULq-r5MuJBhxUNt_bnV1xhLGR7x2DMNXyshm4C3Itk,18846
1117
1118
  cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=1zKRV_xDV6_AcP_Q2u0JIhpxYXH0F3Twsjzn_Dudy60,5236
1118
1119
  cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=OHALJ4rLbRCwRWrr0MBJ3BV_7LAZTrQFOvxpDJ5eNm4,5025
1119
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=BM7uekXczYCr3BipdEu-ekFZuPt3mpr88gYyFUxiYs8,1785
1120
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=sBEq92OUEwnRtfwG_Zlnkpl_pZdZIXcB4ypKy_b2bIQ,1805
1120
1121
  cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=L6Ei5xkNkU9-kKMJzjZRZCwpjO3p4Q-AaV2lmuJJXpU,3500
1121
1122
  cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=HEIIwKlX5ixau1e_etSUj5NvYOVTT-Gc3kuHcyKAeJ4,866
1122
1123
  cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=8oTUE1A78_F0kHW1EJnH0XlLCwgSbbPv888l10oRyoQ,1086
@@ -1155,18 +1156,18 @@ cirq/value/angle.py,sha256=uPa6RrAF-fH4vS8DxWVfBug1FZmT0yEMXdd4VlWOaJw,3315
1155
1156
  cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1156
1157
  cirq/value/classical_data.py,sha256=LFW7Q87mjg-KpuU5iJqxyDFNqre5AlHUCXbMVKwFVV4,11608
1157
1158
  cirq/value/classical_data_test.py,sha256=23ZraKZ-V3p-uux21bkcboQcEp81RW6VKnVIYPQc6_o,5231
1158
- cirq/value/condition.py,sha256=QXgAsLYN6SYRGCsteMEykH-EKplFs59fGANNc9IqZWY,11997
1159
+ cirq/value/condition.py,sha256=agENcjK7FzWJ-lQN77dlGXQOVi1rPxYeUYrDlpHid5w,11977
1159
1160
  cirq/value/condition_test.py,sha256=RTDP4N3gGiAKX_tdpo1js0d2bK3jAfUFKXsrpN1q8CU,12913
1160
1161
  cirq/value/digits.py,sha256=PLpenXpyhrtEpEETVe3rMle4IKZVGL4GrW5ugThHkeA,6024
1161
1162
  cirq/value/digits_test.py,sha256=evx-y619LfjSN_gUO1B6K7O80X5HJmxxBPl61RrOovo,3812
1162
- cirq/value/duration.py,sha256=ieN9IMYMAr33VdakbbkTpebs2sfniHc0RXfAD7WGZyc,10358
1163
+ cirq/value/duration.py,sha256=JY1D2q61cHWChRjJR-ZPqfhuc3Bz0-U8gYpJif_cEYA,10378
1163
1164
  cirq/value/duration_test.py,sha256=hzAbSJgWWgKaZhHujWllzKWlLeQErslU-06ReVsHLaA,8245
1164
1165
  cirq/value/linear_dict.py,sha256=ra8rWflr6xXgfgVSOwN5wkQtryvp04H82PUYK7wSqLk,12736
1165
1166
  cirq/value/linear_dict_test.py,sha256=H7-3yABo7J9T8HF8_orAE0DsIUrTjNIwArTkhgpQdsc,19872
1166
1167
  cirq/value/measurement_key.py,sha256=ZDEmGZkJA8vS7jdNPa8yxqmTg_yQdPBhXpEfvniTE4M,5199
1167
1168
  cirq/value/measurement_key_test.py,sha256=GnEX5QdEVbmi0dR9URcgXQH23aqW7Y_PKmTb2eIdRCg,4466
1168
1169
  cirq/value/periodic_value.py,sha256=Sb_5qisRHuYxNf3x9KYToWqcuig5E3pOOT8C-WskF6s,3922
1169
- cirq/value/periodic_value_test.py,sha256=mMvj_Ai2T8BWRbc7jdvb7JPX8OZxlL4H7jtdvy54ono,4319
1170
+ cirq/value/periodic_value_test.py,sha256=S9lk7EWKZjCNToYIsZWZqx77HuVlA7QEBP4lXazF7ss,4474
1170
1171
  cirq/value/probability.py,sha256=bonowweqs316WJM874UnL3rnjqQ_Po4fWPXw4ujduK4,1583
1171
1172
  cirq/value/probability_test.py,sha256=QXfihRBOfOIA_IoXlSbhoe7L-VGCBLLXYS99pL-R1yE,932
1172
1173
  cirq/value/product_state.py,sha256=5h-dM2o9JCTsJQsCZbED1TFjrbPswaoqrQ2VXFiZDYU,9018
@@ -1177,12 +1178,12 @@ cirq/value/timestamp.py,sha256=a7PFlJgvmGln7LJzhJK7g0JJt8cQD7JnHjC6BEYMFs0,3604
1177
1178
  cirq/value/timestamp_test.py,sha256=kEzKyhA0j1DnMlp41olZ7ure949nGP90Jw5OscFonwI,4030
1178
1179
  cirq/value/type_alias.py,sha256=bmKOnIIiHbjU4x62QBxAPyvdzsyv9fGyMEBz_ivwBo8,1128
1179
1180
  cirq/value/value_equality_attr.py,sha256=ZaCd8VW36yKENuBlmxjbdUp8NZa9wlegJqnE9vTN7G0,10545
1180
- cirq/value/value_equality_attr_test.py,sha256=k_nl5hWxo4yMO6WNu0wU68wyeb-RN9Ua_Ix7s9UTfOE,6412
1181
+ cirq/value/value_equality_attr_test.py,sha256=uLY2QntO8fuTO6j1mU20ulLGClY5z0_8fxTPR8mqt1E,6432
1181
1182
  cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1182
1183
  cirq/vis/density_matrix.py,sha256=8jadiGKgOG86llpgCahDcBJnWw0IpCooWWREJcNGXP4,4819
1183
1184
  cirq/vis/density_matrix_test.py,sha256=PBqsp4BjIubKWmei5FFzt5345_g_Iu-MR41jDR6Qa8Q,6907
1184
1185
  cirq/vis/heatmap.py,sha256=-0JRDfLErXSnwLbJkqz0Q4BJ6WezEV9F9gG3C6w2JMI,17767
1185
- cirq/vis/heatmap_test.py,sha256=vgVU9elp5eFKUcmlkjFll1APRqTL80goQK7B--fBLIE,20530
1186
+ cirq/vis/heatmap_test.py,sha256=6CEVTaS6jfpdE7EhJIs7D_AXclA0pS_calDAHx0gW2Q,20550
1186
1187
  cirq/vis/histogram.py,sha256=Zo4JCkQm7zNqUmae9e4hYd0fFcEY__TXaGl5mNkG-5M,5107
1187
1188
  cirq/vis/histogram_test.py,sha256=MZPd3ivY0Lo_XKV4n07oVlQ345uvkEdI76qs6GwwUuk,1903
1188
1189
  cirq/vis/state_histogram.py,sha256=LgBKi4soevqZ1Z4G0bPrF2A4SC_bBOQrnPNqHuCx8Zk,4302
@@ -1200,16 +1201,16 @@ cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u7
1200
1201
  cirq/work/observable_measurement_test.py,sha256=0EvlC3rqiKSudEyq24ZYD1NQ6mxYMO9CluP3Clc-BOI,20189
1201
1202
  cirq/work/observable_readout_calibration.py,sha256=h-z2n4Sj-Wn1yWP5Oc1VvI7-acD5ZJhAJQZJUnxCLaM,1888
1202
1203
  cirq/work/observable_readout_calibration_test.py,sha256=ldkxdZRU4IGm-SIv2NLWFsAfvBOczA-PYkwGo7C0V7k,1808
1203
- cirq/work/observable_settings.py,sha256=Ilts3fV0ypsKwmgVkVUWsvXAdA95bXdLRlNc0CdPIFw,6688
1204
- cirq/work/observable_settings_test.py,sha256=RaRhb2XcL_DS0gG1l-DjDmLwhkVaw-NOn0A2sYUdfTc,4233
1204
+ cirq/work/observable_settings.py,sha256=a42gzUWy1FJ3XiTQ5NTenj0E7nLaoI1uEcmLlbn_sB4,6771
1205
+ cirq/work/observable_settings_test.py,sha256=pINRmwyJkracXiQqZddl8QSejm-NBWyXPRio9ecc76k,4281
1205
1206
  cirq/work/pauli_sum_collector.py,sha256=sdZn_aTuTQs_Y00rVUTgPknB5doj0QZxw8OSXv8RVv0,4230
1206
1207
  cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1207
1208
  cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
1208
1209
  cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
1209
1210
  cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
1210
1211
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1211
- cirq_core-1.5.0.dev20250403060241.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1212
- cirq_core-1.5.0.dev20250403060241.dist-info/METADATA,sha256=rnHLT3hFlgtO1iCe5y6Zoh7NJdEBcHMGCMo2fWNsA_g,4584
1213
- cirq_core-1.5.0.dev20250403060241.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1214
- cirq_core-1.5.0.dev20250403060241.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1215
- cirq_core-1.5.0.dev20250403060241.dist-info/RECORD,,
1212
+ cirq_core-1.5.0.dev20250403161251.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
+ cirq_core-1.5.0.dev20250403161251.dist-info/METADATA,sha256=Q-H7hBI3jeiR67pxqiGGU-PzcJoAIEDwMhSyZDyovW8,4584
1214
+ cirq_core-1.5.0.dev20250403161251.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1215
+ cirq_core-1.5.0.dev20250403161251.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
+ cirq_core-1.5.0.dev20250403161251.dist-info/RECORD,,