cirq-core 1.4.0.dev20240529225110__py3-none-any.whl → 1.5.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.

Potentially problematic release.


This version of cirq-core might be problematic. Click here for more details.

Files changed (590) hide show
  1. cirq/__init__.py +587 -569
  2. cirq/_compat.py +9 -0
  3. cirq/_compat_test.py +11 -9
  4. cirq/_import.py +7 -8
  5. cirq/_version.py +31 -1
  6. cirq/_version_test.py +1 -1
  7. cirq/circuits/__init__.py +15 -9
  8. cirq/circuits/_block_diagram_drawer.py +1 -2
  9. cirq/circuits/_block_diagram_drawer_test.py +3 -3
  10. cirq/circuits/_box_drawing_character_data.py +0 -1
  11. cirq/circuits/_box_drawing_character_data_test.py +2 -2
  12. cirq/circuits/_bucket_priority_queue.py +0 -1
  13. cirq/circuits/_bucket_priority_queue_test.py +1 -1
  14. cirq/circuits/circuit.py +336 -234
  15. cirq/circuits/circuit_operation.py +102 -52
  16. cirq/circuits/circuit_operation_test.py +85 -4
  17. cirq/circuits/circuit_test.py +101 -32
  18. cirq/circuits/frozen_circuit.py +36 -32
  19. cirq/circuits/insert_strategy.py +10 -0
  20. cirq/circuits/insert_strategy_test.py +20 -0
  21. cirq/circuits/moment.py +79 -80
  22. cirq/circuits/moment_test.py +105 -2
  23. cirq/circuits/optimization_pass.py +15 -15
  24. cirq/circuits/optimization_pass_test.py +8 -9
  25. cirq/circuits/qasm_output.py +64 -33
  26. cirq/circuits/qasm_output_test.py +63 -2
  27. cirq/circuits/text_diagram_drawer.py +26 -56
  28. cirq/circuits/text_diagram_drawer_test.py +5 -4
  29. cirq/contrib/__init__.py +2 -2
  30. cirq/contrib/acquaintance/__init__.py +44 -29
  31. cirq/contrib/acquaintance/bipartite.py +8 -7
  32. cirq/contrib/acquaintance/bipartite_test.py +11 -1
  33. cirq/contrib/acquaintance/devices.py +5 -4
  34. cirq/contrib/acquaintance/devices_test.py +5 -1
  35. cirq/contrib/acquaintance/executor.py +18 -21
  36. cirq/contrib/acquaintance/executor_test.py +3 -2
  37. cirq/contrib/acquaintance/gates.py +36 -27
  38. cirq/contrib/acquaintance/gates_test.py +1 -1
  39. cirq/contrib/acquaintance/inspection_utils.py +10 -9
  40. cirq/contrib/acquaintance/inspection_utils_test.py +6 -1
  41. cirq/contrib/acquaintance/mutation_utils.py +10 -10
  42. cirq/contrib/acquaintance/optimizers.py +7 -6
  43. cirq/contrib/acquaintance/optimizers_test.py +1 -1
  44. cirq/contrib/acquaintance/permutation.py +22 -21
  45. cirq/contrib/acquaintance/permutation_test.py +1 -1
  46. cirq/contrib/acquaintance/shift.py +8 -6
  47. cirq/contrib/acquaintance/shift_swap_network.py +6 -4
  48. cirq/contrib/acquaintance/strategies/__init__.py +9 -3
  49. cirq/contrib/acquaintance/strategies/complete.py +4 -3
  50. cirq/contrib/acquaintance/strategies/cubic.py +5 -3
  51. cirq/contrib/acquaintance/strategies/quartic_paired.py +8 -6
  52. cirq/contrib/acquaintance/topological_sort.py +4 -2
  53. cirq/contrib/bayesian_network/__init__.py +3 -1
  54. cirq/contrib/bayesian_network/bayesian_network_gate.py +5 -3
  55. cirq/contrib/circuitdag/__init__.py +1 -1
  56. cirq/contrib/circuitdag/circuit_dag.py +24 -24
  57. cirq/contrib/circuitdag/circuit_dag_test.py +1 -1
  58. cirq/contrib/custom_simulators/custom_state_simulator.py +10 -8
  59. cirq/contrib/custom_simulators/custom_state_simulator_test.py +15 -11
  60. cirq/contrib/graph_device/__init__.py +8 -8
  61. cirq/contrib/graph_device/graph_device.py +8 -8
  62. cirq/contrib/graph_device/graph_device_test.py +0 -1
  63. cirq/contrib/graph_device/hypergraph_test.py +1 -0
  64. cirq/contrib/json.py +1 -2
  65. cirq/contrib/json_test.py +2 -2
  66. cirq/contrib/noise_models/__init__.py +5 -6
  67. cirq/contrib/noise_models/noise_models.py +8 -6
  68. cirq/contrib/paulistring/__init__.py +22 -10
  69. cirq/contrib/paulistring/clifford_optimize.py +1 -1
  70. cirq/contrib/paulistring/clifford_optimize_test.py +0 -1
  71. cirq/contrib/paulistring/clifford_target_gateset.py +15 -12
  72. cirq/contrib/paulistring/optimize.py +2 -2
  73. cirq/contrib/paulistring/optimize_test.py +0 -1
  74. cirq/contrib/paulistring/pauli_string_dag_test.py +0 -1
  75. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py +379 -0
  76. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py +523 -0
  77. cirq/contrib/paulistring/pauli_string_optimize.py +3 -1
  78. cirq/contrib/paulistring/pauli_string_optimize_test.py +1 -3
  79. cirq/contrib/paulistring/recombine.py +2 -2
  80. cirq/contrib/paulistring/recombine_test.py +2 -2
  81. cirq/contrib/paulistring/separate.py +3 -4
  82. cirq/contrib/qasm_import/__init__.py +2 -2
  83. cirq/contrib/qasm_import/_lexer.py +21 -26
  84. cirq/contrib/qasm_import/_lexer_test.py +90 -6
  85. cirq/contrib/qasm_import/_parser.py +238 -47
  86. cirq/contrib/qasm_import/_parser_test.py +514 -59
  87. cirq/contrib/qasm_import/qasm_test.py +1 -1
  88. cirq/contrib/qcircuit/__init__.py +6 -4
  89. cirq/contrib/qcircuit/qcircuit_diagram.py +5 -2
  90. cirq/contrib/qcircuit/qcircuit_pdf.py +1 -2
  91. cirq/{experiments/grid_parallel_two_qubit_xeb_test.py → contrib/qcircuit/qcircuit_pdf_test.py} +13 -12
  92. cirq/contrib/qcircuit/qcircuit_test.py +1 -1
  93. cirq/contrib/quantum_volume/__init__.py +7 -7
  94. cirq/contrib/quantum_volume/quantum_volume.py +6 -11
  95. cirq/contrib/quantum_volume/quantum_volume_test.py +3 -1
  96. cirq/contrib/quimb/__init__.py +16 -13
  97. cirq/contrib/quimb/density_matrix.py +1 -1
  98. cirq/contrib/quimb/mps_simulator.py +27 -28
  99. cirq/contrib/quimb/mps_simulator_test.py +5 -0
  100. cirq/contrib/quimb/state_vector.py +3 -10
  101. cirq/contrib/quirk/__init__.py +1 -1
  102. cirq/contrib/quirk/export_to_quirk.py +3 -3
  103. cirq/contrib/routing/__init__.py +12 -9
  104. cirq/contrib/routing/device.py +1 -1
  105. cirq/contrib/routing/device_test.py +1 -2
  106. cirq/contrib/routing/greedy.py +7 -5
  107. cirq/contrib/routing/greedy_test.py +5 -3
  108. cirq/contrib/routing/initialization.py +3 -1
  109. cirq/contrib/routing/initialization_test.py +1 -1
  110. cirq/contrib/routing/swap_network.py +6 -6
  111. cirq/contrib/routing/utils.py +6 -4
  112. cirq/contrib/routing/utils_test.py +1 -2
  113. cirq/{type_workarounds.py → contrib/shuffle_circuits/__init__.py} +5 -10
  114. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +250 -0
  115. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +363 -0
  116. cirq/contrib/svg/__init__.py +1 -1
  117. cirq/contrib/svg/svg.py +12 -10
  118. cirq/contrib/svg/svg_test.py +3 -2
  119. cirq/devices/__init__.py +34 -25
  120. cirq/devices/device.py +16 -12
  121. cirq/devices/device_test.py +1 -0
  122. cirq/devices/grid_device_metadata.py +16 -12
  123. cirq/devices/grid_device_metadata_test.py +2 -1
  124. cirq/devices/grid_qubit.py +31 -26
  125. cirq/devices/grid_qubit_test.py +30 -1
  126. cirq/devices/insertion_noise_model.py +6 -6
  127. cirq/devices/insertion_noise_model_test.py +1 -1
  128. cirq/devices/line_qubit.py +28 -20
  129. cirq/devices/line_qubit_test.py +26 -0
  130. cirq/devices/named_topologies.py +12 -10
  131. cirq/devices/named_topologies_test.py +5 -4
  132. cirq/devices/noise_model.py +29 -33
  133. cirq/devices/noise_properties.py +2 -2
  134. cirq/devices/noise_properties_test.py +2 -2
  135. cirq/devices/noise_utils.py +3 -3
  136. cirq/devices/superconducting_qubits_noise_properties.py +2 -2
  137. cirq/devices/superconducting_qubits_noise_properties_test.py +3 -3
  138. cirq/devices/thermal_noise_model.py +2 -1
  139. cirq/devices/unconstrained_device.py +1 -1
  140. cirq/devices/unconstrained_device_test.py +6 -0
  141. cirq/experiments/__init__.py +51 -34
  142. cirq/experiments/qubit_characterizations.py +17 -15
  143. cirq/experiments/qubit_characterizations_test.py +4 -6
  144. cirq/experiments/random_quantum_circuit_generation.py +10 -9
  145. cirq/experiments/random_quantum_circuit_generation_test.py +21 -4
  146. cirq/experiments/readout_confusion_matrix.py +73 -8
  147. cirq/experiments/readout_confusion_matrix_test.py +104 -1
  148. cirq/experiments/single_qubit_readout_calibration.py +8 -6
  149. cirq/experiments/single_qubit_readout_calibration_test.py +1 -1
  150. cirq/experiments/t1_decay_experiment.py +4 -5
  151. cirq/experiments/t1_decay_experiment_test.py +1 -2
  152. cirq/experiments/t2_decay_experiment.py +0 -1
  153. cirq/experiments/t2_decay_experiment_test.py +1 -2
  154. cirq/experiments/two_qubit_xeb.py +157 -33
  155. cirq/experiments/two_qubit_xeb_test.py +38 -22
  156. cirq/experiments/xeb_fitting.py +99 -19
  157. cirq/experiments/xeb_fitting_test.py +64 -25
  158. cirq/experiments/xeb_sampling.py +14 -18
  159. cirq/experiments/xeb_simulation.py +4 -3
  160. cirq/experiments/xeb_simulation_test.py +20 -14
  161. cirq/experiments/z_phase_calibration.py +368 -0
  162. cirq/experiments/z_phase_calibration_test.py +241 -0
  163. cirq/interop/__init__.py +4 -1
  164. cirq/interop/quirk/__init__.py +7 -4
  165. cirq/interop/quirk/cells/__init__.py +17 -6
  166. cirq/interop/quirk/cells/arithmetic_cells.py +8 -8
  167. cirq/interop/quirk/cells/arithmetic_cells_test.py +1 -1
  168. cirq/interop/quirk/cells/cell.py +6 -6
  169. cirq/interop/quirk/cells/composite_cell.py +5 -5
  170. cirq/interop/quirk/cells/composite_cell_test.py +1 -1
  171. cirq/interop/quirk/cells/control_cells.py +1 -1
  172. cirq/interop/quirk/cells/frequency_space_cells.py +2 -2
  173. cirq/interop/quirk/cells/ignored_cells.py +1 -1
  174. cirq/interop/quirk/cells/input_cells.py +1 -1
  175. cirq/interop/quirk/cells/input_cells_test.py +1 -1
  176. cirq/interop/quirk/cells/input_rotation_cells.py +1 -1
  177. cirq/interop/quirk/cells/input_rotation_cells_test.py +1 -1
  178. cirq/interop/quirk/cells/measurement_cells.py +1 -1
  179. cirq/interop/quirk/cells/parse.py +8 -7
  180. cirq/interop/quirk/cells/parse_test.py +2 -2
  181. cirq/interop/quirk/cells/single_qubit_rotation_cells.py +1 -1
  182. cirq/interop/quirk/cells/swap_cell_test.py +1 -1
  183. cirq/interop/quirk/cells/unsupported_cells.py +1 -1
  184. cirq/interop/quirk/url_to_circuit.py +7 -7
  185. cirq/interop/quirk/url_to_circuit_test.py +1 -1
  186. cirq/ion/__init__.py +4 -2
  187. cirq/json_resolver_cache.py +15 -7
  188. cirq/linalg/__init__.py +62 -51
  189. cirq/linalg/combinators.py +4 -4
  190. cirq/linalg/combinators_test.py +4 -1
  191. cirq/linalg/decompositions.py +15 -40
  192. cirq/linalg/decompositions_test.py +16 -22
  193. cirq/linalg/diagonalize.py +1 -1
  194. cirq/linalg/diagonalize_test.py +1 -1
  195. cirq/linalg/operator_spaces.py +20 -4
  196. cirq/linalg/operator_spaces_test.py +15 -2
  197. cirq/linalg/predicates.py +3 -3
  198. cirq/linalg/predicates_test.py +1 -0
  199. cirq/linalg/tolerance.py +2 -2
  200. cirq/linalg/transformations.py +30 -12
  201. cirq/linalg/transformations_test.py +13 -0
  202. cirq/neutral_atoms/__init__.py +2 -2
  203. cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py +0 -1
  204. cirq/ops/__init__.py +172 -132
  205. cirq/ops/arithmetic_operation.py +2 -2
  206. cirq/ops/arithmetic_operation_test.py +2 -2
  207. cirq/ops/boolean_hamiltonian.py +3 -2
  208. cirq/ops/classically_controlled_operation.py +39 -12
  209. cirq/ops/classically_controlled_operation_test.py +147 -1
  210. cirq/ops/clifford_gate.py +38 -36
  211. cirq/ops/clifford_gate_test.py +75 -1
  212. cirq/ops/common_channels.py +16 -45
  213. cirq/ops/common_channels_test.py +10 -0
  214. cirq/ops/common_gate_families.py +1 -1
  215. cirq/ops/common_gate_families_test.py +1 -0
  216. cirq/ops/common_gates.py +48 -49
  217. cirq/ops/common_gates_test.py +18 -2
  218. cirq/ops/control_values.py +3 -3
  219. cirq/ops/control_values_test.py +2 -1
  220. cirq/ops/controlled_gate.py +36 -23
  221. cirq/ops/controlled_gate_test.py +70 -3
  222. cirq/ops/controlled_operation.py +6 -5
  223. cirq/ops/controlled_operation_test.py +7 -3
  224. cirq/ops/dense_pauli_string.py +11 -11
  225. cirq/ops/diagonal_gate.py +2 -2
  226. cirq/ops/diagonal_gate_test.py +1 -0
  227. cirq/ops/eigen_gate.py +16 -36
  228. cirq/ops/eigen_gate_test.py +60 -10
  229. cirq/ops/fourier_transform.py +1 -3
  230. cirq/ops/fourier_transform_test.py +2 -1
  231. cirq/ops/fsim_gate.py +42 -3
  232. cirq/ops/fsim_gate_test.py +21 -0
  233. cirq/ops/gate_operation.py +8 -8
  234. cirq/ops/gate_operation_test.py +4 -2
  235. cirq/ops/gateset_test.py +11 -2
  236. cirq/ops/global_phase_op.py +8 -7
  237. cirq/ops/global_phase_op_test.py +1 -1
  238. cirq/ops/greedy_qubit_manager_test.py +5 -0
  239. cirq/ops/identity.py +14 -4
  240. cirq/ops/identity_test.py +24 -0
  241. cirq/ops/kraus_channel.py +1 -0
  242. cirq/ops/kraus_channel_test.py +3 -1
  243. cirq/ops/linear_combinations.py +27 -21
  244. cirq/ops/linear_combinations_test.py +23 -4
  245. cirq/ops/matrix_gates.py +24 -8
  246. cirq/ops/measure_util.py +2 -2
  247. cirq/ops/measurement_gate.py +7 -4
  248. cirq/ops/measurement_gate_test.py +2 -1
  249. cirq/ops/mixed_unitary_channel.py +1 -0
  250. cirq/ops/mixed_unitary_channel_test.py +3 -1
  251. cirq/ops/named_qubit.py +8 -1
  252. cirq/ops/op_tree.py +3 -30
  253. cirq/ops/op_tree_test.py +4 -0
  254. cirq/ops/parallel_gate.py +2 -3
  255. cirq/ops/parallel_gate_test.py +2 -1
  256. cirq/ops/parity_gates.py +7 -8
  257. cirq/ops/parity_gates_test.py +1 -0
  258. cirq/ops/pauli_gates.py +5 -11
  259. cirq/ops/pauli_gates_test.py +1 -0
  260. cirq/ops/pauli_interaction_gate.py +11 -5
  261. cirq/ops/pauli_interaction_gate_test.py +2 -3
  262. cirq/ops/pauli_measurement_gate.py +6 -5
  263. cirq/ops/pauli_measurement_gate_test.py +1 -0
  264. cirq/ops/pauli_string.py +115 -130
  265. cirq/ops/pauli_string_phasor.py +21 -20
  266. cirq/ops/pauli_string_phasor_test.py +13 -3
  267. cirq/ops/pauli_string_raw_types.py +1 -0
  268. cirq/ops/pauli_string_test.py +192 -55
  269. cirq/ops/pauli_sum_exponential.py +3 -4
  270. cirq/ops/pauli_sum_exponential_test.py +0 -1
  271. cirq/ops/permutation_gate.py +2 -2
  272. cirq/ops/permutation_gate_test.py +1 -1
  273. cirq/ops/phased_iswap_gate.py +6 -7
  274. cirq/ops/phased_iswap_gate_test.py +21 -5
  275. cirq/ops/phased_x_gate.py +11 -25
  276. cirq/ops/phased_x_gate_test.py +19 -3
  277. cirq/ops/phased_x_z_gate.py +12 -11
  278. cirq/ops/projector.py +4 -5
  279. cirq/ops/qubit_manager.py +2 -1
  280. cirq/ops/qubit_manager_test.py +2 -1
  281. cirq/ops/qubit_order.py +1 -1
  282. cirq/ops/random_gate_channel.py +1 -1
  283. cirq/ops/random_gate_channel_test.py +0 -6
  284. cirq/ops/raw_types.py +146 -50
  285. cirq/ops/raw_types_test.py +37 -3
  286. cirq/ops/state_preparation_channel.py +2 -2
  287. cirq/ops/state_preparation_channel_test.py +2 -1
  288. cirq/ops/swap_gates.py +9 -4
  289. cirq/ops/three_qubit_gates.py +8 -8
  290. cirq/ops/three_qubit_gates_test.py +1 -0
  291. cirq/ops/two_qubit_diagonal_gate.py +4 -3
  292. cirq/ops/uniform_superposition_gate.py +4 -4
  293. cirq/ops/uniform_superposition_gate_test.py +1 -0
  294. cirq/ops/wait_gate.py +6 -8
  295. cirq/protocols/__init__.py +135 -83
  296. cirq/protocols/act_on_protocol.py +1 -1
  297. cirq/protocols/act_on_protocol_test.py +1 -1
  298. cirq/protocols/apply_channel_protocol.py +3 -3
  299. cirq/protocols/apply_mixture_protocol.py +15 -9
  300. cirq/protocols/apply_mixture_protocol_test.py +11 -0
  301. cirq/protocols/apply_unitary_protocol.py +2 -2
  302. cirq/protocols/apply_unitary_protocol_test.py +2 -1
  303. cirq/protocols/approximate_equality_protocol.py +7 -8
  304. cirq/protocols/approximate_equality_protocol_test.py +3 -1
  305. cirq/protocols/circuit_diagram_info_protocol.py +8 -6
  306. cirq/protocols/circuit_diagram_info_protocol_test.py +5 -0
  307. cirq/protocols/commutes_protocol.py +6 -6
  308. cirq/protocols/control_key_protocol.py +1 -1
  309. cirq/protocols/decompose_protocol.py +4 -5
  310. cirq/protocols/decompose_protocol_test.py +2 -1
  311. cirq/protocols/equal_up_to_global_phase_protocol.py +3 -3
  312. cirq/protocols/equal_up_to_global_phase_protocol_test.py +7 -0
  313. cirq/protocols/has_stabilizer_effect_protocol.py +5 -5
  314. cirq/protocols/has_unitary_protocol.py +1 -1
  315. cirq/protocols/has_unitary_protocol_test.py +8 -7
  316. cirq/protocols/hash_from_pickle_test.py +120 -0
  317. cirq/protocols/inverse_protocol.py +1 -1
  318. cirq/protocols/json_serialization.py +14 -1
  319. cirq/protocols/json_serialization_test.py +28 -7
  320. cirq/protocols/json_test_data/BitMaskKeyCondition.json +86 -0
  321. cirq/protocols/json_test_data/BitMaskKeyCondition.repr +7 -0
  322. cirq/protocols/json_test_data/Concat.json +19 -0
  323. cirq/protocols/json_test_data/Concat.repr +1 -0
  324. cirq/protocols/json_test_data/README.md +4 -2
  325. cirq/protocols/json_test_data/SympyCondition.json +60 -15
  326. cirq/protocols/json_test_data/SympyCondition.repr +4 -1
  327. cirq/protocols/json_test_data/_InverseCompositeGate.json +10 -0
  328. cirq/protocols/json_test_data/_InverseCompositeGate.repr +1 -0
  329. cirq/protocols/json_test_data/__init__.py +1 -1
  330. cirq/protocols/json_test_data/sympy.And.json +13 -0
  331. cirq/protocols/json_test_data/sympy.And.repr +1 -0
  332. cirq/protocols/json_test_data/sympy.Indexed.json +18 -0
  333. cirq/protocols/json_test_data/sympy.Indexed.repr +1 -0
  334. cirq/protocols/json_test_data/sympy.IndexedBase.json +9 -0
  335. cirq/protocols/json_test_data/sympy.IndexedBase.repr +1 -0
  336. cirq/protocols/json_test_data/sympy.Not.json +9 -0
  337. cirq/protocols/json_test_data/sympy.Not.repr +1 -0
  338. cirq/protocols/json_test_data/sympy.Or.json +13 -0
  339. cirq/protocols/json_test_data/sympy.Or.repr +1 -0
  340. cirq/protocols/json_test_data/sympy.Xor.json +13 -0
  341. cirq/protocols/json_test_data/sympy.Xor.repr +1 -0
  342. cirq/protocols/kraus_protocol.py +8 -8
  343. cirq/protocols/kraus_protocol_test.py +0 -1
  344. cirq/protocols/measurement_key_protocol.py +1 -1
  345. cirq/protocols/measurement_key_protocol_test.py +7 -7
  346. cirq/protocols/mixture_protocol.py +6 -4
  347. cirq/protocols/mixture_protocol_test.py +21 -13
  348. cirq/protocols/pauli_expansion_protocol.py +1 -0
  349. cirq/protocols/pow_protocol.py +1 -1
  350. cirq/protocols/qasm.py +25 -6
  351. cirq/protocols/qasm_test.py +17 -0
  352. cirq/protocols/qid_shape_protocol.py +2 -2
  353. cirq/protocols/resolve_parameters.py +2 -3
  354. cirq/protocols/resolve_parameters_test.py +2 -1
  355. cirq/protocols/trace_distance_bound.py +1 -1
  356. cirq/protocols/trace_distance_bound_test.py +1 -0
  357. cirq/protocols/unitary_protocol.py +3 -3
  358. cirq/protocols/unitary_protocol_test.py +1 -1
  359. cirq/qis/__init__.py +48 -35
  360. cirq/qis/channels_test.py +0 -9
  361. cirq/qis/clifford_tableau.py +46 -26
  362. cirq/qis/clifford_tableau_test.py +2 -1
  363. cirq/qis/entropy.py +115 -0
  364. cirq/qis/entropy_test.py +43 -0
  365. cirq/qis/measures.py +5 -4
  366. cirq/qis/measures_test.py +7 -0
  367. cirq/qis/noise_utils_test.py +4 -4
  368. cirq/qis/quantum_state_representation.py +1 -1
  369. cirq/qis/states.py +7 -7
  370. cirq/sim/__init__.py +55 -37
  371. cirq/sim/classical_simulator.py +7 -6
  372. cirq/sim/classical_simulator_test.py +3 -1
  373. cirq/sim/clifford/__init__.py +17 -9
  374. cirq/sim/clifford/clifford_simulator.py +5 -4
  375. cirq/sim/clifford/clifford_simulator_test.py +32 -9
  376. cirq/sim/clifford/clifford_tableau_simulation_state.py +1 -1
  377. cirq/sim/clifford/stabilizer_simulation_state.py +1 -1
  378. cirq/sim/clifford/stabilizer_state_ch_form.py +4 -3
  379. cirq/sim/density_matrix_simulator.py +3 -2
  380. cirq/sim/density_matrix_simulator_test.py +12 -4
  381. cirq/sim/density_matrix_utils.py +1 -1
  382. cirq/sim/mux.py +2 -2
  383. cirq/sim/simulation_state.py +4 -5
  384. cirq/sim/simulation_state_base.py +2 -2
  385. cirq/sim/simulation_state_test.py +1 -1
  386. cirq/sim/simulation_utils.py +3 -1
  387. cirq/sim/simulation_utils_test.py +2 -3
  388. cirq/sim/simulator.py +7 -6
  389. cirq/sim/simulator_base.py +5 -5
  390. cirq/sim/simulator_test.py +14 -3
  391. cirq/sim/sparse_simulator.py +4 -3
  392. cirq/sim/sparse_simulator_test.py +17 -9
  393. cirq/sim/state_vector.py +2 -2
  394. cirq/sim/state_vector_simulation_state_test.py +1 -1
  395. cirq/sim/state_vector_simulator.py +4 -4
  396. cirq/sim/state_vector_test.py +27 -32
  397. cirq/study/__init__.py +27 -21
  398. cirq/study/flatten_expressions.py +5 -6
  399. cirq/study/flatten_expressions_test.py +1 -1
  400. cirq/study/resolver.py +14 -11
  401. cirq/study/resolver_test.py +10 -1
  402. cirq/study/result.py +3 -3
  403. cirq/study/sweepable.py +15 -9
  404. cirq/study/sweepable_test.py +27 -0
  405. cirq/study/sweeps.py +65 -10
  406. cirq/study/sweeps_test.py +123 -0
  407. cirq/testing/__init__.py +86 -57
  408. cirq/testing/_compat_test_data/module_a/__init__.py +2 -2
  409. cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py +1 -1
  410. cirq/testing/circuit_compare.py +3 -4
  411. cirq/testing/circuit_compare_test.py +7 -8
  412. cirq/testing/consistent_act_on.py +3 -3
  413. cirq/testing/consistent_channels_test.py +2 -1
  414. cirq/testing/consistent_controlled_gate_op.py +3 -2
  415. cirq/testing/consistent_controlled_gate_op_test.py +2 -3
  416. cirq/testing/consistent_decomposition.py +1 -1
  417. cirq/testing/consistent_decomposition_test.py +1 -2
  418. cirq/testing/consistent_pauli_expansion_test.py +1 -1
  419. cirq/testing/consistent_phase_by.py +1 -1
  420. cirq/testing/consistent_phase_by_test.py +1 -2
  421. cirq/testing/consistent_protocols.py +11 -11
  422. cirq/testing/consistent_protocols_test.py +4 -5
  423. cirq/testing/consistent_qasm.py +8 -12
  424. cirq/testing/consistent_qasm_test.py +1 -1
  425. cirq/testing/consistent_resolve_parameters.py +2 -1
  426. cirq/testing/consistent_specified_has_unitary_test.py +1 -1
  427. cirq/testing/consistent_unitary.py +3 -1
  428. cirq/testing/consistent_unitary_test.py +3 -3
  429. cirq/testing/devices.py +1 -1
  430. cirq/testing/devices_test.py +1 -0
  431. cirq/testing/equals_tester.py +2 -4
  432. cirq/testing/equals_tester_test.py +6 -5
  433. cirq/testing/equivalent_basis_map.py +1 -0
  434. cirq/testing/equivalent_basis_map_test.py +0 -1
  435. cirq/testing/gate_features_test.py +5 -0
  436. cirq/testing/json.py +4 -4
  437. cirq/testing/lin_alg_utils_test.py +1 -1
  438. cirq/testing/order_tester.py +1 -1
  439. cirq/testing/order_tester_test.py +1 -1
  440. cirq/testing/pytest_utils.py +57 -0
  441. cirq/testing/pytest_utils_test.py +35 -0
  442. cirq/testing/random_circuit.py +2 -2
  443. cirq/testing/random_circuit_test.py +2 -2
  444. cirq/testing/routing_devices_test.py +2 -1
  445. cirq/testing/sample_circuits.py +1 -1
  446. cirq/testing/sample_gates.py +5 -4
  447. cirq/testing/sample_gates_test.py +2 -2
  448. cirq/transformers/__init__.py +101 -82
  449. cirq/transformers/align.py +12 -1
  450. cirq/transformers/align_test.py +13 -0
  451. cirq/transformers/analytical_decompositions/__init__.py +27 -24
  452. cirq/transformers/analytical_decompositions/clifford_decomposition.py +2 -1
  453. cirq/transformers/analytical_decompositions/clifford_decomposition_test.py +1 -1
  454. cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +1 -1
  455. cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py +2 -0
  456. cirq/transformers/analytical_decompositions/cphase_to_fsim.py +1 -1
  457. cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py +1 -1
  458. cirq/transformers/analytical_decompositions/pauli_string_decomposition.py +2 -2
  459. cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py +4 -4
  460. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +99 -24
  461. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py +105 -14
  462. cirq/transformers/analytical_decompositions/single_qubit_decompositions.py +1 -1
  463. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py +1 -1
  464. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py +1 -0
  465. cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +3 -4
  466. cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py +1 -1
  467. cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py +2 -1
  468. cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py +2 -1
  469. cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +5 -6
  470. cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py +2 -2
  471. cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +1 -1
  472. cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py +1 -2
  473. cirq/transformers/analytical_decompositions/two_qubit_to_ms.py +2 -2
  474. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +2 -2
  475. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py +2 -1
  476. cirq/transformers/drop_empty_moments.py +1 -0
  477. cirq/transformers/drop_negligible_operations.py +1 -0
  478. cirq/transformers/dynamical_decoupling.py +255 -43
  479. cirq/transformers/dynamical_decoupling_test.py +730 -17
  480. cirq/transformers/eject_phased_paulis.py +29 -15
  481. cirq/transformers/eject_phased_paulis_test.py +3 -8
  482. cirq/transformers/eject_z.py +3 -2
  483. cirq/transformers/eject_z_test.py +3 -3
  484. cirq/transformers/gauge_compiling/__init__.py +25 -9
  485. cirq/transformers/gauge_compiling/cphase_gauge.py +146 -0
  486. cirq/transformers/gauge_compiling/cphase_gauge_test.py +42 -0
  487. cirq/transformers/gauge_compiling/cz_gauge.py +4 -4
  488. cirq/transformers/gauge_compiling/gauge_compiling.py +245 -6
  489. cirq/transformers/gauge_compiling/gauge_compiling_test.py +107 -2
  490. cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py +39 -2
  491. cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py +10 -1
  492. cirq/transformers/gauge_compiling/iswap_gauge.py +2 -2
  493. cirq/transformers/gauge_compiling/spin_inversion_gauge.py +2 -2
  494. cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +23 -5
  495. cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py +3 -2
  496. cirq/transformers/heuristic_decompositions/__init__.py +3 -3
  497. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +2 -1
  498. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py +1 -1
  499. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +4 -4
  500. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py +4 -4
  501. cirq/transformers/insertion_sort.py +64 -0
  502. cirq/transformers/insertion_sort_test.py +34 -0
  503. cirq/transformers/measurement_transformers.py +14 -1
  504. cirq/transformers/measurement_transformers_test.py +35 -0
  505. cirq/transformers/merge_k_qubit_gates.py +2 -2
  506. cirq/transformers/merge_single_qubit_gates.py +1 -1
  507. cirq/transformers/merge_single_qubit_gates_test.py +1 -1
  508. cirq/transformers/noise_adding.py +115 -0
  509. cirq/transformers/noise_adding_test.py +54 -0
  510. cirq/transformers/optimize_for_target_gateset.py +1 -1
  511. cirq/transformers/optimize_for_target_gateset_test.py +3 -2
  512. cirq/transformers/qubit_management_transformers.py +1 -1
  513. cirq/transformers/randomized_measurements.py +171 -0
  514. cirq/transformers/randomized_measurements_test.py +68 -0
  515. cirq/transformers/routing/__init__.py +14 -5
  516. cirq/transformers/routing/initial_mapper.py +1 -1
  517. cirq/transformers/routing/initial_mapper_test.py +1 -0
  518. cirq/transformers/routing/line_initial_mapper.py +3 -2
  519. cirq/transformers/routing/mapping_manager.py +2 -2
  520. cirq/transformers/routing/mapping_manager_test.py +2 -2
  521. cirq/transformers/routing/route_circuit_cqc.py +3 -2
  522. cirq/transformers/routing/route_circuit_cqc_test.py +2 -1
  523. cirq/transformers/routing/visualize_routed_circuit.py +1 -0
  524. cirq/transformers/routing/visualize_routed_circuit_test.py +1 -0
  525. cirq/transformers/stratify.py +2 -2
  526. cirq/transformers/synchronize_terminal_measurements.py +2 -1
  527. cirq/transformers/target_gatesets/__init__.py +7 -5
  528. cirq/transformers/target_gatesets/compilation_target_gateset.py +16 -3
  529. cirq/transformers/target_gatesets/compilation_target_gateset_test.py +2 -0
  530. cirq/transformers/target_gatesets/cz_gateset.py +5 -1
  531. cirq/transformers/target_gatesets/cz_gateset_test.py +23 -2
  532. cirq/transformers/target_gatesets/sqrt_iswap_gateset.py +1 -1
  533. cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py +3 -2
  534. cirq/transformers/transformer_api.py +5 -4
  535. cirq/transformers/transformer_api_test.py +11 -3
  536. cirq/transformers/transformer_primitives.py +9 -31
  537. cirq/transformers/transformer_primitives_test.py +6 -5
  538. cirq/value/__init__.py +51 -30
  539. cirq/value/abc_alt.py +1 -2
  540. cirq/value/angle.py +2 -0
  541. cirq/value/classical_data.py +1 -0
  542. cirq/value/condition.py +149 -3
  543. cirq/value/condition_test.py +254 -0
  544. cirq/value/digits.py +1 -1
  545. cirq/value/duration.py +4 -4
  546. cirq/value/duration_test.py +2 -1
  547. cirq/value/linear_dict.py +85 -24
  548. cirq/value/linear_dict_test.py +94 -3
  549. cirq/value/measurement_key.py +9 -2
  550. cirq/value/periodic_value.py +2 -3
  551. cirq/value/periodic_value_test.py +5 -0
  552. cirq/value/probability.py +1 -0
  553. cirq/value/random_state.py +1 -1
  554. cirq/value/timestamp.py +2 -4
  555. cirq/value/timestamp_test.py +2 -1
  556. cirq/value/type_alias.py +2 -2
  557. cirq/value/value_equality_attr.py +14 -2
  558. cirq/value/value_equality_attr_test.py +1 -1
  559. cirq/vis/__init__.py +9 -6
  560. cirq/vis/density_matrix.py +1 -1
  561. cirq/vis/density_matrix_test.py +2 -5
  562. cirq/vis/heatmap.py +49 -12
  563. cirq/vis/heatmap_test.py +168 -4
  564. cirq/vis/histogram.py +1 -1
  565. cirq/vis/histogram_test.py +1 -2
  566. cirq/vis/state_histogram.py +7 -5
  567. cirq/vis/state_histogram_test.py +2 -2
  568. cirq/work/__init__.py +19 -13
  569. cirq/work/collector.py +2 -2
  570. cirq/work/observable_grouping.py +2 -2
  571. cirq/work/observable_measurement.py +3 -3
  572. cirq/work/observable_measurement_data.py +5 -2
  573. cirq/work/observable_measurement_test.py +8 -8
  574. cirq/work/observable_readout_calibration.py +2 -2
  575. cirq/work/observable_readout_calibration_test.py +2 -1
  576. cirq/work/observable_settings.py +8 -7
  577. cirq/work/observable_settings_test.py +3 -2
  578. cirq/work/pauli_sum_collector.py +1 -1
  579. cirq/work/sampler.py +8 -20
  580. cirq/work/sampler_test.py +4 -3
  581. cirq/work/zeros_sampler.py +1 -1
  582. cirq_core-1.5.0.dist-info/METADATA +125 -0
  583. {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.5.0.dist-info}/RECORD +586 -552
  584. {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.5.0.dist-info}/WHEEL +1 -1
  585. cirq/experiments/grid_parallel_two_qubit_xeb.py +0 -62
  586. cirq/protocols/json_test_data/GridParallelXEBMetadata.json +0 -119
  587. cirq/protocols/json_test_data/GridParallelXEBMetadata.repr +0 -1
  588. cirq_core-1.4.0.dev20240529225110.dist-info/METADATA +0 -50
  589. {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.5.0.dist-info}/LICENSE +0 -0
  590. {cirq_core-1.4.0.dev20240529225110.dist-info → cirq_core-1.5.0.dist-info}/top_level.txt +0 -0
@@ -1,432 +1,438 @@
1
- cirq/__init__.py,sha256=dEwUzkNCNrL4qNyln6GUUrk7vGxY8OXNG9lk_C2gi6w,15796
2
- cirq/_compat.py,sha256=2tkJ50ID2PXzmMNuTfQrsZqqRSblTmfu3Y7g742gojs,29342
3
- cirq/_compat_test.py,sha256=Qq3ZcfgD-Nb81cEppQdJqhAyrVqXKtfXZYGXT0p-Wh0,34718
1
+ cirq/__init__.py,sha256=rUfvQDtywCak2mJQoihOSyRjGxQahK-YOv909us0w5M,28132
2
+ cirq/_compat.py,sha256=_DknO27XngcjEidNApRsCzLUWDS4QmDk9M12BaqP5Is,29531
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=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
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=uD3BoyTyKJtRHlm-mDfuahYwc4N9ACffGyXF6freN8o,40
8
- cirq/_version_test.py,sha256=yYS6xm5-nuBRQJa9R3n41WdvFtVyY7Lb5Q8bea3VgBI,133
7
+ cirq/_version.py,sha256=3AR5d4W_SmKL4e2bmbXFa_Co0ckwv94Gh3kz2vqP4i8,1188
8
+ cirq/_version_test.py,sha256=QQkkv07sqUUf8BRGtYw8rKpWEuLmaiy4sWV42EvCd7s,129
9
9
  cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
10
- cirq/json_resolver_cache.py,sha256=ytePZtNZgKjOF2NiVpUTuotB-JKZmQNOFIFdvXqsxHw,13271
10
+ cirq/json_resolver_cache.py,sha256=YVamU72nCUT5dG0bhAvRKVX5lXcZMNTwP3H36v-cYag,13615
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
- cirq/type_workarounds.py,sha256=-qyat6dmVoz8z76I-JLrnK1vAXmY9G1Qa3LYjQ4rJlI,959
13
- cirq/circuits/__init__.py,sha256=UPBO-WG6VodQWDkYgJdBzKK8k9CsxHFGIENM95vh7ac,1117
14
- cirq/circuits/_block_diagram_drawer.py,sha256=06ceNV01cMx4irIGYnztfLt_HDNhK3AwfsiNh686hjU,9510
15
- cirq/circuits/_block_diagram_drawer_test.py,sha256=g21rH5iZgqf8L5ruDh0NR13B-7-0O7IGQsNp03EhRHo,11391
16
- cirq/circuits/_box_drawing_character_data.py,sha256=QLoCXwcLL7091RdxEKO259goxt4RtbZK7G-ivCoB4LA,12116
17
- cirq/circuits/_box_drawing_character_data_test.py,sha256=XO94z0piwZRHaNZHTf-5tKHQ4MKcDruMeRIKdT8GbYA,1624
18
- cirq/circuits/_bucket_priority_queue.py,sha256=hxFuii2fKD8G6EKT_aVLEsA7FmSfqFXPwIbA0KsoSC4,6745
19
- cirq/circuits/_bucket_priority_queue_test.py,sha256=t6u_hG7K2e2WKWrgCsKxNRtp4ghKwiCrp0_WSY0W25k,5288
20
- cirq/circuits/circuit.py,sha256=iYdNez1apyEOrLWQIx6qT89Yddl083t6iWlocB74apA,114406
21
- cirq/circuits/circuit_operation.py,sha256=D4u8jDD4fGOca1xnZPN1obuKTIouXENUfnxOF2JrwgU,34375
22
- cirq/circuits/circuit_operation_test.py,sha256=_0iQJ3h_dnQcQmbGRZbc-NqdglJTXantbj72ggqLKNE,44724
23
- cirq/circuits/circuit_test.py,sha256=_hb29zDdLaEuUTROtVc5VKpmtlsHQGFyDlKQ2Nxqc3s,160103
24
- cirq/circuits/frozen_circuit.py,sha256=_0SkmIiQ4UjIug-k_iO00ulDFoFnxmAHvXX2I2HHN8k,9262
12
+ cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
+ cirq/circuits/_block_diagram_drawer.py,sha256=XuqIQjyHc-B7TaSzuKJe9ZFwzItjxVGdmZjTDw0d2T0,9509
14
+ cirq/circuits/_block_diagram_drawer_test.py,sha256=qEWEJ9gCYunxgJpXeZweu3fEnSBSWqGfre9fw0FO7zA,11391
15
+ cirq/circuits/_box_drawing_character_data.py,sha256=5Ldk4XlJRacmyvsfcl2KhlMdXqO11uqJ650P99xjSuc,12115
16
+ cirq/circuits/_box_drawing_character_data_test.py,sha256=b3BN-iVUkQENi2Ja-RYQ_-_lNcKgwV1F9DyalXxiI10,1624
17
+ cirq/circuits/_bucket_priority_queue.py,sha256=ml98_VAwGXzASUS0hE7lT7PeA0Hugz-qAZtjtAdBsvw,6744
18
+ cirq/circuits/_bucket_priority_queue_test.py,sha256=1FnB39rJKODvXP3SpSD6B8Tu02yQWCWOUQSPmR-22Pw,5288
19
+ cirq/circuits/circuit.py,sha256=reDLqLMj3SZM-z-7vLZhvy4XRTnmkK0HigbknFtMDLA,119141
20
+ cirq/circuits/circuit_operation.py,sha256=yOB9cWP2H8c8AyDrSj9FMZWsfvv_oa4z1MeaZzi_5Ws,36452
21
+ cirq/circuits/circuit_operation_test.py,sha256=i_NZ5R9PhxjNK17DUY21rL_7O2JgVtkpn9YnWI-Ax3M,48598
22
+ cirq/circuits/circuit_test.py,sha256=KjRYRwUgC65vxf_3hdZLgid7sNm5Fn_lcIp15Q4yWyk,162757
23
+ cirq/circuits/frozen_circuit.py,sha256=TLjw_UmbnV-Lhtn63RqTnCBbQiZPvsJdS-s99-aMRGI,9232
25
24
  cirq/circuits/frozen_circuit_test.py,sha256=rHyii8hLhOQ6jdA8dC1OcYPGnyeBC4uY5Q53XspkkCk,4133
26
- cirq/circuits/insert_strategy.py,sha256=L0OLXuo24TtBfdJGOAG2PsVDMrbvQl4iN5lUk6IPuyo,2851
27
- cirq/circuits/insert_strategy_test.py,sha256=dgz13_ssa_GWqzzx5W4G4sJJw4SUHC3-g3K0_Z4TRiA,686
28
- cirq/circuits/moment.py,sha256=KirArxosPcoin5yxfnG4tWVzB0A6OjZGws_LJcK5Sfo,25864
29
- cirq/circuits/moment_test.py,sha256=SAZR-BxNiFaYaPLKLN59LCBqxvBMrVJWa-js1kfhOZA,26905
30
- cirq/circuits/optimization_pass.py,sha256=uw3ne0-ebZo6GNjwfQMuQ3b5u9RCgyaXRfhpbljlxao,6468
31
- cirq/circuits/optimization_pass_test.py,sha256=eQB0NBJ9EvqjgSFGQMgaHIh5niQhksdnvqSXhsj3nOg,5947
32
- cirq/circuits/qasm_output.py,sha256=3cN7m0-pztNqkJTzLZEWt0aD-CC008WItz94Abut9H4,12032
33
- cirq/circuits/qasm_output_test.py,sha256=pQjA8bsiT9MryXZqiWOiN5uIYsI5k22XowcZx0bcKDk,12539
34
- cirq/circuits/text_diagram_drawer.py,sha256=ctZUG5fk2pf4XswHTJG4kteQYzzH0TefL9JWUagLJvc,17232
35
- cirq/circuits/text_diagram_drawer_test.py,sha256=2bSoBIeQajRi0aQxqYDpbMlT2eqpx_f-Cmg9XO6A9Jk,10750
36
- cirq/contrib/__init__.py,sha256=q8NwuMeqIzKaLsO9L6eKuZbGpldBsvaiIPWou37sZjo,1006
37
- cirq/contrib/json.py,sha256=zX1l2tVWECSub076q8BmTLEZGl5FUS3Hnf-L2hQblsg,753
38
- cirq/contrib/json_test.py,sha256=I9t_WpBfTBaIxKVo0HjK806V_FguTSBR95Y2gu-qYBo,1117
39
- cirq/contrib/acquaintance/__init__.py,sha256=ggeEgdL-XaBQeEiAcKgknHN4WEwWSu7jAe24GNgG3-o,2233
40
- cirq/contrib/acquaintance/bipartite.py,sha256=_UcKNBiCg9j6XcLDINV41KPWKIzEzpmDRd6MlqQOufI,6496
41
- cirq/contrib/acquaintance/bipartite_test.py,sha256=hjdJfjDsd2pnUdpph5n9kTWEclSvocsAEmnTbBT21Ak,15648
42
- cirq/contrib/acquaintance/devices.py,sha256=1hWW9_WF5TZQXFMu9-yXNTk3GfSETyjikNboPQvPYWk,3031
43
- cirq/contrib/acquaintance/devices_test.py,sha256=icl_9SOp8PuZu7msfW5H7zP7_-zfTwTjyPPkajDu-w4,1088
44
- cirq/contrib/acquaintance/executor.py,sha256=nshs5RdmsRhOhYdrr7htXURHdc_S5EL950jAref4k3I,8589
45
- cirq/contrib/acquaintance/executor_test.py,sha256=ir-LKuQTfHm5WCcjmLriJ8qCT89YnltLpFx89Q3bF_I,7837
46
- cirq/contrib/acquaintance/gates.py,sha256=c1IWi2n-ppRT5lzsdI-V1FwT3FPyhLK4ttk_uNk-dM4,13432
47
- cirq/contrib/acquaintance/gates_test.py,sha256=5FVX7zAtZSUqDPNsXk_Wm7LwDmHIApzgNhjAIX1IQBM,15010
48
- cirq/contrib/acquaintance/inspection_utils.py,sha256=962Nmgqxgllg8LiTpBLN9g25CXAAn1z8yydnSf3O9xk,2587
49
- cirq/contrib/acquaintance/inspection_utils_test.py,sha256=N5WyOkZaP7Vy0DRoiq6ZtQ1S99j5F7XyRPnyRLJqmtM,1250
50
- cirq/contrib/acquaintance/mutation_utils.py,sha256=HM9mjXufOYRrCO1ydusiJuCh4RnzJkB0876kDilMsqg,4732
25
+ cirq/circuits/insert_strategy.py,sha256=JU_KPe74P3OpbVQei5iDPgEpOjpts5JFKXU5Xy1QYHE,3211
26
+ cirq/circuits/insert_strategy_test.py,sha256=ttqhNP1G1jrtwFd0KIlqkTj_1C8F1K7Jqnaz0rEWAiE,1185
27
+ cirq/circuits/moment.py,sha256=g6gPgOvRx7sVcxlmjzPvd7UkdFlElCw7bHrahWhrK5M,25924
28
+ cirq/circuits/moment_test.py,sha256=672QcwLSTuuJzXIISH9UyMIOX89aYZZD3odvhyzhxLo,31116
29
+ cirq/circuits/optimization_pass.py,sha256=8R3AqhL55giV4JPAX052r5hY-erG562Uv_SoNHHXeQU,6499
30
+ cirq/circuits/optimization_pass_test.py,sha256=F1FB2_Jx5ZtwSyxMl2Y5ihA2L-ik60kjjQ4Ou8ebWX8,5887
31
+ cirq/circuits/qasm_output.py,sha256=Kp0BWiMpCUxt5zXcE-tynU7R8U7hwCHG-hnjzfzeBiM,13120
32
+ cirq/circuits/qasm_output_test.py,sha256=o4A24t-gcQF6EptY5zQE4SoGjycSQAyMJux1no7FPsk,13840
33
+ cirq/circuits/text_diagram_drawer.py,sha256=EGnSC4lB12NdgAPeKWc6yaBUr1_bbcd1hhff4zm1GZM,16610
34
+ cirq/circuits/text_diagram_drawer_test.py,sha256=CAp28ZagRpOZjRJ35uGQR7QmKxSLl65lgq8Vx8GKsjg,10751
35
+ cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
36
+ cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
37
+ cirq/contrib/json_test.py,sha256=GKP_XKouLW1WPotgUDyHvdaOagrHnwdq2MVbhaseeQw,1117
38
+ cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
39
+ cirq/contrib/acquaintance/bipartite.py,sha256=8PsPAo2POlrQ4sw6pnUu_WOiGL9VD1ASCy8rkpm2XnI,6545
40
+ cirq/contrib/acquaintance/bipartite_test.py,sha256=_Sx75GV9DEbyZB-zQ9mCj--SCr0aGVBFzo-YIwq1E6I,16064
41
+ cirq/contrib/acquaintance/devices.py,sha256=5wnuG4IFrva4J3muqf81iOS3zlxuEZ81V2UA06PeB6s,3064
42
+ cirq/contrib/acquaintance/devices_test.py,sha256=RnNwPp1PHNrcygibMdrJEMViBCm4eTXZgI0PUqAeoCM,1207
43
+ cirq/contrib/acquaintance/executor.py,sha256=a6SIaykIfZaIlxHxlgpwzqfvUb46O2V2i_qEJsEGlcI,8661
44
+ cirq/contrib/acquaintance/executor_test.py,sha256=VxmGijgjAjuy6s-H5L9Ynu4CxYXFr9rPc2FfuoQjdXs,7903
45
+ cirq/contrib/acquaintance/gates.py,sha256=WiIbIEvzIsw4ny9PMaL0yMSu9JSCJXq9TarWGpq41zs,13542
46
+ cirq/contrib/acquaintance/gates_test.py,sha256=m_QMKqElKXqDbtviwJcgwYf8E1ZM7jcFmb2iPbAIrGM,15010
47
+ cirq/contrib/acquaintance/inspection_utils.py,sha256=yTJ-ferTfvLst8Lm6mchsQV5qgFI-D6LtnQD_dG-B9Q,2636
48
+ cirq/contrib/acquaintance/inspection_utils_test.py,sha256=_ksOZ1fBkRsylRWKHWa2-sNgqJdlQK5mb5xZx57--dI,1426
49
+ cirq/contrib/acquaintance/mutation_utils.py,sha256=q-aikSKFLGISgTNXYDGinFUW30mNLPjqTj00-SeDU80,4754
51
50
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=r_0IdvjSqres1KWs4o4HEb8a5WATovIBOUIAjVeIzns,7848
52
- cirq/contrib/acquaintance/optimizers.py,sha256=xAdmecOLiO4-GDO8v5O3uYNAjjSKSDk8_vz7rm7Mjm4,2092
53
- cirq/contrib/acquaintance/optimizers_test.py,sha256=-MBJT0JkvxjEwknHA6Q6PoAzrC_JwRBjAfpMwQjWoj0,2455
54
- cirq/contrib/acquaintance/permutation.py,sha256=xNd03J9l0nUB1gngdmV4rPrKq-_MjsowKau8AnopmzQ,11836
55
- cirq/contrib/acquaintance/permutation_test.py,sha256=ASeOCXr4oiIK31L31uWsDokZemp5fHoMtWrPVEZcfmk,11503
56
- cirq/contrib/acquaintance/shift.py,sha256=xeTtvP3rFFsghjESwBOTx2Fd4qVUjG-sWY9LhrDESj4,3039
57
- cirq/contrib/acquaintance/shift_swap_network.py,sha256=mK0p-XMxi3a56X05D8zzlUnbDRar5D5Ry916Vh6lWGg,5263
51
+ cirq/contrib/acquaintance/optimizers.py,sha256=ZPsZW-ZakNcLMRATpVkNuBT7vBd55XqHUU3dtzMO0rw,2121
52
+ cirq/contrib/acquaintance/optimizers_test.py,sha256=R_r_G7bBPBo_8qOjKgZsEBLMihZO6jlZ0yor-U25vBE,2455
53
+ cirq/contrib/acquaintance/permutation.py,sha256=S9ngL-kIkTle0gBYbp-OzIxTUQl7Hp5C_w4UVd5apUg,11832
54
+ cirq/contrib/acquaintance/permutation_test.py,sha256=6Q9s-qvEoLbDEmoPrtyXv_57uIDzggooJEcqY3mRzZg,11503
55
+ cirq/contrib/acquaintance/shift.py,sha256=ZZ5Krvgx5OOLhr5qLOVvP0G_dvGMgy-fIrJPxIgY10U,3107
56
+ cirq/contrib/acquaintance/shift_swap_network.py,sha256=WNWUZtUmyzzt3xZg6g_FgmbTNON5gtU9uKWXjWhB9YU,5311
58
57
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=lFbP4ATIc1R-MXc3xwoC9TKvJOBu2aWo-8KX-M5ti5c,11590
59
58
  cirq/contrib/acquaintance/shift_test.py,sha256=FnY-D0i4CZsE0v1GLf30u_JyIYDtzV06O-Hd0tDnuXc,4555
60
59
  cirq/contrib/acquaintance/testing.py,sha256=auzzDDTTBiE6-0PGnJs-etYwozGqBoJ7JVlPuXcky-E,1582
61
- cirq/contrib/acquaintance/topological_sort.py,sha256=PjMABmMCG_hoD1pHHeQ_xEGA8zbt5_Cpz7Ld0uyBDnQ,2944
60
+ cirq/contrib/acquaintance/topological_sort.py,sha256=u57w5NVj3dddXMUO9N_WcOl0CaDA2nXS3SZtrlLEFCo,2976
62
61
  cirq/contrib/acquaintance/topological_sort_test.py,sha256=rW4Oa3A92kQfw2GQSxSXPIJfhftuh7eaAPJX8nUwcSQ,1672
63
- cirq/contrib/acquaintance/strategies/__init__.py,sha256=3wAyx5RxjkioaQFfpD0EXQYdbJn0Mrv6AfA0w4BgYVk,890
64
- cirq/contrib/acquaintance/strategies/complete.py,sha256=3cWAO7N5fBh0rlAUz2BoIFxPR7Uekkzql4oay9UPZ-E,2165
65
- cirq/contrib/acquaintance/strategies/cubic.py,sha256=wsDNDzeq5hFwYguLX3xvTuR30s6RN5YN5rbO5Yx2q6k,3150
62
+ cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
63
+ cirq/contrib/acquaintance/strategies/complete.py,sha256=Ty3ua6PC80y_J1lyCOmzoRmMmbv-lnjhS00uxChR8to,2194
64
+ cirq/contrib/acquaintance/strategies/cubic.py,sha256=9ynZcuGJxG6eH3XZn_8hrDTGPzoWgbaeT7Z2a5wOHvA,3180
66
65
  cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=0ZgDl8uNv9lG1TxQSaCEjNGgRFMeaoETzKSpnhBlR8Y,1547
67
- cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=V1XQE9hkVACcYo5Ar-TBLzxuovio-QIbwSfJLPtdBpI,2559
66
+ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=Cr7VeT4k8SUoZGdLtw9uw355uQV1fFT161rAscjZDDE,2583
68
67
  cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=zIMocEKc6rcCSJlyBsI2EJqiNY_iLVrNqruzqiQFDMk,2129
69
- cirq/contrib/bayesian_network/__init__.py,sha256=FhDrnKmiOzWmFbOOdMk8M3qNe81N7cuEsxe92o6Gg6c,669
70
- cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=T44ddSF3Lcl5GCyLsf-4auWgz-hEjUFMIi3OZuFqRA4,9137
68
+ cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
+ cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=6MKRJLzXWTSUBQ3PPIxYY5ikBwH7MVu7DBAADgY0o-Y,9182
71
70
  cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=d263Wm3yGedN87SraSlea9OMb0yy3ZkNRnaEYZd8AcU,5876
72
- cirq/contrib/circuitdag/__init__.py,sha256=YE8_jiIhGZ6_W13QyCLiCuqDgNhVyHgRxH_8gj6pNe0,721
73
- cirq/contrib/circuitdag/circuit_dag.py,sha256=cZo6yW8b09-p8L8F5Z7aQQyZ5e5vnFXnn9XrWRD3dok,6977
74
- cirq/contrib/circuitdag/circuit_dag_test.py,sha256=o3hMLGTlVd7u04Dl-hCyHbGvVrwGpfyUSjTfNriV9I4,8222
71
+ cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
+ cirq/contrib/circuitdag/circuit_dag.py,sha256=chqf4O67gSq56uCSVMj8-n6eHGBP6NYZN9oYNI29p9U,6888
73
+ cirq/contrib/circuitdag/circuit_dag_test.py,sha256=Daj480Yk0eisOsQXvYITy2kyLSQJ7g5AHirZzNs_dYw,8222
75
74
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=xSQLAyAQSghi5nbrGbJqoBnDKC2twBidpf77F1PUuss,3198
77
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=ZKtvswStMBzJHtqSNMOQWuPHfD0C3WiGFTjTj3TUON4,7686
78
- cirq/contrib/graph_device/__init__.py,sha256=f1ie9MSnebIniJ2W2x60T3U9uYgooaOfSNA87k9-tdE,1087
79
- cirq/contrib/graph_device/graph_device.py,sha256=SVOwD5tRIXzI1IcpENojC8GP6NUligbXN5JLGdXGa2o,7972
80
- cirq/contrib/graph_device/graph_device_test.py,sha256=ocCI2O3YTPWM2AXuhQI6uQwukQGeRhT5VkEWDmjeqFU,7204
75
+ cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=VMF_A0_2FYTR89PwgQl-l77U3e0n6PCyjLD-YA5g0NM,3218
76
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=AJgs1HIkXQvoJ2_ll4oSrT2dwzqFlP4By5B-nYHqUDg,7806
77
+ cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
+ cirq/contrib/graph_device/graph_device.py,sha256=Hi7KZnV_lY_qNhPFyrzdbqvpTHYu7XNc2RC0w96KdV0,7942
79
+ cirq/contrib/graph_device/graph_device_test.py,sha256=2Z0jTprCZL4V5-gnOblOpz3p6IRsei1VCNxqLWoWnSo,7203
81
80
  cirq/contrib/graph_device/hypergraph.py,sha256=6hdKri90qqU6ujmR2y8nVyk2pr5wHvFhHAhLYbg5T7o,4716
82
- cirq/contrib/graph_device/hypergraph_test.py,sha256=M7l5vIDGHrn1FU3_MNoeuBgbB6zhERlEp437wqrNqNM,3768
81
+ cirq/contrib/graph_device/hypergraph_test.py,sha256=ccwPqqHOWq-ZJ4abhyDrCjXQdrmY1Nb6lP9G_jdi6pw,3769
83
82
  cirq/contrib/graph_device/uniform_graph_device.py,sha256=ymG7X-wLzZE9hBc9P7Kixf4_Mg4ii6jxCWDiH2GJ3uI,2358
84
83
  cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=b49Kx1pH_VvD5m-DV2TSI1qe2ZjQQaB76HJVboGyRYs,1616
85
84
  cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
86
85
  cirq/contrib/hacks/disable_validation.py,sha256=wJEzMoK3qDzhIFDUOIgdKqNDcHl74MJAi0OJuCjl82k,1419
87
86
  cirq/contrib/hacks/disable_validation_test.py,sha256=nuDfktj3bD7oFlae3R0Jf_qcAo87Z9CphYxi9lFQ1J4,1711
88
- cirq/contrib/noise_models/__init__.py,sha256=KSaocWmAv9R7ZemeKRBIhxEviwqtL_cQ0wfCetzfGy8,804
89
- cirq/contrib/noise_models/noise_models.py,sha256=qFisVwg94-YqGoru5z5bqy_9_PHBI124rI4Gy34ogHI,7658
87
+ cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
88
+ cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCYgow7tl8Pjf5Q,7674
90
89
  cirq/contrib/noise_models/noise_models_test.py,sha256=nELHWYWbRp6RCurjTSEAumpZPMY2gNN3S4Mhho3pwJ0,10488
91
- cirq/contrib/paulistring/__init__.py,sha256=AZLO1k7e-Ao6wain2jO7YikkW9VIv6eM7jnLLYPlnrI,1306
92
- cirq/contrib/paulistring/clifford_optimize.py,sha256=q2lTMivOGoxncxnQ8CxnwlV9kSsHzETsTWG705FG9qw,7849
93
- cirq/contrib/paulistring/clifford_optimize_test.py,sha256=IttwXaYRftUb84Sz3fEJFDl9fZ8NwzcbNsuFAJeLR_8,3890
94
- cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7hO3o7dLOC83rf-mzzNBiC49JjZ9dNBqb_m0it4bmgk,6368
90
+ cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
91
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=zeap55snqMQZL7GiDHCdQztgsRlVYlEsAFYmPtrEBwo,7849
92
+ cirq/contrib/paulistring/clifford_optimize_test.py,sha256=Q8REpwDRNEHVYl3yxfzxN7c5dsQLhZSkk842xaKvFrw,3889
93
+ cirq/contrib/paulistring/clifford_target_gateset.py,sha256=7TyfG3ieJluz8AziQKFCT1EgRKLzWu2aoUGAEcLblGw,6369
95
94
  cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=Q_Zqbfp6yVzLabpKLnhIFCnGBaCgsgiABXCuAixwySQ,8668
96
- cirq/contrib/paulistring/optimize.py,sha256=qhBOGxLYovUua_xVqXWgVDPRRmv4VOmyFgKVBVuaYR0,2707
97
- cirq/contrib/paulistring/optimize_test.py,sha256=jie0UomSCIj90TMv3MIi4hd32iTjttQ8-zr7ZDs0tug,3560
95
+ cirq/contrib/paulistring/optimize.py,sha256=ArUWzXYpHq9SE7K9FdqsJ5WJg1ZvHs8DP6zHeJMlp18,2707
96
+ cirq/contrib/paulistring/optimize_test.py,sha256=jdZBpXIialcHQGsp8LIuIpU9M5wBQX9HgnqqiMv5l8U,3559
98
97
  cirq/contrib/paulistring/pauli_string_dag.py,sha256=vg0994h84zHIejSdwfqR-mdwmHOWWOAOOcGuStfKPdk,1106
99
- cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=rlwbuh0DvFv1GlJIqEG1OI_geY77dzxo4bb7qqDkz8M,1125
100
- cirq/contrib/paulistring/pauli_string_optimize.py,sha256=81MDk6rKl0jmw7DXFkA02YmluiXLLznuuCTvca7mVoY,2815
101
- cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=f1BWjg8IGw5ChXFYNVhYKNIrFul8PgvpnOEadkRm-3Q,2897
102
- cirq/contrib/paulistring/recombine.py,sha256=SU6DNj3Y9Wicf9pMP3IYzdWV7Fuz1DA_1v2AtUVnuF4,4355
103
- cirq/contrib/paulistring/recombine_test.py,sha256=hJ083nR67JsIs38TfmCjmBLnhqyG0rBfqtBhTptDlic,1895
104
- cirq/contrib/paulistring/separate.py,sha256=Oecv27vZ6VVLjFkA3KVYA90BGKVqm0MfCJQ8z7XE2-E,3941
98
+ cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=4XQ2IoXx-2g5OUU1SMCLbEvDWoGyDg9FMy3_rTTqfBk,1124
99
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=6sX2EBxwtgZ0F3ANaJVvfO_GEedLBSzu_K8wQA2Zq7c,15674
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=KPFjsf_gzgvN7_hIcNslawcI2RGJKf5F0pDmYTHNAb8,2867
102
+ cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=2wSpV7EVwuuK8wI_Pp31V4vCIkq-CEmQz3EjaFWi8fM,2895
103
+ cirq/contrib/paulistring/recombine.py,sha256=zm5AJL80Xl4hgTe9U1YUEgWfcHZys_YcWNpnv02DcL0,4355
104
+ cirq/contrib/paulistring/recombine_test.py,sha256=ClvleI2hVVBOA7sbi3yTth-fErJQYYCw-6ebAvXt-Ns,1915
105
+ cirq/contrib/paulistring/separate.py,sha256=clzMvgTUyEW1l-fghk3EYUsKZNOBicy1l2MiuZaoc7o,3960
105
106
  cirq/contrib/paulistring/separate_test.py,sha256=FzR78MSHDhNJxizbXreK6u3BeYhT7xn7W1QyHfEZ34E,1267
106
- cirq/contrib/qasm_import/__init__.py,sha256=mCO3gwxM4y95TkTs5P-donhvqbKZsRguOLM8gnXRWJw,706
107
- cirq/contrib/qasm_import/_lexer.py,sha256=busw1Td1pJR-MBNGW-km1i9t2XKEqZTZ3zJnG6vXkmA,2943
108
- cirq/contrib/qasm_import/_lexer_test.py,sha256=iiz-cmIt5hnhHBc4ub4btqHnbi4EPaO7BE7bsJKPet8,4142
109
- cirq/contrib/qasm_import/_parser.py,sha256=qaFAAmHgSqTwcFgzLCYp-tM-UHcdEVlQ3fJSkwQjPdo,19234
110
- cirq/contrib/qasm_import/_parser_test.py,sha256=WEP1xp7IPeXRmRlQn48OHZoQtkSyW5VVSDEFT-C_ae0,27391
107
+ cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
108
+ cirq/contrib/qasm_import/_lexer.py,sha256=RkrbOoT5flW_NEzdxRgv4nbmJ1mWJWlENPf7aPAVM9Y,2929
109
+ cirq/contrib/qasm_import/_lexer_test.py,sha256=q-NgTZMeXFbBa1s6Q66qu0oHHO_f2Tsczn50kVw04Y4,6218
110
+ cirq/contrib/qasm_import/_parser.py,sha256=lcXWip0si5ZI8iCEQ-oQQcKj08pPSDnk2Y3u55JiWys,26052
111
+ cirq/contrib/qasm_import/_parser_test.py,sha256=aQZhZAjE8J7QH7fHk1RoFTKSsOn7PFhLcA4cQDuD7ls,39723
111
112
  cirq/contrib/qasm_import/exception.py,sha256=Wm6cwUPIkNMPjkv-ELpQ-zSoXaiLOddOQ4iYybwuS6I,695
112
113
  cirq/contrib/qasm_import/qasm.py,sha256=CP444IWCw4zlDNA7HxsTJ2xIak4mZhQv62ZiLlUc2zo,914
113
- cirq/contrib/qasm_import/qasm_test.py,sha256=e5b7LVn_6FIFZ6kINqMzJFIjzgtTgutVhgXgX_DcTc0,1861
114
- cirq/contrib/qcircuit/__init__.py,sha256=pvKF0Kpkedp-0L75YwFv0lktMbl82_wsjERnQBOTuq4,874
115
- cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=b1WwGT92nLpVaXpS0J7CB4uruj5ToU_q9V9GFeQ_n0I,2749
114
+ cirq/contrib/qasm_import/qasm_test.py,sha256=Co2ksl14dBvYtBUB9-9DONjjyV7uTdZqNP8k8dBLS-Y,1861
115
+ cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQZaZ0,1000
116
+ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
116
117
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=T1-FVcVgVtHG524MrhheqQ-GfiYY-tvKP3wH5ODcWl8,4560
117
118
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=2CEJ3LCA-kaBeZOAc-2RRG5wEIdQLQVTqBpQ7lV2MWI,2393
118
- cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=cLE5Ikypxpi5anx48FEyDJVh2kv4DbRU-7F0iaaTu4Q,2412
119
- cirq/contrib/qcircuit/qcircuit_test.py,sha256=TJI1mmIEhKkTQ-z1RBvLYU8oMu__x_eLP9aWAicJWjc,6021
120
- cirq/contrib/quantum_volume/__init__.py,sha256=UaZs0ghb0ebjLyHP08B6m6eaDthM31KHKW4jIe3qWpY,880
121
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=8iFqqaS37nSTgYYy5pmQbao-VQuSGjl4TAqmDyCPG58,19597
122
- cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=HREyULIBznCplzjOO8PbQkaMgEp_Ba2u9Pq3triixMk,12398
123
- cirq/contrib/quimb/__init__.py,sha256=XZ2cz9VWpTnJ9Jv3LUEBrDcDPPO1lomMeASPk1mvNHw,600
124
- cirq/contrib/quimb/density_matrix.py,sha256=3hvoXaJdHlJY97v8eCQZS50Xtqi5Z4hS2F4c6W4e7nc,8637
119
+ cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=LwXyz5_Amz0RCE4gQKmPgVp6HLD89htEvawqhuKuY-E,2412
120
+ cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=rpb146aadlvEIHPXPyZqRlSDte2ldlKuanKryJU3cnk,1078
121
+ cirq/contrib/qcircuit/qcircuit_test.py,sha256=g6lbhtkq85hKAwp1-dcU73LpAt0_RcmPKMApxd6X_6E,6041
122
+ cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
123
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=x1nmPFHlp1ZAQC41aYZsHzvBvTRzNZ0azXb-a62ylsQ,19389
124
+ cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=hVwInjcdS9jKPKeDoQ8EnxjwESC_QLvgEOaykwk27rI,12400
125
+ cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
126
+ cirq/contrib/quimb/density_matrix.py,sha256=Q1MOZYFsymYwx5QIi89ydzctO3mj2Hb5fpHujubykHA,8637
125
127
  cirq/contrib/quimb/density_matrix_test.py,sha256=llLw_VwvDuFM3DnpL4i885vSWdNll-2i4B4OZm_abEg,2999
126
128
  cirq/contrib/quimb/grid_circuits.py,sha256=vuMiMaVXsJi-8ZwPnGcKJVVVYlXGi3O-CCwRVwz18qQ,4628
127
129
  cirq/contrib/quimb/grid_circuits_test.py,sha256=0Pl_wea4E_HDa9zaKkmazltFdorB4QsaL2rmMrDv8Sw,3223
128
- cirq/contrib/quimb/mps_simulator.py,sha256=wz7Et54hzoShXtxrXrJ2T2Im5c_hvz7N-SCaAQ3G7qk,24705
129
- cirq/contrib/quimb/mps_simulator_test.py,sha256=6sjC95Ba4WCFoI6zlJmZCYi8GFwI58wkpXQdAoF2Sms,17007
130
- cirq/contrib/quimb/state_vector.py,sha256=kMKNYJ3LLBhQXUCp2jXxCVrp6YLi-PDbrLGoPw7FDqA,6990
130
+ cirq/contrib/quimb/mps_simulator.py,sha256=xEtLqkAHNavyUr8IuBJ-RHi_O4qK9DoIbNSOfZyR8u0,24710
131
+ cirq/contrib/quimb/mps_simulator_test.py,sha256=sg1l7mtJh3HrUQkS3cRv5M0LAQG2RUR0Tr2osjjXG0k,17142
132
+ cirq/contrib/quimb/state_vector.py,sha256=wc4-d6ZH-Mjqhb6vfftaV-YDoMJqJPNqQcNjfGcQTAw,6686
131
133
  cirq/contrib/quimb/state_vector_test.py,sha256=Jwuk_9hL00OA-WDRBafGY16ZHiBJQ18Dn8Bx2l8AAoc,5800
132
- cirq/contrib/quirk/__init__.py,sha256=B8cZpO41P5mzkn-4rLJF9SRoVm-MLBmhuFMxObbICc4,704
133
- cirq/contrib/quirk/export_to_quirk.py,sha256=DLZU0AcDGJhulrYlOcy2_ac9ITiqZ9bBz8a6ZZwFv8Y,3837
134
+ cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
135
+ cirq/contrib/quirk/export_to_quirk.py,sha256=RwxIyLSy0N0DjzKQDb2CcUBRvK7LX5NZ4Vgp4FvIRyw,3837
134
136
  cirq/contrib/quirk/export_to_quirk_test.py,sha256=XDs5VT-i78-Jw4kp4ZjDqNAi1fVzUqrHxVnANj_4l5s,11986
135
137
  cirq/contrib/quirk/linearize_circuit.py,sha256=Q5KEQ6L4QLqPwaLi4G-w06tWLvK5OOi0s209B2dpNqk,1545
136
138
  cirq/contrib/quirk/quirk_gate.py,sha256=aQkCCrMIlShNhKKWWY9rSSknPUVP_XSEmjHqZt1yd2M,7275
137
- cirq/contrib/routing/__init__.py,sha256=-0WzqwyZ9mm4aN9Azrdmd8JZqv0wzjVGpj_RqMnoJFA,1044
138
- cirq/contrib/routing/device.py,sha256=L-yNYiS7MGj05d8BPqKul1KL0Df66hblWff46p9h4Ec,2889
139
- cirq/contrib/routing/device_test.py,sha256=AGAYzYNwao5n2sxfeISJRQ8CISSogKW0M03hZ_C9N6I,1927
140
- cirq/contrib/routing/greedy.py,sha256=Y8ZN6gH87Q1dRCiJliEkHsNQmdzHc5w_zWbs3Ow3Oq0,13899
141
- cirq/contrib/routing/greedy_test.py,sha256=t9vvPWHidkR77-sGZOazfG0yBKHzzx2Io5FWIGfGXrU,2202
142
- cirq/contrib/routing/initialization.py,sha256=nlEPDO11a6OVbqrSyHjRb2HGbo-ATE93au-eXjC1F_4,3699
143
- cirq/contrib/routing/initialization_test.py,sha256=T2EBdTofSkm9gaIMk2GhGgtPcfZX0S580J5IB6Nz5No,2473
139
+ cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
140
+ cirq/contrib/routing/device.py,sha256=bj0AdDB9xnXqzrsSy2C3puVOza0bU-GhImoEr1IBZDw,2889
141
+ cirq/contrib/routing/device_test.py,sha256=fGGN9agUEEusrzCaodsmCWMJE7LBF4Vc9JQ9KL_7b9A,1926
142
+ cirq/contrib/routing/greedy.py,sha256=TBkt0z76Fefs_6rlKE3sQXGqo_96GYsVDixrMiz9Oaw,13929
143
+ cirq/contrib/routing/greedy_test.py,sha256=e658tKz2SSqIUah6r9EMup2yxaaLBz0dz6xRryV_jDE,2238
144
+ cirq/contrib/routing/initialization.py,sha256=M6z2eSiFaoZutZFQXhTJrQKdNVp2TEBtEPfmwGUlZAk,3733
145
+ cirq/contrib/routing/initialization_test.py,sha256=_-nePdUmoE3IdW240GEMBCm0P8rlOWF_ENXb196LlQo,2473
144
146
  cirq/contrib/routing/router.py,sha256=KK4b8eZGxz3OrJVOaj9DnGONLXNGrOv1SBgMWcaa7tQ,2529
145
147
  cirq/contrib/routing/router_test.py,sha256=eIoKRCOMgXdAbxKURgD2rBhlz47AQXqDMbwyqKTz-ng,6330
146
- cirq/contrib/routing/swap_network.py,sha256=w14mOyeXGmZOUvnJFP1Evk89rsqdplGyxqtsAc4HfHU,2375
148
+ cirq/contrib/routing/swap_network.py,sha256=3isu0X6KZS6Fkp6ZdZcSNpqP4IJVjxfY818GCI_kQlk,2385
147
149
  cirq/contrib/routing/swap_network_test.py,sha256=XxbjIvOowvtOVwT2RN4e7YWlLebLm98Ty2TtOI1zXzU,4816
148
- cirq/contrib/routing/utils.py,sha256=P0_PnaGfy4Rm6CVl9FE7RpdZ0YzGtimcW1acduvp5rU,3761
149
- cirq/contrib/routing/utils_test.py,sha256=1oGEDAd70uQ2OrBwbaQd1DYoPcMSZsBQ2l5VLJBtXBM,2021
150
- cirq/contrib/svg/__init__.py,sha256=0F_W8s3NP2KsD5EXvxYHlSTycqcuuJWh2a5INZJ3WSo,116
151
- cirq/contrib/svg/svg.py,sha256=d4_XgDNb8o1lDINVJA44XXunGmK71qTAlqw2sc_UnAo,9366
152
- cirq/contrib/svg/svg_test.py,sha256=gBHXeosNRHzrKWVo-JwhZLguHbksKQSiFwZ8fUXp-a8,2379
153
- cirq/devices/__init__.py,sha256=g5DLukZrmrixOEmpSUgTHbdjYbUbgO5uD2Hjv0fFStQ,1862
154
- cirq/devices/device.py,sha256=9rUZwpbbmqk8AUVH4N4KfJ59j5im7hVgDJAHtN9iH_0,5361
155
- cirq/devices/device_test.py,sha256=v3gT6jrGLLfYnZbTizIaIMkI3s5_xVM3OV9JQchvAxY,1124
156
- cirq/devices/grid_device_metadata.py,sha256=h4Xo_PaiZqQSVUgb1ctVtYYYE2tNik2KQhCgooilZrE,8629
157
- cirq/devices/grid_device_metadata_test.py,sha256=IeOqYOZcUGhB4ivuQW2g0Q9dt-zFA0H6Dav6yv6Lul0,8592
158
- cirq/devices/grid_qubit.py,sha256=gB8PKjYlVjKV1DMr0w5rHKY6L0PlH2U2SZpogPbnF2k,18484
159
- cirq/devices/grid_qubit_test.py,sha256=EzI8dWWnCfYbwruwsKlBzb41lQTA6AEOB2X16oQAz-0,14044
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=H-a6j_jgVZp-14osEyXf2hYjvDDUXa7QBEuA3tJFEG0,11519
163
- cirq/devices/line_qubit_test.py,sha256=_X1ofFHtuo0myFfsu1nlTJf9OLuLWRgZHHW2VG23ERY,9547
164
- cirq/devices/named_topologies.py,sha256=grFXvi0UDHZl1pRyHDWSqjub3xF_Yf7RLXfMAZbyoEA,15790
165
- cirq/devices/named_topologies_test.py,sha256=Nj_tlGmqPH7IVUzpUHPnAPlfUWhSGbZsIHdsLLjxIZs,4736
166
- cirq/devices/noise_model.py,sha256=c00mxBd7ZYw8k-cCoKgF5ePI8WKcPyJS925NarivIRI,11339
150
+ cirq/contrib/routing/utils.py,sha256=8fhDAqpYI8Tn12aTAOHjThzlv7QM0fbVrUWIUXgM9sg,3786
151
+ cirq/contrib/routing/utils_test.py,sha256=WzOWrun1hnvSI6A4pA0jHRzSsiLCjZBa6ARGkYoBK9Y,2020
152
+ cirq/contrib/shuffle_circuits/__init__.py,sha256=AL-V3OaZiaF596WTLlyxDPk0t1WMpTHpQrpRW_A9t48,832
153
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=d7tW83RW5RW3s5NUTXSPlw1-KAk7mll3wrkJkuJXlcI,10844
154
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=TaO33Z5IYLQcFxpaYXbCiTjQdtgeBwL5qhT2TjbHpDA,13847
155
+ cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
156
+ cirq/contrib/svg/svg.py,sha256=QQs--lyGCOY8ynbUIxdJf-i-8X_fU8NRjPIn8ELUnIk,9410
157
+ cirq/contrib/svg/svg_test.py,sha256=VUuaQGu0ZxnWXgbh7BgZYQK4zyaxdPfBrX9ifJ7quUc,2430
158
+ cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
159
+ cirq/devices/device.py,sha256=4MXGo_NHHlysc3aK5a29jgdmjJniA6VCum8tUDW4HFw,5407
160
+ cirq/devices/device_test.py,sha256=9MDFBoTA2AwjhR65Dzmibohecah82yEM7d6w_ujWiSc,1125
161
+ cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
162
+ cirq/devices/grid_device_metadata_test.py,sha256=jUnuBRH_ufJUIp4fA70z7IOXCbIxYAbgfHwYbC-nTJ8,8593
163
+ cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
164
+ cirq/devices/grid_qubit_test.py,sha256=3-H-xzJre0H36J83vF3U2oK1cojZKyv2oJ6UeD57roA,15011
165
+ cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
166
+ cirq/devices/insertion_noise_model_test.py,sha256=YtKV1tI57ux_mXJbAF98TuTk2kpGeBxBQjzWWmkVtY8,3992
167
+ cirq/devices/line_qubit.py,sha256=nZOtTehJq2JuKP4evGQkR-ktMWNizkDPtUQhU1A4u-s,11829
168
+ cirq/devices/line_qubit_test.py,sha256=eu47MSzy5eymIccIuHct8Z_WJeHhZYEARR3yB3NXyO8,10287
169
+ cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
170
+ cirq/devices/named_topologies_test.py,sha256=4YURaPFHN7CAxl9Tve_kysJuEY4O1PPywEMkGGr12m0,4737
171
+ cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
167
172
  cirq/devices/noise_model_test.py,sha256=SAcr-JWCiOeVqQHA209xUPqfmNS9vIbYTor7AxaDQ64,9242
168
- cirq/devices/noise_properties.py,sha256=DyaaNl2VlDFX38x4J7Zu5EMJBIj8bCDUYwSjbkBfXUA,5085
169
- cirq/devices/noise_properties_test.py,sha256=JTJW8_-rI4awd9jTbCgI5l8MpeDsNlXnO53s8QgJw2A,2341
170
- cirq/devices/noise_utils.py,sha256=_9sogndFl7OdcthZg7Q88qvN09mNnoCvZB6HrvtlciY,7165
173
+ cirq/devices/noise_properties.py,sha256=-OLtCTkLzD7w4HcwufftE9iTOkuC9Z9lNZQXXr4Dqxk,5085
174
+ cirq/devices/noise_properties_test.py,sha256=0s8ROjcRyfXeExxGz4gyA79pZARXwHanzOpDpcXEmcM,2341
175
+ cirq/devices/noise_utils.py,sha256=bec6PyBQa5gbPK3C_eYK2ejbAxiLZQbyQNBj6G7g-bA,7165
171
176
  cirq/devices/noise_utils_test.py,sha256=cMSiNoOIPeo40t13b3R2-RrFUITjJhOoKj1UGpmJ3cs,2063
172
- cirq/devices/superconducting_qubits_noise_properties.py,sha256=OtnIrpLmgBhKlJJrUrrcrJIap2qAolqsd8jIug5vtxw,8145
173
- cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=u9B1_4uwRdNzeyW9f-CSbYfsNpxiJ0RtmttvaaNzXkk,12207
174
- cirq/devices/thermal_noise_model.py,sha256=qdWrN7Kqw5dq1rwVUBLY1DDw1nCPADSaxoLtGHC-zW4,11608
177
+ cirq/devices/superconducting_qubits_noise_properties.py,sha256=JdMWh7Lf0qgcEpeGyg4YpDA2_oVYq4AxBIUnfFWbDTo,8145
178
+ cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=znS1R4chjxZeUFb4W2GdhpWTwHDcdXpIJgIDHCXA5Tg,12207
179
+ cirq/devices/thermal_noise_model.py,sha256=3vD8OGIZMjs0t-De0DwYHIqCxSEcAXppDejVCIHZKsw,11609
175
180
  cirq/devices/thermal_noise_model_test.py,sha256=ox9b0BoHH6d73CjWWI1fIAGd_o3r-4qy8v2ggUwc-pw,12246
176
- cirq/devices/unconstrained_device.py,sha256=cnwn1caPDj7GnBf9_GYX6jMCTCWi4q5g3RkLaVKnDLY,1525
177
- cirq/devices/unconstrained_device_test.py,sha256=OF9E2m1HPpq6hyrNAwFGWaNOpQ3H2efAEj6V8Y-hRW4,832
178
- cirq/experiments/__init__.py,sha256=sI0GTT5amnGanHePsJxM5Ljd9Fc_K1rm7C5Uuj68rE8,2356
181
+ cirq/devices/unconstrained_device.py,sha256=dtpB_n0RpjyoUzcSkfT5dUuY9O2U1c-YM3m6V-jL9xc,1525
182
+ cirq/devices/unconstrained_device_test.py,sha256=PZ2FeLbRYh38stk3AA03j3k_a6VaGdtHh3D2jrnjAIc,1047
183
+ cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
179
184
  cirq/experiments/fidelity_estimation.py,sha256=JK9yUoD4TL3nkf2yiEJ5f_RR-rhkAHSKpeLlYCRvZU4,9214
180
185
  cirq/experiments/fidelity_estimation_test.py,sha256=SX5hwQjyzWm1yr1q0C_LCgbFfUF_Ye36g6HuQbtinGI,4918
181
- cirq/experiments/grid_parallel_two_qubit_xeb.py,sha256=ROJZiXLaeF5IYo06DxeIvDHpwNJTIiqEAfKxs6v0vHM,2216
182
- cirq/experiments/grid_parallel_two_qubit_xeb_test.py,sha256=iDvDVsJxFp5xVlmse3EDH0Ok0-8yQpdAtQ2KHA7DbCY,1053
183
186
  cirq/experiments/n_qubit_tomography.py,sha256=9M_kf2-1hvFxfZOWND7ACwHYgD9SJU5nYFkeudQUlfE,8469
184
187
  cirq/experiments/n_qubit_tomography_test.py,sha256=wHfV2OpGYSDXfoyEh-B5dc1Dv8sxKNFbUoHyjIWZoFk,4362
185
188
  cirq/experiments/purity_estimation.py,sha256=6D1UwFlQRzHeajXMTyTUfBYAc0jJQ8Cfz4lteFKeUaM,2467
186
189
  cirq/experiments/purity_estimation_test.py,sha256=xlBGp0NOBYR0IhTy3bckHPgi81FkGSGxKqk9hwXG-I8,923
187
- cirq/experiments/qubit_characterizations.py,sha256=Zi925SVZ0U5HbkyuGD6BspjzPAhsqOe5gLxNgZy0FrQ,36702
188
- cirq/experiments/qubit_characterizations_test.py,sha256=b_ONqxyW6s01Ts8T65BEdb4e8Xy24Qp4zTGXWesL0ic,9733
189
- cirq/experiments/random_quantum_circuit_generation.py,sha256=R_w7z35plUHEYBY0-F80bPcWJSSSjNQDaP2GbxVBEZg,28143
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
- cirq/experiments/readout_confusion_matrix_test.py,sha256=R4UoGklVJ2owqeDTRVP4M9gYynzVYgw-Y76VLcoIJtY,6766
193
- cirq/experiments/single_qubit_readout_calibration.py,sha256=ZmfsARZ_33Pg4lh5toJaoi4h4RGKHISAfWBODq1Icsg,14599
194
- cirq/experiments/single_qubit_readout_calibration_test.py,sha256=_002QXj2rIFHkH3vw9iTVMh45vCPuCI_fTqOUK8uMe4,7718
195
- cirq/experiments/t1_decay_experiment.py,sha256=ealdmc_RTE__z1YUcaDEncDzQOaiT0K6IRWB7lNtPfs,7087
196
- cirq/experiments/t1_decay_experiment_test.py,sha256=Pgbm-37JiCdw9iQg2OaXVvs72xGWV2629CgsTQlLQnw,9139
197
- cirq/experiments/t2_decay_experiment.py,sha256=lTgZ9yJ7Fk9_ozUCHysQn1qKrMQwTpsgEv-QnvsEif0,19158
198
- cirq/experiments/t2_decay_experiment_test.py,sha256=DFR0BGn0Id4qNPfqIExj70TEAqf7Vrc8eK91Wj0YKTc,15031
199
- cirq/experiments/two_qubit_xeb.py,sha256=wdLxBi3LrAlPF-SQV9Tf66k31XC2cVHNPhpR-VLvCao,17762
200
- cirq/experiments/two_qubit_xeb_test.py,sha256=Tlr32vuJpyepkMBVVkN6ipjRyDr8DIixfBumEeGXzDM,10073
201
- cirq/experiments/xeb_fitting.py,sha256=54FKzGqhZgyvAkP_AR2-7peDnL-PJxOp-MkQdfp8bfU,27178
202
- cirq/experiments/xeb_fitting_test.py,sha256=nfFhKPr_Nx5rbfCcvrcUFQxphCZuTnJVnpT-xBjxRFI,14349
203
- cirq/experiments/xeb_sampling.py,sha256=plcwC4GNV2hW39ZFPBG1jWMnSIWcMh5rwsV8i6cQ_t4,15266
190
+ cirq/experiments/qubit_characterizations.py,sha256=QBEUJGWVZxFzh28oZetAFpMagjhyhJk8qVjScwktZ7E,36785
191
+ cirq/experiments/qubit_characterizations_test.py,sha256=km4-D-JrsxhjCjbpf7DTgHnGSNS3Iadtqt0b5hfTQqI,9716
192
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=7O2aQ8cPMrEsdu1yHQW0GWittRX_Q2y1f7H7m1G384g,28228
193
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=7Hs4bSxvOZOgiuAMKgLvTRVhu-kNykjlGLqFwoEbdaQ,16522
194
+ cirq/experiments/readout_confusion_matrix.py,sha256=O7fLHGAZQ3UG8AhBBcQPeK2NO8jNE_70W8JF2PII0PI,20727
195
+ cirq/experiments/readout_confusion_matrix_test.py,sha256=fIL-r9vi6QEp0Bt5Fv9BlJlPh-aWPSj58_enzNLafpE,10632
196
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=WJ6wM7hS5xEi71Nm4r-bwOYQwf3P8N0-wmax5EltVo4,14723
197
+ cirq/experiments/single_qubit_readout_calibration_test.py,sha256=ivc7IDyxmrZXCYNWSOgJXJ4ZdYFbatmlFUf_u2Rh_uo,7718
198
+ cirq/experiments/t1_decay_experiment.py,sha256=bnf9FpptNpZO1lOGCttrHA0IrykfviEVbjsWvCSiGn8,7086
199
+ cirq/experiments/t1_decay_experiment_test.py,sha256=LauXCkcLNxrmM5gNCT5RSWaRQ8OnlV8sCZZ3CBrLjpI,9138
200
+ cirq/experiments/t2_decay_experiment.py,sha256=JhIPsoPRV0g3j1wkDh61MkqBFJNDwjhaZK8Vy4eqCfk,19157
201
+ cirq/experiments/t2_decay_experiment_test.py,sha256=dJhtdqgH2majCQ-sstyjog75wkzkzHrHVsQrGpuYXfE,15030
202
+ cirq/experiments/two_qubit_xeb.py,sha256=vGKpfF_1141hjMRExqEtL7_2WyEHNqwbaw3W10ZXwiI,22764
203
+ cirq/experiments/two_qubit_xeb_test.py,sha256=UnTmDbs02mjWZXOm_Yveun1G_pop9_w0rvYf6swv8wQ,10680
204
+ cirq/experiments/xeb_fitting.py,sha256=iQq40iBHri5Ks2OTED5q3nOlRtFanGnGlV6ABo1Da40,30409
205
+ cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
206
+ cirq/experiments/xeb_sampling.py,sha256=1Js9QfJXZyz79VBqVEAYwCyuz5-McVQeDDbjvdqxX1s,14987
204
207
  cirq/experiments/xeb_sampling_test.py,sha256=0XkQGvcURsug3IblE_wZrHVDoOQV3WuQilrqCJbDHjI,6784
205
- cirq/experiments/xeb_simulation.py,sha256=DpCWVxzWnZvjrdfgIbwR9rWenehqz7Su3LPIVHoK7gI,5055
206
- cirq/experiments/xeb_simulation_test.py,sha256=gx0GqGZ4TDwrNW5ULK5JEWfzL-Dvb8TpAxIgdpiB8Tg,5430
207
- cirq/interop/__init__.py,sha256=zYD7hdcL5qUZ2MDzmCRZ7CgfCZ048fMKtJXCW7GMK_Y,722
208
- cirq/interop/quirk/__init__.py,sha256=rGKgFDaKFSHdGTEw5iD4GCg_SKzbAfA1qcr4t2lPlZI,1092
209
- cirq/interop/quirk/url_to_circuit.py,sha256=1ToWnFJdJIhCko9q62BEvOoCGxCpOUl8891IdCa52MM,14211
210
- cirq/interop/quirk/url_to_circuit_test.py,sha256=VBRA81eNbEcu9xAGZuDWMiqusRyVtoZgQMbP33CRzYo,26282
211
- cirq/interop/quirk/cells/__init__.py,sha256=bLQFg4uxQp-4_I14e-Ys-Iy-O5bNOtLahKyc0CYZmYs,1237
208
+ cirq/experiments/xeb_simulation.py,sha256=_RhxisdCA4kO5dfBYNeMmpY3gem6WxSpLIddagV2DtQ,5077
209
+ cirq/experiments/xeb_simulation_test.py,sha256=YWFKXPdtBFuZNhQoG06W1EetVhXighc3zyXwhKfGAeo,5652
210
+ cirq/experiments/z_phase_calibration.py,sha256=t6hUKNnXzPSY8_o-UyLsZhRWUS1pdsJsaedd5c4rm4Y,15153
211
+ cirq/experiments/z_phase_calibration_test.py,sha256=tcYBMWkhnEzP0lRbyH2OqZRTVHJ_dnn44weeEntANX4,9039
212
+ cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
213
+ cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
214
+ cirq/interop/quirk/url_to_circuit.py,sha256=STj3-mv1ET5krlEfAXX6pCdr6ui4oHpNWUqMzWbubp8,14211
215
+ cirq/interop/quirk/url_to_circuit_test.py,sha256=dB_QV_aT_9OfJS61JxHbe5oMbiJh-d6Y3aJI1LjqCFg,26282
216
+ cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
212
217
  cirq/interop/quirk/cells/all_cells.py,sha256=Umd8wmwx51LzEqQbJFpWuvqL7g4MsSQXXztGzg1JbPk,2558
213
- cirq/interop/quirk/cells/arithmetic_cells.py,sha256=vAKgLv4FQKIR0Epwmi_TRLsE-f8xkzij-FVc9OZGPiI,13146
214
- cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=n7Za9O3KLEpDFJDTOxv8n8hxwzXlQ9EOMqbBRX__eFM,14625
215
- cirq/interop/quirk/cells/cell.py,sha256=Ait9MhNPiCrdSefNYMy8kavbkaFuhek3hDhPRfbOYAk,8463
218
+ cirq/interop/quirk/cells/arithmetic_cells.py,sha256=tUdzb9a4VBKqSt6WMqbSrBBAssq_6UTwVyxfOvGCmX4,13146
219
+ cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=dalnDnHwMp2oBi9VpIxVNTz6nMZNYL5WI74kw7Flb5w,14625
220
+ cirq/interop/quirk/cells/cell.py,sha256=dxdHNCv5l3ZH7XyvlnMPUX7qCJXf5_UyWpHx5uV-PPo,8463
216
221
  cirq/interop/quirk/cells/cell_test.py,sha256=-HDH3PIn8DPtaeUWlfR4bpLWQ-LqF6WQcjFUolUvXCg,2276
217
- cirq/interop/quirk/cells/composite_cell.py,sha256=3qlh6q6aTRucWPJ4hioPoHYUVPWn8RnZgItY0Rh7Mm8,5352
218
- cirq/interop/quirk/cells/composite_cell_test.py,sha256=oPFKTothfcqjq47ccFNT2dGA3libKnpVM4LwguYE3hs,5308
219
- cirq/interop/quirk/cells/control_cells.py,sha256=Zg6pZYUxmTdPkk3aovfZb4li2_1_hyMLYVK920DTxzQ,5569
222
+ cirq/interop/quirk/cells/composite_cell.py,sha256=9o1aP3YeYOqdCE-t4wNiysdCOFBSV1nZm8ovN_SPba0,5352
223
+ cirq/interop/quirk/cells/composite_cell_test.py,sha256=3qiQb0VOLtr1ZBKjCMRrJm_AXALDBLK9DwBTu3kQG6o,5308
224
+ cirq/interop/quirk/cells/control_cells.py,sha256=WDXGjcUk4sOzphJcnXGC-Bvzxcq0BaZJBZxd1ETB8sg,5579
220
225
  cirq/interop/quirk/cells/control_cells_test.py,sha256=rqCmmjE5ym5wqzpTrEGso8dCgrIC6JxnMHqzuk4hfsc,4673
221
- cirq/interop/quirk/cells/frequency_space_cells.py,sha256=80JKJx9WvLsOfaUHkfH7SQOR_OxB7F4cp_OVL5X-Kdg,1890
226
+ cirq/interop/quirk/cells/frequency_space_cells.py,sha256=eAkPlz1rqnWqs8ljh_kFtuWnwmeBiN5XQp_e25lqa98,1890
222
227
  cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=fPAjxnD8sKnuxNdY89K66pdbV4Hi3IxhdeWWni5-Uno,1812
223
- cirq/interop/quirk/cells/ignored_cells.py,sha256=9YcpYmLEQUjpYIFs8tIXwOpUd6vMQNb-2Sw53CRVAwg,1378
228
+ cirq/interop/quirk/cells/ignored_cells.py,sha256=SVYXVuVM7FWfIPQdTSS64zqadxwpVDnaMmA3AG92nqo,1378
224
229
  cirq/interop/quirk/cells/ignored_cells_test.py,sha256=46KXRNPM_t6-aKklrDpLbBDXijHDDafepE2KKuJGNLA,919
225
- cirq/interop/quirk/cells/input_cells.py,sha256=t5Bunve-RSUGHUBzyb2Ry78QiIR_ubnnXrqeoS8Ht5A,2927
226
- cirq/interop/quirk/cells/input_cells_test.py,sha256=3g8Ru3w7K11I1jF43qHbteui1nrVS3r1ngCZPpii4oM,3500
227
- cirq/interop/quirk/cells/input_rotation_cells.py,sha256=mo75TGkbtD_phNPM-ZPFs2VJcH2wkp1ShO_fUnpB5tg,7369
228
- cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=1jmEBHbHpmSSB3grPbn8LFzMEwkc6Or3kAULxVofTEg,6318
229
- cirq/interop/quirk/cells/measurement_cells.py,sha256=1jLtGMHCbxfNN9r5E_GWPIqz7fLdNKJK0WgrcjXsS3I,1504
230
+ cirq/interop/quirk/cells/input_cells.py,sha256=1BsH_7oJnOynmt6VmJQnUSFUW48VB3eJB9VIYgwHhmA,2927
231
+ cirq/interop/quirk/cells/input_cells_test.py,sha256=Aavp8SHgnF0vAG2fvcX1y0x6Hzrz6dg1tGMjBNLyl5o,3500
232
+ cirq/interop/quirk/cells/input_rotation_cells.py,sha256=sUVe5Kkxfww6uh3EFDI62GAGKzqmAxWfOZpvGO-spQE,7369
233
+ cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=o56BWKRiE_MFSZldbSa9PnDlnOFslEyODbmcjzRlqjM,6318
234
+ cirq/interop/quirk/cells/measurement_cells.py,sha256=u_J9-sz4L3zy5eziUiVhT__oW4ax5jxPhg2QZRcL11w,1504
230
235
  cirq/interop/quirk/cells/measurement_cells_test.py,sha256=AYYzjn3BrQbk-Rg1L3WjCOQN9eGLRQzqwYr6i8UH0Fk,1574
231
- cirq/interop/quirk/cells/parse.py,sha256=-_-YrhbV8-OpLtbHCUoTK5rkvEKAHS9nqOaxd-z2x-w,11781
232
- cirq/interop/quirk/cells/parse_test.py,sha256=xCTS6lKv4i8HAuTSivH2Tjwun1yMQbnl7HLfB-nEKY4,7473
236
+ cirq/interop/quirk/cells/parse.py,sha256=Ilyzz9rbe9XYExVlj4rcJsrIWN4TnAj6LlVl37S9MO8,11873
237
+ cirq/interop/quirk/cells/parse_test.py,sha256=1L3qRRaz8Q0vh8N92uFwI7G-ez97mKIqubQgp10uPsI,7473
233
238
  cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=F9Br_SFB1ys4pP-hYlpPRMXH_4Cd8LePtOl4aTE_p8g,3390
234
239
  cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=n0veQKx0EdFzu_gdY_AVjwqyoHae7JGkDFX6qhLeGrQ,4460
235
240
  cirq/interop/quirk/cells/scalar_cells.py,sha256=TuV5TwiY2SEb3776k1MvkSMcJoP2uQVXfpWf4uaNf30,1246
236
241
  cirq/interop/quirk/cells/scalar_cells_test.py,sha256=1IrttKsY0921W-885PnpZaYe8OQXKVQ9g7semm28W4E,1367
237
- cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=8776WWmVRtITfYySgkDYPuPms_Qu8wky4G-lswjvYzo,4463
242
+ cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=rlRRCWKf3jYj1u1XXtyIAAivH2zv8sK9lSH9pFGRlBw,4463
238
243
  cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=NZ5r7sLQx9p3yLCQ0RQmX-8R6e2vPtXmpL8_xbv1PnE,5037
239
244
  cirq/interop/quirk/cells/swap_cell.py,sha256=6pE6hFcMxLSr1F8_DhwNZulWwO2lKDVYnRxK6Bl-Ql0,2421
240
- cirq/interop/quirk/cells/swap_cell_test.py,sha256=nb-lmXqphy6wneVWNrVWyyqzUeCPLObeiQI3qsjHaWs,2321
245
+ cirq/interop/quirk/cells/swap_cell_test.py,sha256=z3Dz7jrkEI7ri2vOqQQAO8bbhUSRYU4JORgF4YqOY3k,2321
241
246
  cirq/interop/quirk/cells/testing.py,sha256=eHnAwIyQvVesYK3adyCo7-HPTbAADugs2EMuoNoSvP0,3318
242
247
  cirq/interop/quirk/cells/testing_test.py,sha256=Qb__MOXjUrna7Wy6mlRWFyyy78KfzqlKsTvNfdR8-fc,3929
243
- cirq/interop/quirk/cells/unsupported_cells.py,sha256=JFLuP_0MtKQ2sMpB1Jx071qrn9oGM6V6F5n9VzQhDAE,2841
248
+ cirq/interop/quirk/cells/unsupported_cells.py,sha256=xTE4aKpuVocey_lvWwb8Q1fla6oMqI1S4rc7a2UtDgs,2841
244
249
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=5bl-maazy7Dr8u6kwK1AhGT4vtHqzIMRKxoMKYC-JWs,2178
245
- cirq/ion/__init__.py,sha256=GKBoQfjGrCOkVQR1MqK32s9YxA8PsrKecekz7LChUlk,734
246
- cirq/linalg/__init__.py,sha256=iMN1jVWzuZrSdHuE-gN2N1QyP0q6wgj6F4zetxJLCJQ,2527
247
- cirq/linalg/combinators.py,sha256=5q_cNjnJrDgC7qMX8rYdnCmBKXT_iVbtxnCeJQ4ZPTM,5350
248
- cirq/linalg/combinators_test.py,sha256=nZ3snkVA2nAOZ6WJK1hNd1f_i2a5xNdnostfMD1upbc,4699
249
- cirq/linalg/decompositions.py,sha256=hqo76094MnUrMUe1BFQagfB3fArEPjo8Jkb1fEL2Yc8,39225
250
- cirq/linalg/decompositions_test.py,sha256=-6q2u3BDG9b32QSUAjhmBNWrL3KzyiMH_R0WIHhdOqU,25790
251
- cirq/linalg/diagonalize.py,sha256=Ym7C0JTAC9xfRQDYI72U6NxMYg0DfchjfXcbdg_92QE,10051
252
- cirq/linalg/diagonalize_test.py,sha256=H-JcLvcCBdN-DrKo2o1Gs7B8Q9SU70oAZmdT4yTLAi4,9089
253
- cirq/linalg/operator_spaces.py,sha256=uZSc9154p63R2UqFw6pniuWcUo20epe5RK6bL3tpkbM,3813
254
- cirq/linalg/operator_spaces_test.py,sha256=k2aVBYuU6ehXx_6puApE-sFxEBrOki0t0KeNbBK94hs,10097
255
- cirq/linalg/predicates.py,sha256=Q8BTlR4EvPg2KP9VodK78UEWYJbSCOTqRahn1DnFmSc,12056
256
- cirq/linalg/predicates_test.py,sha256=UVDkNH2ujI80JwJwsDjbTgyALZUQJAVVCoFN1T_LLf0,21503
257
- cirq/linalg/tolerance.py,sha256=ZBZOc5h7UgrKzyOStlcTRwupkjVzQu9-AwjNCCz1ZKE,1879
250
+ cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
251
+ cirq/linalg/__init__.py,sha256=0dSlIBy-TVzf7b_-rLLlrS8ZFkgCfYg0pJjWs72xYOk,4045
252
+ cirq/linalg/combinators.py,sha256=0tts29gbwQg9lpZvCSX8QKMIMf38NGGdBJqI911m7jA,5336
253
+ cirq/linalg/combinators_test.py,sha256=eRy1FrGujE8UC3pP1X5MfWmKlpjimHTxdiixr-G4nJM,4829
254
+ cirq/linalg/decompositions.py,sha256=9dOJSJuYG8_dk3zdBO5rXDONKkw7SKZd5ZpWK4FnypQ,38652
255
+ cirq/linalg/decompositions_test.py,sha256=cPTOr6Cmyx9oVQStIwxN8TA9jAJzgh6QGdbCmGc-rBM,25438
256
+ cirq/linalg/diagonalize.py,sha256=Y3fFcyEWKH5CGbGY8KeQPGBgdDgvETF3WUCkVNIVfNw,10051
257
+ cirq/linalg/diagonalize_test.py,sha256=Jn6Gc1R_1MaL6vUUqjIx_6WvMDTIj7l8OxUNJgWKmsc,9089
258
+ cirq/linalg/operator_spaces.py,sha256=-i5DEAW-b_sgmfZKXFf37XzX5h7cZ7R6EeW7RcFNeE0,4128
259
+ cirq/linalg/operator_spaces_test.py,sha256=Hbm8e4kGbGw9c4O3v5o0kYbcikwDkdIoAy3V8EofJr4,10605
260
+ cirq/linalg/predicates.py,sha256=vLTRaAYqVf0mk6Qgm53ROhLDtXxxoEhHbYxQN74aGRk,12076
261
+ cirq/linalg/predicates_test.py,sha256=syNiyS-clEGeZnbKT7zyR8_ClDnXFYtDnLKozLbitzw,21504
262
+ cirq/linalg/tolerance.py,sha256=a68RNOmCw0ybFwhXOq6DERK5gHAOlPJIRdPuMzV6xuU,1870
258
263
  cirq/linalg/tolerance_test.py,sha256=wnmuXIGEn_mugGoNm3AigSgjV2DMFdj8xpgRTMBbO7A,2355
259
- cirq/linalg/transformations.py,sha256=errpuYfF2Cxdn2zN1NWAMfFHwu77Mfr5g3lk_MJceDI,32143
260
- cirq/linalg/transformations_test.py,sha256=ofrqw8H9109vVDBelSGkMjTPkmNinYsin4rvUE_iSn4,25095
261
- cirq/neutral_atoms/__init__.py,sha256=D0ewdZZvXM_PC7WiyyM8V3WqBAwrpDV_GU_sCIbtw2A,753
264
+ cirq/linalg/transformations.py,sha256=zo9Gwo4VX2uQfN_7iOzQrxI-27uDj7s8eTUe2eJQetU,32519
265
+ cirq/linalg/transformations_test.py,sha256=4GnfQhB1lERteVxvTHXMXxEt4vwQLZBXNJOvnFY3AKY,25636
266
+ cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
262
267
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
263
- cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=mIeGevxs9NoYpfTF_znHL67RrJKVQyQP-DPhn7t9SUA,1862
268
+ cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=svleNo8P_cQLCMfcGLkU896cpLjZKPynDKnJGM2pyJ0,1861
264
269
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
265
- cirq/ops/__init__.py,sha256=7xt2bPwndo2OhuLLnI5GwBpG9rZHlt1rv7cp-bOBmxM,5455
266
- cirq/ops/arithmetic_operation.py,sha256=PBqIwOfADRlsij11Lo1ao_OZM-O8PDlObgZBxGKsYKs,10125
267
- cirq/ops/arithmetic_operation_test.py,sha256=axy8xy9IvDb-ATUV-LE1HNWRqCEz06VyZWVrLNOtXXI,4942
268
- cirq/ops/boolean_hamiltonian.py,sha256=hjmzBvWiZnb18JfdhId-dVxt2VmbyAbqMSFAPWV7s7I,14883
270
+ cirq/ops/__init__.py,sha256=Fvghj3MopLpeIdbpb6en855QgwperBs5esV1iszhBDA,8274
271
+ cirq/ops/arithmetic_operation.py,sha256=gAup6Gou7oIbfjIdjXIDFff-z3ybdjlkbsBPly-oQ30,10125
272
+ cirq/ops/arithmetic_operation_test.py,sha256=iKjnwOvd1wCWk-byeUC14aGwYuHXOlkrtlOvNRUcMqs,4942
273
+ cirq/ops/boolean_hamiltonian.py,sha256=li003lNq6zS8pNPTobqzfzYJvyvaIpCVo3wkliI6Hzk,14930
269
274
  cirq/ops/boolean_hamiltonian_test.py,sha256=1ey5yfYZPKZDsfM3jpCPAOpbPs_y8i4K_WvDK2d5_4Y,8518
270
- cirq/ops/classically_controlled_operation.py,sha256=bMqKutwzqbvN2r7mOVOI12HTPDGSJLkhQQgfAcTtbDU,9166
271
- cirq/ops/classically_controlled_operation_test.py,sha256=MNU0Adff4kTosqsrQ3PUT3ARcZee_PkchT6u0xDl8Qg,48039
272
- cirq/ops/clifford_gate.py,sha256=ARbHGptZxQo6kX9QTrh_kZ89N7lW6V3GQSE3o-1kixU,39366
273
- cirq/ops/clifford_gate_test.py,sha256=NF_if1X8LCMA9hy0vBO7lxvVPdumlvMMnI2XRQ-RLpk,37472
274
- cirq/ops/common_channels.py,sha256=mVGEta2wnaWOhRCXQO6gUj9Zll3rtXqpY-PRYcJ8m1U,38282
275
- cirq/ops/common_channels_test.py,sha256=EL_PxbqD3KPC8ioihiukhmW8bUdclqqigKoFyUQpmIM,29690
276
- cirq/ops/common_gate_families.py,sha256=e5M8wlDYtdrpWBrhdns6iizIvSqzfxDyIsBdxt8hVMc,8611
277
- cirq/ops/common_gate_families_test.py,sha256=Oo3C7BPO3gt3ePuqwsI_lx_lY38et8Ps4AuVydX2Aww,5275
278
- cirq/ops/common_gates.py,sha256=YMcadPVRhrvkwYwm6-_TNYM9sz9TY7KSi0g7FvBTeCk,58075
279
- cirq/ops/common_gates_test.py,sha256=XCVswZbd_k9Y2k5n-2TXnS8CnJoLoC3VmBQN0QijIKw,46218
280
- cirq/ops/control_values.py,sha256=nNDN6pgz_aWkUfrpOZ9zHHD42AGFaplWhVQj9rmJwbQ,13410
281
- cirq/ops/control_values_test.py,sha256=iDtdQjL39u80MaR16XLp00LRZqWgJqC54cIeADWf0IY,12906
282
- cirq/ops/controlled_gate.py,sha256=uVTZk6pA1ZpEwbVggLeXyAFq18_QJ38hWYhk9GbvQnc,14253
283
- cirq/ops/controlled_gate_test.py,sha256=6cc9ZY_Obo_ZY4iveaaIv6LXn50REey-t4sThA8qOTs,23099
284
- cirq/ops/controlled_operation.py,sha256=sbT1PGUQjV8a014e8TOeZY2N1q6QXF4n0RVJswBtOX0,14014
285
- cirq/ops/controlled_operation_test.py,sha256=ioAq2we54vDPAf6ttoUPLWqt1nQzLmkcQ9GQRL60t88,16459
286
- cirq/ops/dense_pauli_string.py,sha256=SPrNsgeC2-ETqD2wbZ7R7lOltIUWITqBUHH02dVaMzA,24525
275
+ cirq/ops/classically_controlled_operation.py,sha256=ePhBPrHymodrsztJFk_g2IGI3QSbFnpQ54d-6AH9CN4,10374
276
+ cirq/ops/classically_controlled_operation_test.py,sha256=qS9yzhZeWmsDzg-MM-g3njvGMRWPK1muoG19A6mIcTQ,52468
277
+ cirq/ops/clifford_gate.py,sha256=hBuNKKE5kmB3W4oQxwdG1SF_NFblkcSIAUeacECRAVY,39495
278
+ cirq/ops/clifford_gate_test.py,sha256=dqghYb7_afYxCLceBarX56Tn9y_dSWCKF75W-Qrzvcw,40341
279
+ cirq/ops/common_channels.py,sha256=lGDOSdstoK57DingL-lo2n49-a51MshhJOl4LOcpQfg,37126
280
+ cirq/ops/common_channels_test.py,sha256=nQsSSxu7vtedb3ZUuw4hNKIX7MYI4x8lxvLyWMZNt10,30079
281
+ cirq/ops/common_gate_families.py,sha256=2E31Qr_Yv1zI-r_MNWmr1xJYrEHHU45274iDrt_oKPE,8611
282
+ cirq/ops/common_gate_families_test.py,sha256=bEF6Q6GtEOTc9kHM5WC1UIULPGnMPXdtm8gzLT_aNBI,5276
283
+ cirq/ops/common_gates.py,sha256=WFNrvxaHQdfS_2sm0-Kuq4VaH-qcgbJOFi2_PBecBX0,58481
284
+ cirq/ops/common_gates_test.py,sha256=bASPqAkuN92Ij3CCAVwOftL0heIu3J5VPcCtmm6nVU0,46873
285
+ cirq/ops/control_values.py,sha256=Loi_voLNOzPJpjD6AnQz8JrqJLOAUe0jvV3XB_0tTGE,13430
286
+ cirq/ops/control_values_test.py,sha256=K8tbKM6b6PqMEL_lHLFzdrnWF1SkLN0Scft6YMT7FlE,12907
287
+ cirq/ops/controlled_gate.py,sha256=uzQL7scPsKmnu3Kdiw-zF7b4FxdyqvaD6oPkczs1skQ,15234
288
+ cirq/ops/controlled_gate_test.py,sha256=8PprvTdGMfBQOOQ-BpW_decRQU39P2gM_xJfX-fawMo,25512
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
287
292
  cirq/ops/dense_pauli_string_test.py,sha256=duvgzhgTV9wuem4kDSwtL62SEUCThkz1tdP984-C4_s,21504
288
- cirq/ops/diagonal_gate.py,sha256=W_yXf4qZY_AeP32VN-0u4lS0-WsqjWTg2VSABaO06Wk,9024
289
- cirq/ops/diagonal_gate_test.py,sha256=cPHxjc7g2oTcXt5UFm470oo0eJupubSNzs4TccKHlSc,6223
290
- cirq/ops/eigen_gate.py,sha256=8AzZUZ6Km554GVdLLKJnaPiHoyChcFp4D5v5y4wHSXk,18133
291
- cirq/ops/eigen_gate_test.py,sha256=-7l6GmAd1EYzHoGREQN1n7J1VOQKbThH2mA88TRODs8,13928
292
- cirq/ops/fourier_transform.py,sha256=pynO07OcZSVCeL8L0pNQ9m_y5_wrpTWOMf99BHpjXdU,7579
293
- cirq/ops/fourier_transform_test.py,sha256=PIK4bWnCIy2TuX0fgclHeU1CBDT6zRVoQpv1v1jt62c,6220
294
- cirq/ops/fsim_gate.py,sha256=H9Yz2XkUiNk0Mv6aJxL80yxwjvwrB9mO0zDUGF5LDcs,18695
295
- cirq/ops/fsim_gate_test.py,sha256=owW1VpXntJqxlzhtppnyfaS9gQKFNA6UzCHksgPHaHU,25165
293
+ cirq/ops/diagonal_gate.py,sha256=NpCGuZpdqMGoM6ya8Q8Jp7UTut2WglMB7DK5oqBRXiE,9021
294
+ cirq/ops/diagonal_gate_test.py,sha256=wsPZWhImVGNrEg1mYnXsO4nJ6VziDBfvEilAFtJJ8b4,6224
295
+ cirq/ops/eigen_gate.py,sha256=GRtLML2LbTBvVMNlar5SIzdDVK6UHL3lRwAPR6JOPOQ,17494
296
+ cirq/ops/eigen_gate_test.py,sha256=D9ETnoJ4NRcz9EvzQOFra84bonph8optp7zhW57rgWA,16139
297
+ cirq/ops/fourier_transform.py,sha256=_YWqBq7zqRv7rH5oQPPg7zdUSiTp2px8kaaWZZmakZA,7513
298
+ cirq/ops/fourier_transform_test.py,sha256=mtWhiC_Tg60uNh7mhhMb02cckGfNC_Tjte-Q4gRcF8c,6226
299
+ cirq/ops/fsim_gate.py,sha256=Avzlcb_O201K0_tBmNR5m9fWkpBM7Nby0MfJjNJ9g_8,20136
300
+ cirq/ops/fsim_gate_test.py,sha256=4kFk0ALzTmaskQURHPl6JerNvw8gbZn49nt1_WAjpdY,25671
296
301
  cirq/ops/gate_features.py,sha256=414mSi3kgKSwLOeAG_WEZKn8ZMaLtOowed7os1qSnM4,1049
297
302
  cirq/ops/gate_features_test.py,sha256=mnlqJnSpllcOnTUdvmUs_ssnPRhAIgHhKIAK2Z86Dfg,2347
298
- cirq/ops/gate_operation.py,sha256=Fa3O_-bLGAtFznYv-b_RWAn2X4JgvM3yGbqbLcsJkgM,13736
299
- cirq/ops/gate_operation_test.py,sha256=ftd-GZxvOtzFS1L153K89_PV1volGroU7G5nFGp9afE,17507
303
+ cirq/ops/gate_operation.py,sha256=0o-lkWQSwtdFTorMHYXL_7VxEvaQmUI6RPpl0j5gvxQ,13728
304
+ cirq/ops/gate_operation_test.py,sha256=24RJmqG65_Z2ZeO1jnVT_VCKwfHcxP25Zfh3_JmjWpk,17517
300
305
  cirq/ops/gateset.py,sha256=Tx1CIlve0RhnX9jHZsCVw7EHtfC6b3drbBncmCEtcsQ,21634
301
- cirq/ops/gateset_test.py,sha256=BY5UJ1k3NC0jz0d4yocyO1qcQU6e4UbN9mapWE7z7AM,16361
302
- cirq/ops/global_phase_op.py,sha256=y4AT1_dQfGl44WHbCkXfp1d1Hh5BN1geQ35HpvI5dLE,4868
303
- cirq/ops/global_phase_op_test.py,sha256=FjtUsohIYabTtiGytvPQw9Rzkqd6dlT7qrj4oltDbTI,9814
306
+ cirq/ops/gateset_test.py,sha256=XqEgjuUga5gGUjHRBIbA6Pe7JCgCX-UBxrnXALMvrxM,16557
307
+ cirq/ops/global_phase_op.py,sha256=3WLv4ul5Ifhgra4I6uf1yj-zKoMkh829NVemhzyEC74,4885
308
+ cirq/ops/global_phase_op_test.py,sha256=C-YMN5ja9IKKgmwC5w2sPDBpFr8p0pJrE5WFikCVZOg,9833
304
309
  cirq/ops/greedy_qubit_manager.py,sha256=O9qY8GB1KGxm3B7JEjq50sGVD51bNwTSupJpi3WUeAc,4039
305
- cirq/ops/greedy_qubit_manager_test.py,sha256=iVZDKes-r08raTiJHpYNmP-Dp89ok3hIU-QboL2BHdw,3300
306
- cirq/ops/identity.py,sha256=4H67nV4i85wi3HWY-k5ImC9hX9U6BjIZp61JalHpsTI,5503
307
- cirq/ops/identity_test.py,sha256=dGx9nzeFCoVo3SmlEbqCGJT1XyzJh-qoPl9n2gEd9WQ,7422
308
- cirq/ops/kraus_channel.py,sha256=tCPAEzr_GAL5vTwI43rBoiOnT04l-ebZanuuEuYWDo8,5085
309
- cirq/ops/kraus_channel_test.py,sha256=qH2Y9cngXzKCabd-Mq5xBYcM_wyL8c6KkrXw8kZr7Dc,4726
310
- cirq/ops/linear_combinations.py,sha256=1BynexPtrNc26McHXv3rErh6NYGzcxNqXWyWJ11ugDw,39668
311
- cirq/ops/linear_combinations_test.py,sha256=qpzRo53mJtcidYE11loKMP2b9guKMGtzrKWQ_u0jr4Y,66387
312
- cirq/ops/matrix_gates.py,sha256=8ARvpHWYFgwmlT99-Gxoa24i_mxKLvdj_RhoQvglKQw,9290
310
+ cirq/ops/greedy_qubit_manager_test.py,sha256=aixmKja9mp0WvLQE92aFpQLVEwJilsKV-5YWDO2a4_s,3404
311
+ cirq/ops/identity.py,sha256=InfS8sxU0pJT0W1Gvp-QwC1-1TGATqKWQV9OZEaFVb8,5892
312
+ cirq/ops/identity_test.py,sha256=OIrm8v4wBVq8bbAGZ-f5TERt8Hl6aD1bL8iHCOEhzNo,7939
313
+ cirq/ops/kraus_channel.py,sha256=qX828mvPSFgEaG0I3Jhj04y5rD7dUjeEl2HYDn7_7j4,5086
314
+ cirq/ops/kraus_channel_test.py,sha256=-E6ExIO3P0y2T74Gx-RMu0kLpy1RWP9wH6UGDI21oFU,4820
315
+ cirq/ops/linear_combinations.py,sha256=PE1o_mvpdnlg3o95iSn5ID18kuxwS2q3DGDuFnlNC90,39916
316
+ cirq/ops/linear_combinations_test.py,sha256=ip-wN8T8nUQviD3ql42eet7k_MQ6DVUfIK8aX-_ygOs,67217
317
+ cirq/ops/matrix_gates.py,sha256=PoaJuONeh7wFQ0iJUtMsN-OdvYW9wm_q8kFBLWu6I1k,10221
313
318
  cirq/ops/matrix_gates_test.py,sha256=m5rMwq_sqVvsmkc5opVr3Ikd1ERuULmSRNAvGZUg7ds,14224
314
- cirq/ops/measure_util.py,sha256=wkT0XC6rIddOkqNGwkvI-m7Ncr8j5QPN_evwecc6nrw,7390
319
+ cirq/ops/measure_util.py,sha256=ZaH1Lze4Yk3nYrojn7SILUeIN96p_khIoa25ixXLu6A,7390
315
320
  cirq/ops/measure_util_test.py,sha256=Yzlced4nb4DHO-0cM_a-QZGO_3R8oqExkpIALN_pG4A,5307
316
- cirq/ops/measurement_gate.py,sha256=4nZPQ-ckEu8Atv1HGlDUPvXjP4WOlub-O-yPHK28GBw,11823
317
- cirq/ops/measurement_gate_test.py,sha256=XfTDqbYUUc7zsMURh7D3jo8DwKWVVT9uJRBvtTm8Frk,18308
318
- cirq/ops/mixed_unitary_channel.py,sha256=k3O4ovH3bFs1WnAZc647IgCK8thC5JnTGxsCzjBacEY,5259
319
- cirq/ops/mixed_unitary_channel_test.py,sha256=x8LIAea2KcutNupnRJ_cLy1kmxhbUh3K3BkZtg3OkKQ,5058
320
- cirq/ops/named_qubit.py,sha256=dcm9Fv8zqlO9vV7-QAcLTEG4UJCHCIyL3SomZGjKImU,9700
321
+ cirq/ops/measurement_gate.py,sha256=yc9ccbzpy-si5TKF72Vmrqzqgsxg_60RXCWHOj1d9w8,11993
322
+ cirq/ops/measurement_gate_test.py,sha256=1DenBunnVVqx8uWxhdi4rCMQHxmQ3X7hqPdsB27FUHA,18299
323
+ cirq/ops/mixed_unitary_channel.py,sha256=IqkZOBTf7wSUJaYIznPZnB50Se8YZPBws_aN1EYBZR8,5260
324
+ cirq/ops/mixed_unitary_channel_test.py,sha256=bP3fUC7dtIFOZaJd04Ovz-lChzLsXF1Jsq8tFlQNpfE,5152
325
+ cirq/ops/named_qubit.py,sha256=WzGsxgkjRI8rS692zpIrKS3rWBF0wvX76GjsSnF-g7k,10005
321
326
  cirq/ops/named_qubit_test.py,sha256=mtJVRe4JzFSNckMQJSGCj1P0VBtpGh--6YxKbIEE3TQ,5221
322
- cirq/ops/op_tree.py,sha256=iXsIFcQCciU7C9SiPxhd_zrp4TBGCsmnqxKDjUl1aEo,6159
323
- cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
324
- cirq/ops/parallel_gate.py,sha256=RSj1SuiwbDCMWxvTmi3xz7oE2QXBFgA59emijh4JPkE,6335
325
- cirq/ops/parallel_gate_test.py,sha256=M6o3AyXFQrwyiOTtGxlYH09TbHdjtTxCuMjmn-ALnn0,6298
326
- cirq/ops/parity_gates.py,sha256=FVXd1h-HqftRAFfYGSmz0URR_lvVG4kpwav0mxf6DtU,14354
327
- cirq/ops/parity_gates_test.py,sha256=7C0BmJl1HuoyVzfA8-lVCTiE1qNYQhMtyQlVx2uvFKA,11244
328
- cirq/ops/pauli_gates.py,sha256=sqqQEKEU89cmb1pzLPnrZ5XC0LchSXid8tHLQs8xJnk,6984
329
- cirq/ops/pauli_gates_test.py,sha256=bHt7A2w0auWxN9gyKAVeimT1KeOHz5C_CjFHSK1V-Co,7752
330
- cirq/ops/pauli_interaction_gate.py,sha256=GQtK5lRw2Uh7hs2GsoRxe-VMlMTO8PxDeZNVT6_qOWI,5499
331
- cirq/ops/pauli_interaction_gate_test.py,sha256=U9ORW5Ayx5PESPFiGESzWY-02qHklYcM1mYW56RWe_A,4544
332
- cirq/ops/pauli_measurement_gate.py,sha256=tq_OlHlTLQa6yah--afE2UMNdF4a_vfXi8XT8ww2ELc,7215
333
- cirq/ops/pauli_measurement_gate_test.py,sha256=uh3J0Ps3V3578V8qkRiEgIl6jBiv8DsXlk_vzLvOEhQ,6720
334
- cirq/ops/pauli_string.py,sha256=HsiSe2fdwE1aodB3CmGahAAzjvcQDxmC9V8R6BbmhGU,66606
335
- cirq/ops/pauli_string_phasor.py,sha256=F1Gftw8TDb9qdJjQti6xxbOpXbFUFCVwn3r8073wRbY,17604
336
- cirq/ops/pauli_string_phasor_test.py,sha256=HGEPjPc7ySeshOnMJHNjtyckFuEXLvxgy-TtnU6fETM,27582
337
- cirq/ops/pauli_string_raw_types.py,sha256=6CgdPWYmOziP4uZbrIsRW0sDSMmV1GioGdAk0owFITU,2240
327
+ cirq/ops/op_tree.py,sha256=wnOa8fhAWHHVIJCTRhX37IM6BPqQ2QA_0XaBW3Y0syY,5276
328
+ cirq/ops/op_tree_test.py,sha256=FzDaDjooimUEYvCvXrTCXbR2Je8QjRTZ0VXoeI7AGyo,5700
329
+ cirq/ops/parallel_gate.py,sha256=lkwaatEWd0roRbRKq_fkBz7nmZoMB4hdwFT6LUNxmJ4,6318
330
+ cirq/ops/parallel_gate_test.py,sha256=lWCLnlEhs_LDNgewp7e3uN-23Q513i4G0JMva96_GiE,6299
331
+ cirq/ops/parity_gates.py,sha256=WjuWb69Deym_g22ZJIurrMGY0AWdLQjxNkOFnnrbzAg,14383
332
+ cirq/ops/parity_gates_test.py,sha256=43k4Q6YIm2wOVxaAgp02ki0zpAQ271_lcG2GbWR4TJc,11289
333
+ cirq/ops/pauli_gates.py,sha256=NTt6Jd1WrlkqyvEDNKTLvzSR5pE4Imr-SDTZUs3gPgA,6831
334
+ cirq/ops/pauli_gates_test.py,sha256=3AX2hzr-xeXrZUeSr-yBFYhbLeHK1qEh7_Bq9vGUAgo,7753
335
+ cirq/ops/pauli_interaction_gate.py,sha256=2e0VaCO0IE0rdwPb5F50S3rujqOuSWz54r2lNWUDrBA,5603
336
+ cirq/ops/pauli_interaction_gate_test.py,sha256=adnIIgCvFzO-inNaN77HER-WJ0hg6L63_HfiT60oV3M,4543
337
+ cirq/ops/pauli_measurement_gate.py,sha256=ODHQJgy7oEuDb7qOJ2ja_i0w4jvbV202FaO4O_deo6Y,7239
338
+ cirq/ops/pauli_measurement_gate_test.py,sha256=acKmYvwSQniIX2FtOCVrIPRPmyUBeV4uNUFmyShJixE,6778
339
+ cirq/ops/pauli_string.py,sha256=09vO175cvhA1H_c_X4Hb9uSSIjWx3mKRx_XV8wGG_SI,66968
340
+ cirq/ops/pauli_string_phasor.py,sha256=-86hl5D6TIgV5WaQLd1X0sARnNebFTXDpSTlS7T0Czg,17518
341
+ cirq/ops/pauli_string_phasor_test.py,sha256=PT2PmSeXG8JS45gyUrVpXdTifwpNTCmU0ASUZ9WDk1Q,27865
342
+ cirq/ops/pauli_string_raw_types.py,sha256=IdJgzqF66hGkuJckAxxnyRLc-jMLFTPjnpePzhNdlRw,2241
338
343
  cirq/ops/pauli_string_raw_types_test.py,sha256=SZPluslZPGffPq93F5apESBygWZ2cj7BEX6dQuawRQE,2648
339
- cirq/ops/pauli_string_test.py,sha256=3sE7cAe6szKJ1WW3iI8S3oCYMJkSX4SCwPQWopcMR1Y,73772
340
- cirq/ops/pauli_sum_exponential.py,sha256=n3fhKWJVMudzGuOcdPHskVNx3fHE2MAblVdkzbDtcz4,4909
341
- cirq/ops/pauli_sum_exponential_test.py,sha256=wVnJ3FSpEimHT8ERVkmljALrgSuuDYo6GRg91uJ7ztk,5370
342
- cirq/ops/permutation_gate.py,sha256=5xTXmnjFF3h8kgWV4wDnHBe4foeeqwEm-69I38WmK3k,4176
343
- cirq/ops/permutation_gate_test.py,sha256=SwXRgsZNLn5jnGhfcKPJ0J0CIssNzElbFaqylV2TXD8,3281
344
- cirq/ops/phased_iswap_gate.py,sha256=8zRuD3uvMt4OFegD9zpEM-foJYbZEYBTIApShUk0BaI,8977
345
- cirq/ops/phased_iswap_gate_test.py,sha256=oH3RQ8tlSD0sU5Cf3M0uR92y3M1Xd7Yk3ayOoca9Neg,6708
346
- cirq/ops/phased_x_gate.py,sha256=QCDhn4tDm_zhjorYWLpP5xOYNByXiaT35nOspJWt5vY,9980
347
- cirq/ops/phased_x_gate_test.py,sha256=IpY-Z-MsqtYbyIEdxWu1NqgAJF2B7nddxPc2Hxafr4s,10202
348
- cirq/ops/phased_x_z_gate.py,sha256=5JhVE5TReg7AKy3hhS2mE1UdvIXFsScF56e8mD15mmw,11534
344
+ cirq/ops/pauli_string_test.py,sha256=OcOUSiR-ja1yfEr3GY8Mx3yogmDwr6_yCuXOU2XF3W4,78869
345
+ cirq/ops/pauli_sum_exponential.py,sha256=6sKJ0ky2pcxoSXaRtYnlIdB6A3oMYHX7nqBx1i_GEkM,4876
346
+ cirq/ops/pauli_sum_exponential_test.py,sha256=Vi2-0zDUCS4XtFn9dfmkgh9dH2ncuKYOiQLCZPoLMkg,5369
347
+ cirq/ops/permutation_gate.py,sha256=2h8n76N2M3nu5MA8JkRQgVLByq5cOEluKUN042ClSRs,4196
348
+ cirq/ops/permutation_gate_test.py,sha256=qroZ88JYhSU6rxuQsJ2pS2XqPFJ1BGvXYVy3cnpUc9k,3281
349
+ cirq/ops/phased_iswap_gate.py,sha256=Q-1PuSc4F3gsZL9UUN8EgrO31Ix6mA-7HoUIndvePbk,8990
350
+ cirq/ops/phased_iswap_gate_test.py,sha256=tB1MqH8Y0Kgr0QIxs1kq1yl2g0mKYI7Q_AaadBhFe2U,7360
351
+ cirq/ops/phased_x_gate.py,sha256=ykYG1wxKh1649B9V1vJPOUsE5Z3hmm5t0sa9mCdn530,9331
352
+ cirq/ops/phased_x_gate_test.py,sha256=g_qbhl2OesKgXkzECv-7FJPMlOBzv9-AzkVZgfflxbE,10821
353
+ cirq/ops/phased_x_z_gate.py,sha256=E96p1za5rN3Q2jwOfV1HWnkvb9mcxdV9ZaV8FzcpJHE,11518
349
354
  cirq/ops/phased_x_z_gate_test.py,sha256=KK5-FD5zoaqZkw7p6UKxFddzaFWoxnQnE8LpCiKtIk8,10690
350
- cirq/ops/projector.py,sha256=isDlNLR8YS5CxsVCihtRAgfKZXFFQxk7kuFXY14t8ys,5690
355
+ cirq/ops/projector.py,sha256=y3ignrYFmthdPm_pjJ0Y0xp8SGPviqcT07Y9KEZ231Y,5646
351
356
  cirq/ops/projector_test.py,sha256=Wq7ddj-PV30yUXJxJoT3XIw2sIUC1AilnZ9m9N5Ejr8,9063
352
357
  cirq/ops/qid_util.py,sha256=SxyoMy_s070lcqXV7ny6vE8pp082OrTjBtawZtHOhXs,2071
353
358
  cirq/ops/qid_util_test.py,sha256=JdViBgFfH4bZJyPKTjUf9MuPxMQe08JV_Tl6tusekfk,1061
354
- cirq/ops/qubit_manager.py,sha256=U8dML-iosNfQn16Ug62z2-b2PFf-iDWc1ZCLuUsIc-g,3539
355
- cirq/ops/qubit_manager_test.py,sha256=SQ_6kOehIaMgRvU43nTOEy6UoDxZSeVzSYQ2Mfouexg,3371
356
- cirq/ops/qubit_order.py,sha256=nYkcMg-y5QtR7M3W1HXq1IWJyMKjrTZXVK1GEbY6gng,5616
359
+ cirq/ops/qubit_manager.py,sha256=BT-1lpp7MTdBHtVekwQw3riN936hipwiDxdzNKIM5Pw,3540
360
+ cirq/ops/qubit_manager_test.py,sha256=HGPOQEwVujNFngi6iAGOYKqqWDwFp0jcA8nbU_GFvpY,3372
361
+ cirq/ops/qubit_order.py,sha256=2jCQE6bebhwkTphxJvPfAvGp16Dyees-erbPrBc4ibw,5616
357
362
  cirq/ops/qubit_order_or_list.py,sha256=WVnhQcOYCgAhiB4t47Kji-pN1tnvs--X5deCQwwGVno,1165
358
363
  cirq/ops/qubit_order_test.py,sha256=B9xMIxlaI7YjRUNA6AkHJuUCFejGYw-lT7ZaSl31yTU,4238
359
- cirq/ops/random_gate_channel.py,sha256=gKDqZa6AwdCIuuh2UOvO5oxCdGRDOInA7fI3ZLQ-LTY,5121
360
- cirq/ops/random_gate_channel_test.py,sha256=U3EAaAlCZkgFIYxqwcSkPsaVGrKA2PSeG_DK2ou--AE,8606
361
- cirq/ops/raw_types.py,sha256=XJcbvBc5SgGELEk7LSnjPGVpq6OLOCoZt0FIzOCjBbc,39962
362
- cirq/ops/raw_types_test.py,sha256=RWUiB2TypXxbDTVaetQ7h-buGScUcQgY6YsFkmodZGY,33484
363
- cirq/ops/state_preparation_channel.py,sha256=PjVtoLbjBAy_XqnFAY40Am-NifeuCFVVLW6RJxph5sQ,4778
364
- cirq/ops/state_preparation_channel_test.py,sha256=yKUvLw_ft6cvIgRJcFQ779wZS-V6V-pzQq-rZRWdCmU,5922
365
- cirq/ops/swap_gates.py,sha256=9eJMGyOiA8W9k2xJ_w5PaLOCHGvB6C4T2RLddIZ5qE8,11601
364
+ cirq/ops/random_gate_channel.py,sha256=Xe87IijowzE8UPtgKgmAiA2iwKwC0_poON5D5TfBVoE,5121
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
368
+ cirq/ops/state_preparation_channel.py,sha256=0t_mowWYTFspRpRWJ2xvQtbl7iAQTF282TdP7nF4Kto,4778
369
+ cirq/ops/state_preparation_channel_test.py,sha256=tSjrd5cCkd0nEV26WzJN-IVVHtm7HjfHGImYcvhYec8,5923
370
+ cirq/ops/swap_gates.py,sha256=OO6oPeXUiCgp_I_6-X6po4Ql_i7hm0kCmNs3_S6mwpg,11792
366
371
  cirq/ops/swap_gates_test.py,sha256=_CihLf6rY4PNphCkH-S5mLJQYZW9ILjnnwUyQ9b0Blg,7452
367
372
  cirq/ops/tags.py,sha256=B3nEsZQTurGPJodH7aDoreNSatqawTxwsmw8fSKaIlc,2294
368
373
  cirq/ops/tags_test.py,sha256=4V9twOuCXd7Glvj9p3RW-tZ4-bfLtC1tmonR4soKNA0,1158
369
- cirq/ops/three_qubit_gates.py,sha256=U6GGi1aNnLbhM40ViSsRqbOIA51i1kjKMEf5ei8TmIg,28482
370
- cirq/ops/three_qubit_gates_test.py,sha256=iQfQ4p4TwtyHYCqaWOEeZsqszF_Mp49VwlIKRydClMk,11778
371
- cirq/ops/two_qubit_diagonal_gate.py,sha256=UYz2lUN8YzQjaqBZ_rmg6TvLFSRAvSlQGhnPOL5FmNQ,5376
374
+ cirq/ops/three_qubit_gates.py,sha256=IGJ5emntBp7qSdcI9bxYTprSz8SwVovZYhb3GbJsOeY,28522
375
+ cirq/ops/three_qubit_gates_test.py,sha256=jCwb6nHl1Y0qdvqzeLW2TRIWEPLmGE47SwacdzUcFiU,11779
376
+ cirq/ops/two_qubit_diagonal_gate.py,sha256=xaVproIB3r8f1hPbuN_9YKaGJ9iVF7p5J0oHjydB5gE,5397
372
377
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=qiuREluCDKMok3ormBOdDYCFlOS9u1zFLqTsORO5JtM,4000
373
- cirq/ops/uniform_superposition_gate.py,sha256=DBItkN48YM6GJCBITdvztEnacGB0HcEYo55ODC02WE0,4705
374
- cirq/ops/uniform_superposition_gate_test.py,sha256=9N8woRmaFWeuaPMy2K1JlXyTG8bICIpsfmOzXc3NysU,3551
375
- cirq/ops/wait_gate.py,sha256=ZJ9cqRysAyUYgfswVWO5C2OkDZ9MFEQjSemLw0w3drA,5654
378
+ cirq/ops/uniform_superposition_gate.py,sha256=CdwVJsHCYO0IXcWNQJk4VD_7aBSQHpEfGF3YlC5PP4Y,4725
379
+ cirq/ops/uniform_superposition_gate_test.py,sha256=gbtUQzWctZzSXNrWIq45s37J5L-hTyz9H-rtUzWcL0s,3552
380
+ cirq/ops/wait_gate.py,sha256=x7S7bGN_KbkN8SRvlxwBwwfhsneR1xfUzfh1tYCW8g4,5581
376
381
  cirq/ops/wait_gate_test.py,sha256=2Uw8ZjFkYGhDosoxbJr_IW2wWdxY8kXR-CLyC69DYRg,3543
377
- cirq/protocols/__init__.py,sha256=kGCV1tzQ1m8fjrOPhapDpnStu-rFNe4q188OQY1huHg,4006
378
- cirq/protocols/act_on_protocol.py,sha256=oNc5Vn64iT02gLV0qz6GU1J3rgHkhltLTHlyyTfQpPU,6902
379
- cirq/protocols/act_on_protocol_test.py,sha256=eYHin_cTQkhxJg0zkkenQCDIj6TFUX0IstTPLgHvEdY,3147
380
- cirq/protocols/apply_channel_protocol.py,sha256=Unqz-0rVtTrB2tYuY8ZagQZNpJH5mpg_aiAwxeAC9ss,15694
382
+ cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
383
+ cirq/protocols/act_on_protocol.py,sha256=pRjl2lHqxuYWlJopkWCSPiwrHPggHOdRMb0nu-kHe2I,6886
384
+ cirq/protocols/act_on_protocol_test.py,sha256=q4vOBfG9-O8CIzmwU8HaB2HZR_U1fk2Vm-q1QhyeEpY,3147
385
+ cirq/protocols/apply_channel_protocol.py,sha256=s5gkjAcAMe_qdPJGPuZnt4r6zZhszpddnK8Ed-wEO90,15678
381
386
  cirq/protocols/apply_channel_protocol_test.py,sha256=ETAWrBTVkPuUPUgHsLZo1HUsJnZsO0hD2fQeXlXtvjE,10582
382
- cirq/protocols/apply_mixture_protocol.py,sha256=d2SW3v2AW0flY4zseYrh-p4PM29uuonKZ3nUTGQDmes,16323
383
- cirq/protocols/apply_mixture_protocol_test.py,sha256=6sNZhauFDec2MvHmUsvmkVF-qjH1WLDnZO35RT0OtRY,10793
384
- cirq/protocols/apply_unitary_protocol.py,sha256=euKDlasTpz4pDKIU_sbYd6Zo7EXL_o4KOqXUbnmsQg8,29777
385
- cirq/protocols/apply_unitary_protocol_test.py,sha256=i8kRY-yQR_MAUqkyyQTOHFEYQYz5Z0i-Wb0rs5Jz0fI,26116
386
- cirq/protocols/approximate_equality_protocol.py,sha256=P5mWl9BWGpobw3K7iAoupFPSqO9V2yG82rfQHWTClmM,6313
387
- cirq/protocols/approximate_equality_protocol_test.py,sha256=BYGw5iNU3lsdH5BUDPnqd9xfvfIo9-j5j0og_yXCQyY,9174
388
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=3pPxDZrRBo1xj-SMj7rmtHpFyZ0IDDpHGylvEEYuoJM,15914
389
- cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=nxcQZDEJhBJcrakWuQH6TWFSUjs5akoleTU8K9pGUZA,10178
390
- cirq/protocols/commutes_protocol.py,sha256=KW849TNso6d_pzTlAN8SRN2pjz72LJ8uAhQSYS60K3Q,7470
387
+ cirq/protocols/apply_mixture_protocol.py,sha256=pYxlpOXxPjMIddyYtEw82_18ioNNvEEcmsImaQ1YiBc,16479
388
+ cirq/protocols/apply_mixture_protocol_test.py,sha256=aWyzK9h9QNmpZJBu0ASaQ8BGYJt5T5KugN4OPMO5pCU,11129
389
+ cirq/protocols/apply_unitary_protocol.py,sha256=giJwec5XCEt5s0_uyNEuhGBlcDeJymPvuoIVx08hszY,29772
390
+ cirq/protocols/apply_unitary_protocol_test.py,sha256=ajjHvcBBv5n8Qh_hMPZkdsOvy1xJ774q4kuC25DJnKM,26136
391
+ cirq/protocols/approximate_equality_protocol.py,sha256=ZqnkoltD8vS1eQjV7Lw3RS49cdjZjGTF0LbdRUlBOCw,6257
392
+ cirq/protocols/approximate_equality_protocol_test.py,sha256=HRjM3PVRGgJNM1cqq7NQ3cMlsiYwL6zEm-MN4y7t1_M,9176
393
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=msCejCJx5QtvJHM-yro5gbyUfave7FNhqjr8bUw9BIg,16011
394
+ cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=dSvjaGEbMGuSrs4kpFen5Z-_dC1JzPvl27Dg47di4A0,10415
395
+ cirq/protocols/commutes_protocol.py,sha256=n7EQYs2giG3_Kh0bVhOXYQD7we7vTwj8IklBqQdolgM,7394
391
396
  cirq/protocols/commutes_protocol_test.py,sha256=h0Lky4jrs7Hxrh4MeHxmxNciuofKGGZ2eC-ceWP8wKU,5849
392
- cirq/protocols/control_key_protocol.py,sha256=S3b4XOvTIj6TxNbj0W33fjdvXiWSKOtflvfEGeruzWw,2630
397
+ cirq/protocols/control_key_protocol.py,sha256=sq4CswLr5TDHPmviNMF1shlL14D6XXlPxt3P985Esy0,2614
393
398
  cirq/protocols/control_key_protocol_test.py,sha256=190gp4QBu5QpP2doMmzx9RkAkp6VZOOWGOXp0RIFgqc,970
394
- cirq/protocols/decompose_protocol.py,sha256=0zDsymAFfTSo8mze516oNCvc2OmEUQAOaxoSyTQR0Cc,18919
395
- cirq/protocols/decompose_protocol_test.py,sha256=5L5lQN_FV9qtE3NHPsnxtdgUtY5uDEIfxZkBHbgDrGs,16025
396
- cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=0a93790FDjID46cX94PVAlA9i9Fu7uN8cj6qT94NH9w,4101
397
- cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=9H54KKkS3-_BrTSrEynDq1-sAcYfhLVmVqveLHieg24,5722
398
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=XH6Lv9SGuYhuuSB0mi5v8Eg5emR-vbICKUjjqfxDw1U,4295
399
+ cirq/protocols/decompose_protocol.py,sha256=YkpkZrvcXQ0fk1Nf7fT0Rfnee1SDzk0-d6dVE_ODCPY,18874
400
+ cirq/protocols/decompose_protocol_test.py,sha256=C3iON4sHaU9laztTV4HDbHnaSMwvpMYMG-ikKSnPf_A,16046
401
+ cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=7uF0v5c8pzmj9j7SbgG-dJ9nd4zddKMRf8tPx-Zr8Ys,4070
402
+ cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=4lTuxGY4-JfoK9vr_2OUHxr5IAnVeveq3OAZFkLi_eM,5965
403
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=JyJFMS_OdSr9kCS7INgfHrqjym9vSjOdTg6lK17KkK4,4295
399
404
  cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=0ia7ehyGpmscjRP448dBANZKwnlbqSODdPUYRUhDEN0,3879
400
- cirq/protocols/has_unitary_protocol.py,sha256=inj17qr8Pz2Zofj0Lsp2o7TWlfmdU1TybtRjs1TWVow,5372
401
- cirq/protocols/has_unitary_protocol_test.py,sha256=IjmJ3dqvteFUUO4FLwCTokgUvYy8H2HJjLmTDzt2__Q,5610
402
- cirq/protocols/inverse_protocol.py,sha256=CEqtGRRj86WQyyALonRXxQrNq-fENOs_Zqrlr_BVau8,4115
405
+ cirq/protocols/has_unitary_protocol.py,sha256=sOP_qz-9JKZ_yg9QDpF0uw0qGfV8dTS_UpPtEpk512I,5372
406
+ cirq/protocols/has_unitary_protocol_test.py,sha256=4KmFfE3ciJtHBwnYwXcu0uTzQyfeVz-YI3EyAxM9ZP4,5761
407
+ cirq/protocols/hash_from_pickle_test.py,sha256=YvDlLEQKZLhTaVhtHXGB4MntUhxN1Za9rQqf7ZfAfdw,4634
408
+ cirq/protocols/inverse_protocol.py,sha256=aicyqdJVDbd-ZO-wKHA8S_5CcPl3HDhRklSSdosRdy0,4115
403
409
  cirq/protocols/inverse_protocol_test.py,sha256=pqqIU4_G4Npc9Z-SeoM9eCB2T5JRTeI02NCXhP0UtaI,2017
404
- cirq/protocols/json_serialization.py,sha256=Otrrzsi74rfE_2wbK-xBUI3QzQaRnEXqsY1D_ktW4jk,24360
405
- cirq/protocols/json_serialization_test.py,sha256=Cn116fKZ-k7KNxwJXrCQSct7ioeP1hKIcZZ4HE5q2gk,27461
406
- cirq/protocols/kraus_protocol.py,sha256=GKQ748yxo6B6i0jUzq8OyR6lcEFYbh4FV2UryjUgSuk,9158
407
- cirq/protocols/kraus_protocol_test.py,sha256=QpPwkk7XBiGKNdrOcjXqtvhESVbUzujnUPz47uUNyqc,5401
408
- cirq/protocols/measurement_key_protocol.py,sha256=hl7xFi1Evebh8MQNLuUffhsUkggr4SdWUm4kIr9s2iI,13425
409
- cirq/protocols/measurement_key_protocol_test.py,sha256=M00RM-ujC2btd5UxN3BK92AGhZivDP1lRpxewj-G8VI,8514
410
- cirq/protocols/mixture_protocol.py,sha256=mtWi-QffTZwj_5ViLVrPixNQFCFdQ6ACo1Fo0mvIPmw,6316
411
- cirq/protocols/mixture_protocol_test.py,sha256=L0R2jSxZbi3pEhD2tOv8XC3tvi3s4csjQMk-VS987RQ,3616
410
+ cirq/protocols/json_serialization.py,sha256=VJCEXB9fkIZh3_d6dkh_QDxwjC3iJAlELGHsCmAMvE4,24779
411
+ cirq/protocols/json_serialization_test.py,sha256=qrh6XTy6k-FCVAd3QvSV_ENHVf9UUgHOt_pzsniI6UM,28144
412
+ cirq/protocols/kraus_protocol.py,sha256=NVzMsIyqxytGAui-avLdq3K0C7UqjckrTDvr0ENmDtQ,9300
413
+ cirq/protocols/kraus_protocol_test.py,sha256=NYVayiCaEpfvelsoR7bP57lUKn2pjFKYOiVOFHeZn9Q,5400
414
+ cirq/protocols/measurement_key_protocol.py,sha256=vqoxjmthtmQ1nWbi7Xd4fdxFNe5y3WL7DZkQ3M_VPnc,13409
415
+ cirq/protocols/measurement_key_protocol_test.py,sha256=W7yWKFVo6fMr7JjTECe8bMh1-NMDOpGMh3S-vmNl_3s,8654
416
+ cirq/protocols/mixture_protocol.py,sha256=L6FDIJmYqirVGsNwoUz5sulEDFoRUbhwz4yFL0ML2Po,6448
417
+ cirq/protocols/mixture_protocol_test.py,sha256=5mCh6JjlumMiSwDM818Nvo72AGxttuIYuawyESIQFtY,3818
412
418
  cirq/protocols/mul_protocol.py,sha256=ZhkowiHCulggWanjoz6HpMGf0ODqDNIjM32knFKPuJ0,2770
413
419
  cirq/protocols/mul_protocol_test.py,sha256=Qv7y17r-HjLXC7e-6t_Y6ht8lD_iiXE6CRyRFb7noGE,2136
414
- cirq/protocols/pauli_expansion_protocol.py,sha256=UfcBv5NbAVCmhziV3zjpTVZdKUTIr0v2bZ12qsv5CDk,3749
420
+ cirq/protocols/pauli_expansion_protocol.py,sha256=vtpVoBlU1pXm4RQf3DDGervXwcW8jqNxs6ETHPSsp1I,3750
415
421
  cirq/protocols/pauli_expansion_protocol_test.py,sha256=z6eo1mBCVa965OAbVYKlTAqN2VztjqgMVvcYVC2C46s,2728
416
422
  cirq/protocols/phase_protocol.py,sha256=dXZRJb7aT8ZvtliItZOvoiaev-QvjBT4SknwZ5p-RUI,3612
417
423
  cirq/protocols/phase_protocol_test.py,sha256=eU4g6VDqfWZCpklVlY1t5msc5kAZsP-UlPrROLll_ms,1939
418
- cirq/protocols/pow_protocol.py,sha256=0wgb4LLAkOWjmP_u-_6IweXovDViocbdSgtsMOcXdkM,3290
424
+ cirq/protocols/pow_protocol.py,sha256=nFeSTr9mNlbU_8eQvvy6OBjW0ukTFM0wYXRrZvrpgZQ,3290
419
425
  cirq/protocols/pow_protocol_test.py,sha256=8eBcGUqRWSSYkEkvSHXL6tcv1o-ilnl6nzgNl9vfctg,1626
420
- cirq/protocols/qasm.py,sha256=QG3wVi4xJBioMUT73i3EE0AWR4GnIZlfkAFL2PrJriI,6561
421
- cirq/protocols/qasm_test.py,sha256=FxMs2PKJEi5Y2XIDuXZKN1HJd0zgTqSuv8BQaudKwUw,1484
422
- cirq/protocols/qid_shape_protocol.py,sha256=j4z5CWET3suEepycUEwsUIy9WM1Brewc_gRmFruzucs,7706
426
+ cirq/protocols/qasm.py,sha256=fvypAAtkpTAiduQThswrPFJ70oK8BIYW5Bd7aOa3GRA,7406
427
+ cirq/protocols/qasm_test.py,sha256=O6QdL45eEPigqzy_oLB_CjFSQhtKUBmCtQWNdk7j8Zg,2216
428
+ cirq/protocols/qid_shape_protocol.py,sha256=kIsdspR6O6B_e2K7SKrRmmJS-9XSoguzEIGrsV5jzfM,7690
423
429
  cirq/protocols/qid_shape_protocol_test.py,sha256=Qjo-wemjkP__1jQnVkkB91mUs8EpfXyKI9GzeZQVb1E,2303
424
- cirq/protocols/resolve_parameters.py,sha256=NVFS5PSq18Hcvjv_P6vaZIa2D4OCgZY1u5j6QgPMlTA,7374
425
- cirq/protocols/resolve_parameters_test.py,sha256=sZvwdcwCuHj3l-jwxtorUp4BOsicqO4vQg2NvMgU4y0,4883
426
- cirq/protocols/trace_distance_bound.py,sha256=r_aXr3QuqbjCrXxwqDSyRyRAbCvWaZIzt95iy5-Wx-U,4172
427
- cirq/protocols/trace_distance_bound_test.py,sha256=5DFxGafD8HS9hg1BtHVBorqA91kAEH4LCUIxZW3cmCo,1935
428
- cirq/protocols/unitary_protocol.py,sha256=DE6djQAu_aHUBEznjsW-W-zRx8susfqUmQtYa7CTGlk,8168
429
- cirq/protocols/unitary_protocol_test.py,sha256=sby0_pto_WqznJd9xAXG-VtBNz_Sn3IQjEM4pUBtzjM,10189
430
+ cirq/protocols/resolve_parameters.py,sha256=XpHmkDCw94kWO-pimyXvdqdQ1MyULtiM5aP1_2woVqU,7398
431
+ cirq/protocols/resolve_parameters_test.py,sha256=LrgTQRxeL8VSBqs_YOM3JxikIBg-bZwwworjyVLIcos,4889
432
+ cirq/protocols/trace_distance_bound.py,sha256=vfZ1ecyjpOg-zg780uLy9vL8cBD_Vy4xY5TRP-CAPNM,4172
433
+ cirq/protocols/trace_distance_bound_test.py,sha256=FHec7-ngnDjdEf9APIMqU76XCcGO7bCjHkinjA0k5us,1936
434
+ cirq/protocols/unitary_protocol.py,sha256=ZH7sVFIKSqWQD4GrsM3BLlswWPiErXCl8aWSO1taow8,8152
435
+ cirq/protocols/unitary_protocol_test.py,sha256=PTvhsLPsRpfto5pkiaMSPcrxMkM9_53M81U6Ev7pwjU,10209
430
436
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
431
437
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
432
438
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -437,6 +443,8 @@ cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.json,sha256=dsqeDJmj
437
443
  cirq/protocols/json_test_data/AsymmetricDepolarizingChannel.repr,sha256=yxGsJgd17f0gqjR6Czu2S4driAi0gd9YElTbtIg3EnE,51
438
444
  cirq/protocols/json_test_data/BitFlipChannel.json,sha256=4ZfpIzTz4499IaLZFj2kV2l20JUgNlANYvELa9IW5Qc,47
439
445
  cirq/protocols/json_test_data/BitFlipChannel.repr,sha256=z_s9pPlKy_giiBKhm74FH2atbyHyaQDurqFWKwV2CdY,20
446
+ cirq/protocols/json_test_data/BitMaskKeyCondition.json,sha256=e39Vw4ZsMFshlgFfbRYK39XRHdms3eA2P38GiDAzYXY,1596
447
+ cirq/protocols/json_test_data/BitMaskKeyCondition.repr,sha256=bg5EWWsUcYOC9Xb904GnxnCLZJXz8YTUKBNLlx_OGh8,844
440
448
  cirq/protocols/json_test_data/BitstringAccumulator.json,sha256=YewIkbw90dcbB0D0mGU5wf4obwH6nsyWO5EG9mh3rtc,5661
441
449
  cirq/protocols/json_test_data/BitstringAccumulator.repr,sha256=7jc5mO0lwMODjK4sJAI3hQeHmYyw_jIKMtsSEYN2h9Q,1260
442
450
  cirq/protocols/json_test_data/BooleanHamiltonian.json_inward,sha256=oHhPkTBsLogMKpgdAr7RKA4EJ4XNCaSStxalfN-OETQ,218
@@ -499,6 +507,8 @@ cirq/protocols/json_test_data/CliffordState.repr,sha256=irZZrWXfNYM-bjA4IqHhgJMl
499
507
  cirq/protocols/json_test_data/CliffordState.repr_inward,sha256=irZZrWXfNYM-bjA4IqHhgJMlTDlG6rtlP34t9ix71co,52
500
508
  cirq/protocols/json_test_data/CliffordTableau.json,sha256=ErcX0cp1XEM28GvuVCxbWNLOx7OfVQtsB6cYwGOHfms,209
501
509
  cirq/protocols/json_test_data/CliffordTableau.repr,sha256=BA-VCQ1WeZNyhIwlQLeZUiLCeU2mTVuY4LA9Og0tJZE,34
510
+ cirq/protocols/json_test_data/Concat.json,sha256=yBNdsxH1jxEcLPnGpW1Ndji-68C1N8M-CQnco0WWCWA,311
511
+ cirq/protocols/json_test_data/Concat.repr,sha256=WG2vmD9Z1odmwXJA2N68cFjz4DkkoHJYPGNzOc0NUWo,105
502
512
  cirq/protocols/json_test_data/ConstantQubitNoiseModel.json,sha256=dbe4xJvXXIOv1KyjGJXlvJ3kd3W7XEHQt5xFY0bGEtk,144
503
513
  cirq/protocols/json_test_data/ConstantQubitNoiseModel.repr,sha256=OIRaaB6GlqJY_8TkEwvZQ8VpbPNi6fWii1vhTJn0t4o,36
504
514
  cirq/protocols/json_test_data/ControlledGate.json,sha256=CjFsQaCrr84mZ-fD2els2AQ0QZNlK9Jv4AP0znV02kA,757
@@ -553,8 +563,6 @@ cirq/protocols/json_test_data/GridDeviceMetadata.repr,sha256=CUgbaLZ0862iK2mLS_T
553
563
  cirq/protocols/json_test_data/GridDeviceMetadata.repr_inward,sha256=5-tHgWDBLwj3pO9zk8PwFI2WVQehlNiuD-RpzzvqRmc,1483
554
564
  cirq/protocols/json_test_data/GridInteractionLayer.json,sha256=cknuXeHfwGozmVXd6THWPYekpzI8HnLWl5jXSkbI0A4,101
555
565
  cirq/protocols/json_test_data/GridInteractionLayer.repr,sha256=TiFgGlm8d2jCVCDzhx9cszrLQzcv-VPFK3LoQAan9B4,82
556
- cirq/protocols/json_test_data/GridParallelXEBMetadata.json,sha256=3Pg6vILyIg4_vBMfQHQk1z3tpe9_T2LdVXdYfz-HMeU,2093
557
- cirq/protocols/json_test_data/GridParallelXEBMetadata.repr,sha256=vbgITfQ0oHwNJyaB75qlkI_RTMCtJdnetmL0NvB2bPI,917
558
566
  cirq/protocols/json_test_data/GridQid.json,sha256=hWMrmU0ghYgnQbl68phBRJOa_KBUZIv0iTmXgmVpDqM,72
559
567
  cirq/protocols/json_test_data/GridQid.repr,sha256=XX1XEb941M6if3604YWq9WNgSfjUGD5NLYOpeBsUntI,33
560
568
  cirq/protocols/json_test_data/GridQubit.json,sha256=-NehjeVv5xBjj70mdVIQNwLCI6-p1RI0lGN75IK4srU,56
@@ -695,7 +703,7 @@ cirq/protocols/json_test_data/QuantumFourierTransformGate.json,sha256=q9hLmKiaQ6
695
703
  cirq/protocols/json_test_data/QuantumFourierTransformGate.repr,sha256=p9ZBLLvpwEPUWRAVnNYgadfWycnQNHr4To00M24wi1A,68
696
704
  cirq/protocols/json_test_data/QubitPermutationGate.json,sha256=Zg8E-L75KRmeEkpL17jxtehXWbg6XVXs7NlEiOrDBtA,114
697
705
  cirq/protocols/json_test_data/QubitPermutationGate.repr,sha256=L1791EEPRlnjTszhMwMGiAZWlIwxJfyxF0V0a0QvMt0,49
698
- cirq/protocols/json_test_data/README.md,sha256=6ZvyycSyOlROrJ-4fIGM0n5O25-8gMVdBWIPP-E6Tr8,162
706
+ cirq/protocols/json_test_data/README.md,sha256=P6S2QZFQbbLxPeygz-9q3QHXtddUhT8fhhhe0TG3YU4,215
699
707
  cirq/protocols/json_test_data/RandomGateChannel.json,sha256=Q3WaKzmlQbYp1E50Cmly7MZoCslymyHn-q1lP7tIAhM,193
700
708
  cirq/protocols/json_test_data/RandomGateChannel.repr,sha256=BAMMnz2qd4vH4oYSVH-Xvh-3rndU3QXxMqCm-Z_0hdM,57
701
709
  cirq/protocols/json_test_data/RepetitionsStoppingCriteria.json,sha256=T_TkyEk3_KbSZXcY3mLXw1SSAbbqJqa-4cWb8KG9Bpw,114
@@ -744,8 +752,8 @@ cirq/protocols/json_test_data/SwapPowGate.json,sha256=I1ZVxusP8SzxwW2n3Z1XjIugux
744
752
  cirq/protocols/json_test_data/SwapPowGate.repr,sha256=Zr6oWijotmJVMeywjUikY0dPwXUZnfBJ6UMDqZIEwLI,29
745
753
  cirq/protocols/json_test_data/SymmetricalQidPair.json_inward,sha256=RfD0Jy1OE8GRKrMHYLy5ADQsYZ2n_WUFKPy3YMEfihw,171
746
754
  cirq/protocols/json_test_data/SymmetricalQidPair.repr_inward,sha256=HoS6O8xbikCUU1k7CGjkCWNqBq0UUl-I5B1aQ7ebSXU,49
747
- cirq/protocols/json_test_data/SympyCondition.json,sha256=X4HTi8KotQDyP9-EEhXV59XmBJ2RuCv_M62JHazNS6o,259
748
- cirq/protocols/json_test_data/SympyCondition.repr,sha256=WWpULvB0W18b_mzWBD0Bs6HnWQR7uN1qV6CDvF06Q5Q,76
755
+ cirq/protocols/json_test_data/SympyCondition.json,sha256=E3CHdecvRGhpukhJLxRUzwU-7j_xOV2SpYHCMc6oasg,1244
756
+ cirq/protocols/json_test_data/SympyCondition.repr,sha256=bLvqMeovrpidl37-x46NhKkVbR-erYpZnVa1cf5g0DM,254
749
757
  cirq/protocols/json_test_data/T.json,sha256=cQ6Lr96RK4lbRN8w7BkhzwcyjbN3zEdOoAa1RPEmbEg,72
750
758
  cirq/protocols/json_test_data/T.repr,sha256=HNwqoQ8INnlYEf_he7OVMYgMGw_eQAjC1umsxuA9YRA,6
751
759
  cirq/protocols/json_test_data/TOFFOLI.json,sha256=-Ch9-If0fyeWYFak9stM8uJ8iHa2g8blkyK5hKqCg8o,71
@@ -806,6 +814,8 @@ cirq/protocols/json_test_data/Zip.json,sha256=3L4Lazj5oksJCit2cvXhwnNJSDNh2kCGtc
806
814
  cirq/protocols/json_test_data/Zip.repr,sha256=xlnQ1-q0aTS9t1mMO7vdCSj14QAuff1kTMCTX7TvzIk,103
807
815
  cirq/protocols/json_test_data/ZipLongest.json,sha256=NEPlMm8IPrDHBrvyASwq9IZu5fROzqG5u9PiTbe8vXM,280
808
816
  cirq/protocols/json_test_data/ZipLongest.repr,sha256=F-Ds7_1eqKgis0YvJqj3LwiXbkH8ZdP9k_ThmWsJL4k,110
817
+ cirq/protocols/json_test_data/_InverseCompositeGate.json,sha256=04Jo6qCe2RCkOZZHP_jMqgSkCP0Y26ZdXOeU9UJuQd8,172
818
+ cirq/protocols/json_test_data/_InverseCompositeGate.repr,sha256=MiivoajhEj7wtXepm3ZKJC2tKKN4LUFbmZBe2WQU4mg,54
809
819
  cirq/protocols/json_test_data/_MeasurementSpec.json,sha256=c03X4XXcc9xz8rqLHnlUeEI74JeDcT1AuafZUyqNOtg,1288
810
820
  cirq/protocols/json_test_data/_MeasurementSpec.repr,sha256=RO09cD6h-Th8dwtERQ6bPW8tVZFFUW8JngAzc-ASib4,285
811
821
  cirq/protocols/json_test_data/_NoNoiseModel.json,sha256=mgmgKTFYinC7Jy6tyVtLzDlNAs57OtgImnGLS3D__TI,44
@@ -828,7 +838,7 @@ cirq/protocols/json_test_data/_YEigenState.json,sha256=1mIWq2O_hOuOfCOdThTf2iNx0
828
838
  cirq/protocols/json_test_data/_YEigenState.repr,sha256=xOsv4JMPz5zf4P9o2ezAROyUEVua6aIQYYCPXB3dZ7g,36
829
839
  cirq/protocols/json_test_data/_ZEigenState.json,sha256=DnBLzEfAc-tfaaVpBy8hd29Cn5NTDwcJwxhpRZ1SpZE,127
830
840
  cirq/protocols/json_test_data/_ZEigenState.repr,sha256=V2P3aMF1iBbzud8CUvnSVrBRt7KjOPbeWdeZKMRO510,36
831
- cirq/protocols/json_test_data/__init__.py,sha256=9f7jgLPoGVYZTfVJ0nGw5lu0uAKXJ8rZlQi82AJNglM,641
841
+ cirq/protocols/json_test_data/__init__.py,sha256=RIJ_YGR076gQ3AA0BBqlj_Uhi0iYoHu9KkFgzLY8kU8,653
832
842
  cirq/protocols/json_test_data/cirq.MSGate.json,sha256=G_roYqHu9XgZSu1lMZbInFsefVvgZfKuRubengXuawg,63
833
843
  cirq/protocols/json_test_data/cirq.MSGate.repr,sha256=grCt0Y_v0_26K-HgqtVzc8pRgS09z1s4JhjE-cAucoE,16
834
844
  cirq/protocols/json_test_data/complex.json,sha256=fGbU2uxufM6Pt-sg3sHazL0oiqusseIPOid-1sxi0Do,212
@@ -844,6 +854,8 @@ cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ
844
854
  cirq/protocols/json_test_data/spec.py,sha256=b_9-k4vW8eHi8umSwo7ryDAkjvUb74aW-UvZRKONaXY,5615
845
855
  cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
846
856
  cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
857
+ cirq/protocols/json_test_data/sympy.And.json,sha256=eaM07ihBPjZbn44gRIy6TbXeEwblF-QN32Jb1ATAQ5Q,178
858
+ cirq/protocols/json_test_data/sympy.And.repr,sha256=EFN2FEj37avIYn5AUyYycrQdIXANEABEdS2xKjQaKRc,47
847
859
  cirq/protocols/json_test_data/sympy.E.json,sha256=d2NfgXTX-YhePH-I0SkkI-lSSJ6PkqTnUZ-yngh9GQk,39
848
860
  cirq/protocols/json_test_data/sympy.E.repr,sha256=5TZkWsfhPeqaM5BUy4U_PrJOeJi4OogjqHSHlNPwMb4,11
849
861
  cirq/protocols/json_test_data/sympy.Equality.json,sha256=QB4ZR-brr3-DYLIDlzesq9Rcy3GlgU4YS12psrzur5M,183
@@ -854,12 +866,20 @@ cirq/protocols/json_test_data/sympy.Float.json,sha256=HFkBmN51ZoGF93U16X_9vRUVkN
854
866
  cirq/protocols/json_test_data/sympy.Float.repr,sha256=H2uK53HNWTF4tAG6TTP1Wuhvss-aAqWnI26sLNWOG60,52
855
867
  cirq/protocols/json_test_data/sympy.GreaterThan.json,sha256=RceHlPzCXOgE-hRrW9BMsXgR9DF24ok_Q_ptbMHtZec,186
856
868
  cirq/protocols/json_test_data/sympy.GreaterThan.repr,sha256=1O4MH_mCEhNaksrE_Fau_JW-mENwZSpSEZb2D61OsYs,55
869
+ cirq/protocols/json_test_data/sympy.Indexed.json,sha256=p678vhUV1kP-O7TL85V3OWfGDxWP6p58sL4dX3K1e8M,270
870
+ cirq/protocols/json_test_data/sympy.Indexed.repr,sha256=oheRHGYZc1SRGSr7UeVbg0SAuQM-z4qNbqRlzUKByRw,68
871
+ cirq/protocols/json_test_data/sympy.IndexedBase.json,sha256=ROJjG422YZbFmC4AWbQN9cMQkXC50VRIbo_Bq2OifOk,120
872
+ cirq/protocols/json_test_data/sympy.IndexedBase.repr,sha256=4YW8dM4s85Di6x9B8ZBV5b3Lxccelt9Y-C5U4OlVygM,36
857
873
  cirq/protocols/json_test_data/sympy.Integer.json,sha256=P1T8fJhXoMMN9RwTCXNAVsPA0022btcv1NkyP5QA7_0,56
858
874
  cirq/protocols/json_test_data/sympy.Integer.repr,sha256=dabVVMIK3-iXbhD4-8GR573r8CXfC2gyTu5GX_8JoFs,21
859
875
  cirq/protocols/json_test_data/sympy.LessThan.json,sha256=pYMllJqZcjAcH6-EU_N7lmcyQkR4pAXwH-UXaEKveaE,183
860
876
  cirq/protocols/json_test_data/sympy.LessThan.repr,sha256=UiCWBJlPEM1mTrXODmmHdigaHjv8olz9hodXSJtfPkM,52
861
877
  cirq/protocols/json_test_data/sympy.Mul.json,sha256=v6ync9FPSpGCMm215OFP6Ys-aNzZEUfoaJjQvxjGwJs,794
862
878
  cirq/protocols/json_test_data/sympy.Mul.repr,sha256=PyuiEzSnRFkhTO43ZUyL5H63mWEIcPSYrsEtOSsLdQ0,179
879
+ cirq/protocols/json_test_data/sympy.Not.json,sha256=pbGra21C3e6nYfVLQPSUZi6-fGjDMjkouRpKqZsvy8w,112
880
+ cirq/protocols/json_test_data/sympy.Not.repr,sha256=4np2NPnSsMJJRKO1W1ez5Fsj_HKzDnItzfNNLhhYeyg,28
881
+ cirq/protocols/json_test_data/sympy.Or.json,sha256=ldjgZWPfy2SxrPtPIAoD5aJ5r5zUlS52K1FN4IQWyr8,177
882
+ cirq/protocols/json_test_data/sympy.Or.repr,sha256=_jBJmKzI6kOtrG17Fme6LcTRZa7A3L2rgBoqDBKuZ94,46
863
883
  cirq/protocols/json_test_data/sympy.Pow.json,sha256=9t2ho1233pZBRu42LWfplkLZb4mqmRkQQ72dZx28GeY,612
864
884
  cirq/protocols/json_test_data/sympy.Pow.repr,sha256=Pq980YU8aHzUv5j_BUmwDHeGgzVi1rXX8N06Uqc_exg,148
865
885
  cirq/protocols/json_test_data/sympy.Rational.json,sha256=Nwgk-Tu5ycAjHhuhkokNFx4nIl4zuw4QTwMYiTLIZvc,69
@@ -872,140 +892,146 @@ cirq/protocols/json_test_data/sympy.Symbol.json,sha256=MvEdH0ou6Z1CRhKrTcPAABSlD
872
892
  cirq/protocols/json_test_data/sympy.Symbol.repr,sha256=vnQ0m3ghzzcMgF7aQqFAIX44BKNzAKGArMuTLjOypKc,41
873
893
  cirq/protocols/json_test_data/sympy.Unequality.json,sha256=Bd2vedLFPwZuWyIcipOYXT6G3wfTj-_I8HmoZ0_pBLY,185
874
894
  cirq/protocols/json_test_data/sympy.Unequality.repr,sha256=PsC01doMaEuySfnFUQhHdcAq9tlmLzSdQ8WKe8PUaTM,54
895
+ cirq/protocols/json_test_data/sympy.Xor.json,sha256=irgOYOU5To1SNNxdGC_mRveem8RpX-dn8VUThzJOFZY,178
896
+ cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPWquua5VsbJ8V5slw,47
875
897
  cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
876
898
  cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
877
- cirq/qis/__init__.py,sha256=C_gnZt9CNWEE0I1IAZE0liNVIv-aphUohIHJih-szDg,1836
899
+ cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
878
900
  cirq/qis/channels.py,sha256=AxKgLUbWLrb1pz9xLtSpYm_stjN-IWOwLFYC9YZSons,12798
879
- cirq/qis/channels_test.py,sha256=iqkSyfvx_c2ZpJKAVEsFyZRmKpzNrJsyFjHbaJUMqcQ,14454
880
- cirq/qis/clifford_tableau.py,sha256=X25eCXWEUWzoB-x6cna4LdLMFVNxUiIEUxKHJkkc2aE,25353
881
- cirq/qis/clifford_tableau_test.py,sha256=Z-5YSysJw2H3AfgZxhptvUMr5GUjUFgPcAUdcust9Qk,18441
882
- cirq/qis/measures.py,sha256=-e2mStl9882z4mbLwWtbdmmdJilmf6Ex2b_jSXhMX3c,12194
883
- cirq/qis/measures_test.py,sha256=3LTTGdvuFfZWmFyWFeUHpg1yGc9z0VE8j7Kd7J7y8i4,10092
901
+ cirq/qis/channels_test.py,sha256=x5pM-H790sck8uzon0dp4zHwLGxvZNZuJNGzjxw1rcE,14092
902
+ cirq/qis/clifford_tableau.py,sha256=fD5JCdQgJ5801Oohm3rl0bi83E0XarfuF_iJXTiH1oA,26232
903
+ cirq/qis/clifford_tableau_test.py,sha256=sHmHC3APFc5tpAkSSpVsywVgvAnkg5cYcj8KQjifcBI,18440
904
+ cirq/qis/entropy.py,sha256=KFMp9oH_4_q7emYiD5wIVRZFpgamyBXrA61_Ul7XGCU,3954
905
+ cirq/qis/entropy_test.py,sha256=FEx-cK8LMfj7iDwX3u-60U_Kg38l00K3uJfkLTQbuKM,1673
906
+ cirq/qis/measures.py,sha256=JvqbqMAlPeKlRNH2jPEpHHWlSPN7Id3axsSeFw7z5ik,12257
907
+ cirq/qis/measures_test.py,sha256=avHuP1sbU_uOnaJDMQFoQULPO7Q9npOUGZgZmXigHJY,10268
884
908
  cirq/qis/noise_utils.py,sha256=wakkdQdBzOUWCf71sCxMCWwfPPAnJi5bNYsXDzGzkx0,3680
885
- cirq/qis/noise_utils_test.py,sha256=6r99DBN_2bImZbuOIB2A9ZdvyipqDopXsoxV-8OUK_I,3391
886
- cirq/qis/quantum_state_representation.py,sha256=5ybXGqjGSpSZqOn9q6OW6IBOmJs8KQekv5fFZZMCqZQ,3238
887
- cirq/qis/states.py,sha256=PZs1pH6Uw1M9oOXlD7-uDwVGBPTX-8tUy8RTP1Ct_pg,42015
909
+ cirq/qis/noise_utils_test.py,sha256=EX392K8scTM7gpSyfTk6KxH5OHA2zfzRQ-Hb2KiT1mU,3391
910
+ cirq/qis/quantum_state_representation.py,sha256=dDWjauyL5WIGuPJ0eCU-LSIh5eG3nTtg0tXdjbcvxbM,3238
911
+ cirq/qis/states.py,sha256=m_pkBFBX6FjuZkJf7e64PemCAlpnzC2IUvoxu-aKilQ,41908
888
912
  cirq/qis/states_test.py,sha256=I4fHt5drqG0C36bvmU-H7DfY3zOC8CfiZFzKJvSOnFs,31813
889
- cirq/sim/__init__.py,sha256=NZlRrk-RxeNOmFLdC54yEeQiiWz7wXNRhGbZKmxCTjA,2342
890
- cirq/sim/classical_simulator.py,sha256=orp2WY15HNCJk60Aosq7igO3bjKcWjAAOeU_CiPK_98,9349
891
- cirq/sim/classical_simulator_test.py,sha256=TxPhVNLoOBPwTlyUCOQoqwid76ZBxQfmN9IPD0yxNHI,12701
913
+ cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
914
+ cirq/sim/classical_simulator.py,sha256=zrkFEiCuRo1lbO4sx6WVi_BQb120Dm18t8iRjrCGWPg,9335
915
+ cirq/sim/classical_simulator_test.py,sha256=FzQlf2hsyOjn0KL3QGpzXFPzJ_n73G5RoeuDxSV0-6E,12703
892
916
  cirq/sim/density_matrix_simulation_state.py,sha256=XRxKsKq13OlXR7429WBbKps_jmOoCBRa6U9PzYrYrTc,14065
893
917
  cirq/sim/density_matrix_simulation_state_test.py,sha256=uqSKZrXEPLYO7R3UW2d1y_Yq6CcyJ0drTSCjGbtzBuc,4369
894
- cirq/sim/density_matrix_simulator.py,sha256=-BIY8JjmzAJDmF6tWcv5lbH1yS7UQIlKicU1AJgttfA,17462
895
- cirq/sim/density_matrix_simulator_test.py,sha256=LgND8eN3AXgJzP3nYh0JmsTWJfT878BSzgIo4gZ54xY,61154
896
- cirq/sim/density_matrix_utils.py,sha256=9Fbzh0c9hzwEff383YwRit2K_tvlpT4Vyq3rjLijRyA,10273
918
+ cirq/sim/density_matrix_simulator.py,sha256=tBXKxxt_RyUXfZPqgIY8BcwOR8oguM9RfywjxAl7gfE,17564
919
+ cirq/sim/density_matrix_simulator_test.py,sha256=6m9V7ujqy-PML8fAi-42y6OI2sdeWl4TpLSypOHpJPE,61348
920
+ cirq/sim/density_matrix_utils.py,sha256=miwBOle6XjA3VdfF_wdAj1xeSGT5QPwYpjrZ_q5b2x8,10273
897
921
  cirq/sim/density_matrix_utils_test.py,sha256=ZJpeolcie9rSIvrWhxcGhzr6Ojyn8me00rfrDwn4y-M,14225
898
- cirq/sim/mux.py,sha256=gnQGQmArs0LdLnVmxAesOTnVmaudZmgIH6JUatGUXtE,12509
922
+ cirq/sim/mux.py,sha256=lZdA2wczdnK40GBTVtCMu89-6Ow6j6LvPRxG2pPWIE0,12509
899
923
  cirq/sim/mux_test.py,sha256=uJUUnE9qg10rF0pGWo_bAWhp8JzsmOGW4hFRZeTKwdM,13680
900
924
  cirq/sim/simulation_product_state.py,sha256=ehrEXLCZkcthtdYMZTZragWsPmsgzxxnmXuPQNEEg-k,7052
901
925
  cirq/sim/simulation_product_state_test.py,sha256=ajfQcf5QpF40FndpoKetNluRfq6ds91buKFxiTafoXg,8905
902
- cirq/sim/simulation_state.py,sha256=vmjfaG0ugHcdrzRF-xRLPDgNVwwuo1RWe3mHR2ytK1g,12640
903
- cirq/sim/simulation_state_base.py,sha256=95FDt2omBxU-3KXwii6KCKMC9MtXRc1ZtnLZRE8vI0o,4196
904
- cirq/sim/simulation_state_test.py,sha256=ubfkvFui9zPQwC6aJw9rmehd_4oDQCi6L3Pe1EVznAE,7410
905
- cirq/sim/simulation_utils.py,sha256=74Jvi2m4HcRo0i1h7MNvul3Ho0Io8HW0KARA3Ntjh_4,2553
906
- cirq/sim/simulation_utils_test.py,sha256=1YCuaKFf0JfOqdEbdYE49wlNWmhmtQKUQMIij6YyiDo,1333
907
- cirq/sim/simulator.py,sha256=lTUcub_HJC5BYvkN8ysqzHHkUHxloncEQm4fMJZ1Dls,41875
908
- cirq/sim/simulator_base.py,sha256=mAcIKPT6lsIvAJFdSC4a-cGQFU0kegqbL80K1K7mlFM,18186
926
+ cirq/sim/simulation_state.py,sha256=lnOKBgwheQnl-iaGLxys5AVhul04CM_8VIHiUbdLd78,12659
927
+ cirq/sim/simulation_state_base.py,sha256=QYlVrDkW3xC7tSG65WySpW63_1HdEAEMcAhGXeKE-KM,4180
928
+ cirq/sim/simulation_state_test.py,sha256=dGS7F9IjEMyHp_WEJ3jtY7nCM20yY6Lt0rh3C3AUZG8,7430
929
+ cirq/sim/simulation_utils.py,sha256=hsR4ea2eERW3ugNPSheE0bNBYEcJl6US-a6rmu7CSOA,2598
930
+ cirq/sim/simulation_utils_test.py,sha256=iBJJxPs0J2HVpAIvuRwg_kiq3-VjhWSJhOM8irQVAkQ,1332
931
+ cirq/sim/simulator.py,sha256=d5EFMunjzPATr5p3O4e8x0c-Ee3Bd3XQeOfyPXBwPsQ,42046
932
+ cirq/sim/simulator_base.py,sha256=KUkNDra8sSIPl3i9BTkXa8RH45wr7Qi-oc-2UGyDWPQ,18186
909
933
  cirq/sim/simulator_base_test.py,sha256=Ik_28QV2Pzdc4tGxYMAVnGrNG1IWMiwuKUJcaCeuG7M,14955
910
- cirq/sim/simulator_test.py,sha256=9cHMoY7M5_82gfeBsCg6O0PnictzZu172vQAgUngJqA,18119
911
- cirq/sim/sparse_simulator.py,sha256=OvVjqNk5Kb92DM8Nrdw1BGOB7GFlT6yiXwIPpAcLV7I,12854
912
- cirq/sim/sparse_simulator_test.py,sha256=3EAeCHUQeKllAAtdw14X592zBsGQY_vwfIYK-gEr_zA,53587
913
- cirq/sim/state_vector.py,sha256=N6N9EELlW66UaLTBaq62ms0XkfIK7CzN9SBM7t52dXo,13428
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
937
+ cirq/sim/state_vector.py,sha256=-uPCN7MjorKZfD-LZU3-0Ld74zUgmOWD4cGx5BxB1HY,13428
914
938
  cirq/sim/state_vector_simulation_state.py,sha256=e4it_DT1J-30S3OX_gfMJiWAttFaVOMEPQ-Y1ARWnDg,17616
915
- cirq/sim/state_vector_simulation_state_test.py,sha256=UtGMIurlV6N74nX7qoVnGoRhwF35-ghDEIP7Mj5AXmI,9841
916
- cirq/sim/state_vector_simulator.py,sha256=j1Dcu6k3gtX2cHedVlJiSgDQ_WQ2UUUyFnAEeHrOF88,8201
939
+ cirq/sim/state_vector_simulation_state_test.py,sha256=DyHEbI1ahfjV-jqE9Iak2qKWYCM1IsirrbSuSCJ5GWA,9861
940
+ cirq/sim/state_vector_simulator.py,sha256=uHK8nEWAu0oOlgGhwHsnwE05BxY1X2GEoMpyoC5K9DM,8201
917
941
  cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
918
- cirq/sim/state_vector_test.py,sha256=OjhAL2tWqJWstHV8RvJYQVqg95zm0PcS9nQKrLOhMmQ,16934
919
- cirq/sim/clifford/__init__.py,sha256=lD7l6JuE5n0xwvOYNYH-giCH3qAEVH1SUwDrZM1jKKY,636
920
- cirq/sim/clifford/clifford_simulator.py,sha256=V4rExIDeijZ-sjMAyS_dDt5aE-RIrzTWpwF3EnSujto,9732
921
- cirq/sim/clifford/clifford_simulator_test.py,sha256=pgLz8-SSFLBq6kcJ516ufQMJiJI2dG9NM2nkmzwY124,20380
922
- cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=fNkK0gZgfWIvMknGiCr4BjGO0wVYGW1Rc0pnwluerho,2160
942
+ cirq/sim/state_vector_test.py,sha256=AF5LbyRymSjuFDG19gPetp7morKLl8v5yfgf17TFCNg,16586
943
+ cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
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
946
+ cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=YO_I-k-WeIqbwRapUMoJxKA3B93uof8ewbBvVNNIu8M,2159
923
947
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
924
948
  cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
925
949
  cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=P6MEakfiHrlVYyoNDOJt9_txIdq9y87WD9lrtJIcM48,3874
926
950
  cirq/sim/clifford/stabilizer_sampler.py,sha256=XfJ2Y0bpCZTdAmiOVMIYPKDQ5SII5EuDJ9WFXRC-8nM,2540
927
951
  cirq/sim/clifford/stabilizer_sampler_test.py,sha256=sNqJyUY--wqHjsPfm4E1YPBll1-GirvxKFz04n5I0f4,1338
928
- cirq/sim/clifford/stabilizer_simulation_state.py,sha256=5ZeHd1mlz6LW_suOOEWHNX9i2FPFTfHSkGiWCxmGUO0,6739
952
+ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=mqADFqLHg2Kit9EsuhNp8ntZQQnTRXc51ZQ9LdqQ4PM,6723
929
953
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=dsphoXTaIwRCjprGJQirSs0qeVKHlni_pt_GZJn5Vpc,4317
930
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=yz9x7F72wfgqfSiEhoH2rJ-n14nsYMapMvpkhwidIOY,14032
954
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=K3tmFeEAwuZQT3C48lHED67B11IHHeWsGoj4WRIsfLY,14029
931
955
  cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=FK0IsyrTfT6ZPZeBYmyPG2xpzUT7RG6P6UQw_61c6kU,3149
932
- cirq/study/__init__.py,sha256=HCuFRBzCJGGDhtoHRzrnD5IWB8EnMrX-4M6AmVO0tP0,1220
933
- cirq/study/flatten_expressions.py,sha256=LIePrTJJW3PfdQS2jJ-DxhjpuOdwdBZi0WbtXHf2qmw,15638
934
- cirq/study/flatten_expressions_test.py,sha256=6e7pTkaBrZW-EmG4teZxcwemqnxCtJW3kq2KOlPcwW8,6078
935
- cirq/study/resolver.py,sha256=-X6R4FQ5nkEyaf4YsNFTN1Ui8Ss-Mkn39pHOV-vgsZQ,11773
936
- cirq/study/resolver_test.py,sha256=QQe9Rr0z6qNbSWPEvCKd_DNka6454AWVKbG2J2DD1Wg,10228
937
- cirq/study/result.py,sha256=KzjpjvDVCTFjMyq9r91pZSYdtcD1x3yj8jP_StlOSMg,19285
956
+ cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
957
+ cirq/study/flatten_expressions.py,sha256=XUvPFOnuV8jOO2ZyvL4dsD3UWJXhyN2YfyVyq01BJgQ,15582
958
+ cirq/study/flatten_expressions_test.py,sha256=bJZKjgz_brS71Zf-cdpI7MCY6TMhzilHp96Vhn3DoOg,6078
959
+ cirq/study/resolver.py,sha256=h0K-oymS620W2vLlC22FOe8TfraLNF3N_F-Ra24y8os,11790
960
+ cirq/study/resolver_test.py,sha256=VjZn0408VHq9JLB5Che2d_cZhO4JchnrMgnyLL6gjtE,10531
961
+ cirq/study/result.py,sha256=IjeBZ5eiYC92xDG8VbbH5avZzJl0nh_rArZu5oOIIHY,19285
938
962
  cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
939
- cirq/study/sweepable.py,sha256=BMgq8lxVnyJGBeu4gFUt_0P_v4gFwKgazZFftRUEwnA,4185
940
- cirq/study/sweepable_test.py,sha256=xjUksIurfbh240fEC7Al_TuiHGz7xZGktQUh86XBG9U,4772
941
- cirq/study/sweeps.py,sha256=8mUc5dnOJxZH8m_6ncgkZRY7a2TBe7_9d3WcvJAyZlA,19900
942
- cirq/study/sweeps_test.py,sha256=YdXHzZO10OHoPTU2ifmsfH7KByIJeeANy91AHqX8nwg,12135
943
- cirq/testing/__init__.py,sha256=cACho8s-V5tNOjBcDUtr2DipQxQcbUgbr4MESJb4l1I,3870
944
- cirq/testing/circuit_compare.py,sha256=nBQES45wLVThOqC3WrPrYKLQP7HQ2pH5DjlJ5bHkrtU,19176
945
- cirq/testing/circuit_compare_test.py,sha256=AduZCzwBNFCYrjEpyS1DvIR6jU8GaFqQBBgPXyIALoU,19743
946
- cirq/testing/consistent_act_on.py,sha256=ofYxdotw7fDfEVaAoM3NJEG2-hTHmi5FlLZkLYfVBWE,7733
963
+ cirq/study/sweepable.py,sha256=TXry4R8jDqhbq_FXPFdLlF9vEHA0MQrmFbJd4K6PlPc,4358
964
+ cirq/study/sweepable_test.py,sha256=ENv03_GJmbUc_ukJoqfgG-H5C_yyx1jCcvxohSMyQVU,5502
965
+ cirq/study/sweeps.py,sha256=q6wHpIEjK5sQQdxTERFqp_BxDtiHKVQ50zyS7TOrYa0,21673
966
+ cirq/study/sweeps_test.py,sha256=1DZboNgbOMvnP-UYzjVN8uPCbkuj0vw7gKi2FW7fMzQ,16160
967
+ cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
968
+ cirq/testing/circuit_compare.py,sha256=7Y9agOcdxDnOvigN58OH9NNvlW-HGTGLjZaj0tRVep4,19175
969
+ cirq/testing/circuit_compare_test.py,sha256=yGf1ZqiYzvEj_mepbwHo230d3mwb_4N7K0E_Lhxms_Q,19702
970
+ cirq/testing/consistent_act_on.py,sha256=aMdeUGXQFQpBAEiKPOQPS75HlKXR8cgA7KDJCUknhmw,7733
947
971
  cirq/testing/consistent_act_on_test.py,sha256=QXQCN76-zzNxZXc5S7XwPSvWWQ6Cl3v_k-1Sak5LCbo,3535
948
972
  cirq/testing/consistent_channels.py,sha256=hrPRjaabPko2l0xqqkJ8F3OM7pornkDNCP-St2noHXI,1737
949
- cirq/testing/consistent_channels_test.py,sha256=Xpm0KA5ArxGKh3h1GJ9sdDrLuyDCrnkVZgzPZOQYsTY,3485
950
- cirq/testing/consistent_controlled_gate_op.py,sha256=RQf9twK1sgjSt1Wb8muneybHrBv4HttHoZdmgi4nqP4,2675
951
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=0SyZ6PQocBivbpO_yTjA7iz2_Rpj2dwWjwpLGLT7h24,3252
952
- cirq/testing/consistent_decomposition.py,sha256=mEjnRALNL4XyzLlb-87FvIZT0Oc9KBQ9vARQaIJxwx4,3704
953
- cirq/testing/consistent_decomposition_test.py,sha256=6GUPhZQI4FVHM9fYZbHr62-TrwiK0jOPMTOznDellFw,3820
973
+ cirq/testing/consistent_channels_test.py,sha256=KTh4v1esq6Wy01QnRQJzL74FGmcnfrKRJStazZ4UcI4,3486
974
+ cirq/testing/consistent_controlled_gate_op.py,sha256=P3-xUwoWbXEjR_e5EHWNEiFc0rI9CKAxd1CuCOGCWvA,2676
975
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=L1ZBrgcwYoaHiwfhc9PBDPQJ2zwXXp908siovKeco1I,3251
976
+ cirq/testing/consistent_decomposition.py,sha256=FecPij4-79tDS76tumbzFmCXVNcdDNS7DkTFzKF_qbQ,3704
977
+ cirq/testing/consistent_decomposition_test.py,sha256=QZ6dp76_X00a0z2Quu_jjwDnCfq5MQo5ochC6do9mFo,3819
954
978
  cirq/testing/consistent_pauli_expansion.py,sha256=NVloOg1I8LGGIEoZxvtUQIUHRvMgo9CNgw5-atuXGsE,1580
955
- cirq/testing/consistent_pauli_expansion_test.py,sha256=Gy95osE-L4uQs1E1oxAKHCgVguXl-hjI5UNQJW5cEdI,2402
956
- cirq/testing/consistent_phase_by.py,sha256=oSZcZnKMOIJnBS0HgYi-8aRaVJmHGgI--WAUGC5JxQ8,2085
957
- cirq/testing/consistent_phase_by_test.py,sha256=YbI0n0FpWpBkbgYp0-yGZSeesDZEst0cmYtXgJE2LQY,3273
958
- cirq/testing/consistent_protocols.py,sha256=ZRLuaquTuSGhI_KaOdXa0ooDJC3gOO3ykfciKiHqhrU,7773
959
- cirq/testing/consistent_protocols_test.py,sha256=PFp9DF5b2Il2lj1NW70JKPxa5JbG4I_hn-ftis10UD4,10020
960
- cirq/testing/consistent_qasm.py,sha256=1-Rq2NfyRHh1bqPYuhBIsH9OkepUSONpNdxDMODSsrQ,5108
961
- cirq/testing/consistent_qasm_test.py,sha256=IM1BDeqZflv0Tui669KRLOlKKWyYnJ9JA-Xoy4lI9Bs,2883
962
- cirq/testing/consistent_resolve_parameters.py,sha256=hYbp6kbXrOLCc1DMDRC2zTAx1qlvCCJMuzZ7a5cGhmA,1973
979
+ cirq/testing/consistent_pauli_expansion_test.py,sha256=tElSpORomKnd351GsdBUZUtUXViRfN4YVAZav34Ocu4,2422
980
+ cirq/testing/consistent_phase_by.py,sha256=mxZiGh5NV4CFpta8mleJc0yLSWrwVUMsyD1c8v229vw,2085
981
+ cirq/testing/consistent_phase_by_test.py,sha256=ik887z3ZsJs949Rbx6gvdIicNf5pc6uyyUqKgA3IfvQ,3272
982
+ cirq/testing/consistent_protocols.py,sha256=xf9F41rUENCj6wARpmhWG_-xg0kH5P2tfxwNNAiH2b4,7754
983
+ cirq/testing/consistent_protocols_test.py,sha256=1lizbN-A19lY0Ii9T2ulySbM4SMAp_rl2RrGC2sT5vA,10003
984
+ cirq/testing/consistent_qasm.py,sha256=oXd20Hfkjkdl9n5i4tgxIwuE5wx1-2GF8XHXj8uCpG8,5041
985
+ cirq/testing/consistent_qasm_test.py,sha256=KRIP7WbaPu8QZ-KalZvV6kQSjLmtjzhU6Tz51rnTaHw,2883
986
+ cirq/testing/consistent_resolve_parameters.py,sha256=fa8_3KjsS1O0vPJ7P68FBjg56f2IqadSCYfU0ClnoKc,1974
963
987
  cirq/testing/consistent_specified_has_unitary.py,sha256=A8UWU8etwXmEs9GWLI94NiIkGUHUHxMNY-5Brqd9oj4,1132
964
- cirq/testing/consistent_specified_has_unitary_test.py,sha256=5LPqoLCVBT8Lr8YEUN8wYZPG09A62mqFwF-WW-_F81Y,2529
965
- cirq/testing/consistent_unitary.py,sha256=JWUNy4HeWbs4JjPm6kLTKfqNq1wP2e3WYQxpDabkfZU,3247
966
- cirq/testing/consistent_unitary_test.py,sha256=MS0cHzR7gwy4zM_AHiYqNErj7bhqmQX78eIuaYORO6Q,3260
988
+ cirq/testing/consistent_specified_has_unitary_test.py,sha256=fKSSn_cZjcJCQBtKFZfU5hBNlEeJompD3mKs6Grju8o,2529
989
+ cirq/testing/consistent_unitary.py,sha256=hDeMI5sVJB7RsNMjiEv5sGRCKHUeigq0WvSeSro5pmc,3249
990
+ cirq/testing/consistent_unitary_test.py,sha256=DwlqkwYZL5KM8J8JJXLpMBP0x56lLk4Znziyj-xd81s,3260
967
991
  cirq/testing/deprecation.py,sha256=neyww8gBZZmgwPX8xPw8Mg4HgG0OXwSixhOAHnIU2ks,2152
968
992
  cirq/testing/deprecation_test.py,sha256=bWq_VY-rGnfvdeJVqdkMIDzMtxQRj9rdR6gu0kCHtzo,2166
969
- cirq/testing/devices.py,sha256=fA0rcpZxMU0fVObtLcsDJa4XS_QBzi6uH58W0PAYOoA,3259
970
- cirq/testing/devices_test.py,sha256=tIckfI9te14AMPIqJZiQCYtVPT6b5f10yt8Oy51Iouo,2852
971
- cirq/testing/equals_tester.py,sha256=ZZVY9IUyFghgzOLTq0VygpvGl9ErWwgheClWKkoHW-Q,6569
972
- cirq/testing/equals_tester_test.py,sha256=-HAlk1SMYuS-v0T275Hn7tT6IIvcBMrXUyzOB975lI8,10265
973
- cirq/testing/equivalent_basis_map.py,sha256=pUsJtO87hUGyAeGXR_pSKKkQ72vltsDj01EObxGh5g0,2632
974
- cirq/testing/equivalent_basis_map_test.py,sha256=Wiz0AzdU4JMBUqgwgEts4yu2Zwi9GyEuVyYRRzEfbXI,1488
993
+ cirq/testing/devices.py,sha256=i3v7hOGgblJXxOdZhWeAd-XszsF2PX4-ooTmqUdkAoM,3259
994
+ cirq/testing/devices_test.py,sha256=TDtCNDj4VemrpjJxJsUgwz71crvpJLM3h-HDoAvfZFo,2853
995
+ cirq/testing/equals_tester.py,sha256=3rTAyPAQs-Ocy8v26SzSSjmaqz3ROk0oZw0DpNWaWs0,6587
996
+ cirq/testing/equals_tester_test.py,sha256=9Rl9i-ccl7OAF_aXbVUiBgF08BeHJfn37I5Nk1etRag,10366
997
+ cirq/testing/equivalent_basis_map.py,sha256=y9OlbBOWn-AC7l5x4iLfq5T4q8SxaWX_a-__QjL8_p0,2633
998
+ cirq/testing/equivalent_basis_map_test.py,sha256=4oRrDR5e9RilUF5QEGg5QAg-pCpIeALHGmUPLd3CtrU,1487
975
999
  cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
976
1000
  cirq/testing/equivalent_repr_eval_test.py,sha256=FTe_1O9sl84cSmTuxPP8m38P_3mzXrF4yU5X8Bj2wnc,2964
977
1001
  cirq/testing/gate_features.py,sha256=39lXCy54-V-b7WT0UC4CQaNCsFLHDLagJVVMG8fCz98,1367
978
- cirq/testing/gate_features_test.py,sha256=I5hTTazOYucDCqowWtdYN4rvd9hK-9Nlv3fRjs21Bvw,2168
979
- cirq/testing/json.py,sha256=is5G95eKX4QirzElQxAbxXBf-zF-N9G6I3ptjL0Ne64,6646
1002
+ cirq/testing/gate_features_test.py,sha256=yqtiMXKqktYnpkceXQnmkBixHf7DO_RRbJ4ccuKd0jQ,2314
1003
+ cirq/testing/json.py,sha256=vFCtegpsu7LG2Bc83Nxy_dM8AuIpxA0_10PWE1vIpVE,6639
980
1004
  cirq/testing/json_test.py,sha256=Qblb8hCGk8FUNk-L0lwOMs91YKpsfcOj7O3Ng1YG3y4,1092
981
1005
  cirq/testing/lin_alg_utils.py,sha256=SiW2C_ugq3OKfyioD48INjILg7AjP24Jz6q5l6L1uEI,6353
982
- cirq/testing/lin_alg_utils_test.py,sha256=wtQGhHdIGe__4lL708arpN0n-nNjGIlATpsXHlkI_eM,4113
1006
+ cirq/testing/lin_alg_utils_test.py,sha256=t5C9Sx51l1xscYzmTzrJj7wmYucAIrHHgyW4hF8eXUQ,4113
983
1007
  cirq/testing/logs.py,sha256=0nTTrOQX-T5rspj7kZxtGsqPQg06ZddRAyABT03tYrI,4053
984
1008
  cirq/testing/logs_test.py,sha256=iBFaO_cwddBlaCYhX13GL9nqRBWeGPekT9hAuZOo1CQ,5719
985
1009
  cirq/testing/no_identifier_qubit.py,sha256=aRnTp9a7BQguSdZzcGV4_W-1URjTHTYsa-xxov2H4_o,1195
986
1010
  cirq/testing/no_identifier_qubit_test.py,sha256=mNjvPIqh-G_t8TsWIa3-9J2i4rqpt9CndKDBb7dnz6Y,941
987
1011
  cirq/testing/op_tree.py,sha256=fb3bOoTihGWp_NvPHekI7s9YZIaBoiufDVhh4ARCfhQ,954
988
1012
  cirq/testing/op_tree_test.py,sha256=MwDpi5Lw1e3Y_-9Psx9MPvbbW2x4JlOpp7hl8mBvOQA,1073
989
- cirq/testing/order_tester.py,sha256=0_tfixWyX_HrjTXpNrVFZT9bA6J585Ad8tjS-DsX8yU,6690
990
- cirq/testing/order_tester_test.py,sha256=2mifnUW_BT17jwWZjmM9p7EoJjq0Ouz54o3G8BqvDqw,5111
991
- cirq/testing/random_circuit.py,sha256=oMoz0_VWWVmUGmJ9mu1R7NByNKtSadxdLjFyDEE1qT0,5900
992
- cirq/testing/random_circuit_test.py,sha256=x0ovYOIc3-QNKFjCc87LbLkWNwFZKx6T97ZCN3QGRsI,7026
1013
+ cirq/testing/order_tester.py,sha256=_qGL-kb676FBdn0Bv2Bj0emRKQeFcGdJcDyLHsVu10I,6690
1014
+ cirq/testing/order_tester_test.py,sha256=qHqIM9FoaOBtQYA2jUUjP-mSVCLRp1jhUyxlaJF-EO0,5111
1015
+ cirq/testing/pytest_utils.py,sha256=I3R5oGjZpoc2eWzEVU940hnDLwlDlD5cSa9-B4le-1I,1920
1016
+ cirq/testing/pytest_utils_test.py,sha256=LbgQP5UrMapU8iB53DzBdtg69lGKnfCIjGM-yJzEp54,1314
1017
+ cirq/testing/random_circuit.py,sha256=UnMFu2Dsl2JQEp_5iy75cjOiwBAPRrPPuXSYvEmU0d4,5900
1018
+ cirq/testing/random_circuit_test.py,sha256=ZElBd-x7l9J5NiaP9O35b810zo2liC6f7JU2-dupSzQ,7026
993
1019
  cirq/testing/repr_pretty_tester.py,sha256=dtk713qmE87Biaez3c8R83Wb7tlb4xWFfzt44iKkbto,2899
994
1020
  cirq/testing/repr_pretty_tester_test.py,sha256=wvwqD72hnAJe7Vg90goZ1Voz5PNGtWELOxAyEn58ivo,2226
995
1021
  cirq/testing/routing_devices.py,sha256=uIm0j7GcChiHog9-c7kyIw9qdfBEmLLETRF37UwLviY,2530
996
- cirq/testing/routing_devices_test.py,sha256=iyNZp3J8fUt8bOktXZNhDgxR6L8UBRphgzYmDsmHvTw,5598
997
- cirq/testing/sample_circuits.py,sha256=8HTrY_RWoPHV18q7aLz6e5Fjd2Twkt9Wkc_IDBzTE1o,1585
1022
+ cirq/testing/routing_devices_test.py,sha256=qWyXzI8UI2_HhzDGkVZLyQz6LtHFxwho6ZHTlq1gBHA,5599
1023
+ cirq/testing/sample_circuits.py,sha256=O0K1wNjG6dAqvXlwYhP4AmS7Y8RmbfrSKwT9y7Cvaos,1585
998
1024
  cirq/testing/sample_circuits_test.py,sha256=IMz72CMXJeRt7Eg1rRB68hFV1v3k7OQpYUyhqmfjNpo,876
999
- cirq/testing/sample_gates.py,sha256=qSCZhb-A-Mwm_J81Su2sUFyEUdvqfq7Je66dsk8cFy0,3277
1000
- cirq/testing/sample_gates_test.py,sha256=mkfYPNo4WFH6y33Vr_f9zy2Ry1oq5yYLpB__sqSCkjQ,2377
1025
+ cirq/testing/sample_gates.py,sha256=XM5v31XdW_HOtvmp24QNgONf8_eQhHN_BzgcEK6Xp-g,3280
1026
+ cirq/testing/sample_gates_test.py,sha256=Nk35G5th4OJebzkGd7edi-bbbM0nO4EryUJUkFzUcbw,2377
1001
1027
  cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1002
- cirq/testing/_compat_test_data/module_a/__init__.py,sha256=MHrL6kJFnYTXaRT-bW-gVPzizJCN4bIU8ZFB-tXUGZg,384
1028
+ cirq/testing/_compat_test_data/module_a/__init__.py,sha256=hiodvWwXhGy7bG6L5CrM1vC3UIHY351RuK4As_joaMk,415
1003
1029
  cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
1004
1030
  cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
1005
1031
  cirq/testing/_compat_test_data/module_a/module_b/__init__.py,sha256=QPjVtgaK3kM9SPi3NocWmZ4FGh_V6Ct5qDHZkDIeCCU,159
1006
1032
  cirq/testing/_compat_test_data/module_a/module_b/module_c/__init__.py,sha256=InVpoxhxUpAKUFiY_M6DK6cCw8Qgxv6JEYAeUQ08rjI,88
1007
1033
  cirq/testing/_compat_test_data/module_a/sub/__init__.py,sha256=yJoMq-mlYtYsUxms4ItX2NeSRrZYirmc-9sZ9AV0oCw,124
1008
- cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py,sha256=Tb8_d17xSB4r745YohJ4pxjAC4V7hcExPHZx-4eZzn0,138
1034
+ cirq/testing/_compat_test_data/module_a/sub/subsub/__init__.py,sha256=ERf76Zh2nhGeoGky01MHwYVdhZZZG0gpqhOWKhp1Mvw,155
1009
1035
  cirq/testing/_compat_test_data/module_a/sub/subsub/dupe.py,sha256=L7pscpZJYh5jPDgnLF0aecWGJ7G8-IqkdAhjXYHCbog,77
1010
1036
  cirq/testing/_compat_test_data/repeated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1011
1037
  cirq/testing/_compat_test_data/repeated/cirq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1017,166 +1043,174 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
1017
1043
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1018
1044
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1019
1045
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1020
- cirq/transformers/__init__.py,sha256=-buJqTF2c6rUM18JDGSb5aMKWtyT24jE_mMrHo6DsdM,4222
1021
- cirq/transformers/align.py,sha256=B4DuX84DWd4tLfMH21JviMZSOFYu7KCOMSEMALYsQpw,2727
1022
- cirq/transformers/align_test.py,sha256=M4etT2cgESv1RdkKASguiGxEuqY7kmI1IswjSi-1jjY,7174
1023
- cirq/transformers/drop_empty_moments.py,sha256=Rtn_BrpwkLXyZBdLzwdnsnEGWTdYuf1xOPakzbpv7-w,1517
1046
+ cirq/transformers/__init__.py,sha256=QjYovkmQHRi7D6nPHkWrszVBM_1__thvOXG4wcYvX_E,6905
1047
+ cirq/transformers/align.py,sha256=qb6tOGydFE3gXwfutND2gKSz5_w7ImRHtxaoU85FRgA,3331
1048
+ cirq/transformers/align_test.py,sha256=AI26PxERbtJDfjKtoz17xVAKn6TSr-9pyImqfr5LJWc,7686
1049
+ cirq/transformers/drop_empty_moments.py,sha256=B_wGBEnhc9ILLDwxNsgt_13aVhhDYs1g9JzDzdD9Nrk,1518
1024
1050
  cirq/transformers/drop_empty_moments_test.py,sha256=G8pZmTfi8NG2NpGz_K3LZu5NQoqa-xPMCuZjwEu07xk,1907
1025
- cirq/transformers/drop_negligible_operations.py,sha256=8eyOMy7bra2wJAjORbk6QjwHiLdL5SfwRaz8D2Dazbw,2083
1051
+ cirq/transformers/drop_negligible_operations.py,sha256=pd9fkVRrP4TX7MxwKfmFPiwuvre7vEHW0wqD8wDK89M,2084
1026
1052
  cirq/transformers/drop_negligible_operations_test.py,sha256=gqL6RoDPm6Zf4RxtprBenFyIsZQPUxmPur9oRl0Yr3U,3823
1027
- cirq/transformers/dynamical_decoupling.py,sha256=iALBcjaO3uwcAla-smjapp2z9YezGecGFo_OGgJkD_8,4704
1028
- cirq/transformers/dynamical_decoupling_test.py,sha256=hGUzTDV1UL3VBIueri91j3_ycxGmr20mGfQSnRAjegM,4149
1029
- cirq/transformers/eject_phased_paulis.py,sha256=mTgRT5aw5_c9ccTkP4Np_4YTWnLzxsMKRO8pOQ7CtYM,13955
1030
- cirq/transformers/eject_phased_paulis_test.py,sha256=-mXsfbi3V0ojC_YqoQM5otzdW4kjGusCx6F-kCv8M98,15834
1031
- cirq/transformers/eject_z.py,sha256=0kOyvh6FDfrCrrTCVfpHKNc_kNC_pBdEKoXv11kuqGA,5803
1032
- cirq/transformers/eject_z_test.py,sha256=U0BMdW6nW1cI18I5tE__1YpCvtzDwYGECgqUph5Fc8I,13302
1053
+ cirq/transformers/dynamical_decoupling.py,sha256=dIh5mgE8OKA6RDBvWW4MDbTzs2R-lG1QDc6QHa6ppMc,14700
1054
+ cirq/transformers/dynamical_decoupling_test.py,sha256=7iPpgEgA6pZ_x6we8JnqwIzTUrg-IN6ItK8Fp1kIw0Q,44692
1055
+ cirq/transformers/eject_phased_paulis.py,sha256=zOvCiSXKBNex-zWB8BnhiIY8E34Za8XvnNSMmN3BCu4,14780
1056
+ cirq/transformers/eject_phased_paulis_test.py,sha256=nALOTD4leNU8RBsjdyzTsrqOFZR6h2Z56SiWebmXM4Q,15682
1057
+ cirq/transformers/eject_z.py,sha256=Ja5lU8RMSSrnUr8n8_15Miqruq4L-Y-r4x6jB3rwCUU,5824
1058
+ cirq/transformers/eject_z_test.py,sha256=f0H_oxe-whPlrrg7vaHRmjVWoRIyh_xuvVk3WjxuzhQ,13226
1033
1059
  cirq/transformers/expand_composite.py,sha256=nASRoP4qfjsnX_t2a2hBw8BE7B_JD-0XLGIIXxbIdbc,2387
1034
1060
  cirq/transformers/expand_composite_test.py,sha256=4Gn6LVqr0DeuUumde80O4esOLGIoo86_S_Mk-HwnMfk,8640
1035
- cirq/transformers/measurement_transformers.py,sha256=m2v4FAEaIZtYXEh-rFzxa_sx-syqdWZmCbf6yar0GSM,19035
1036
- cirq/transformers/measurement_transformers_test.py,sha256=tkuevHQWnFWmxmvfJZ2T42uCIw4oaYyZ4XvjRGFGdug,27504
1037
- cirq/transformers/merge_k_qubit_gates.py,sha256=dUsswQOIHfbb6Lu37fecgrpT6_45zmDE7eqCUbW1KOI,4390
1061
+ cirq/transformers/insertion_sort.py,sha256=biwPNET6LlFnnzzHks1pjQda7OMNRnzwNQjYYJVL820,2612
1062
+ cirq/transformers/insertion_sort_test.py,sha256=q81tMHSmlxTRqznkfgIGxanF-1fX8GclopAHTaF6yHs,1187
1063
+ cirq/transformers/measurement_transformers.py,sha256=ewHTeY8QuEYCXact4XVCKD-VCCAGg3OaQiVDonSH8dE,19581
1064
+ cirq/transformers/measurement_transformers_test.py,sha256=VXXqJIfXJcduJXXXz0_yq7onAlAe3FDd7l3EHmp9YyM,28983
1065
+ cirq/transformers/merge_k_qubit_gates.py,sha256=c6F33qJeTlwRxneNkgcQoLFgR7MyiY1yaTEfV12A_hM,4390
1038
1066
  cirq/transformers/merge_k_qubit_gates_test.py,sha256=k_ROZvUebHgPy5vsNnWNMBYU4kfIkrunPsw39ZngMwo,13920
1039
- cirq/transformers/merge_single_qubit_gates.py,sha256=NRREV4Z6Ptc3mZnOUgzQePdj4H0aix17WOUwZUB7iQ8,5826
1040
- cirq/transformers/merge_single_qubit_gates_test.py,sha256=SWf1Il7Bz0iUCDM7JoDG2Yxe4p2yYr2PgViQpjByFm0,9914
1041
- cirq/transformers/optimize_for_target_gateset.py,sha256=MxhFsCm2XgW3gdpNW4NGVmz1VdQvzKdNNCtVZDuZiVE,7229
1042
- cirq/transformers/optimize_for_target_gateset_test.py,sha256=MgAHjsPbVtd0fl2ytRz2R-LQuhSqImtrFK5F45QXkA8,19523
1043
- cirq/transformers/qubit_management_transformers.py,sha256=A7Mweu9ElLSCsy_atmgFbYlzOFXKhct5gQ5YNTjjaVU,9430
1067
+ cirq/transformers/merge_single_qubit_gates.py,sha256=TFlW-iZuUnlGTsnj6BI_z8P16ZkZbHUi69iHyi-0HPs,5826
1068
+ cirq/transformers/merge_single_qubit_gates_test.py,sha256=O0my-DZ_KdBZn1ACf_TDgdlsYdf4b46C_6ov6vWJHBM,9947
1069
+ cirq/transformers/noise_adding.py,sha256=UPqLAqXxeDkj0HeYGhFE6oCKGRdT7mQOA60UbUH9zl4,4440
1070
+ cirq/transformers/noise_adding_test.py,sha256=8bTcxE4oiqmZ3H1QJhjP_VImdBVpmdI1b9dxQ-Mz-Pk,2135
1071
+ cirq/transformers/optimize_for_target_gateset.py,sha256=Kawt_ltBP7DX0Wo-f4U6_lEDGfSfCDYU_Qj5mvHdM7k,7229
1072
+ cirq/transformers/optimize_for_target_gateset_test.py,sha256=NJ8H8BPHVEPGhJ-4mewq-49st8Vqz2hHhlcGr6QqBdk,19525
1073
+ cirq/transformers/qubit_management_transformers.py,sha256=fIC5rGPdDmYJ3rZNxcJ_aWtvoEkTFZjAjq-MdS0BTI0,9450
1044
1074
  cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
1045
- cirq/transformers/stratify.py,sha256=EEcXD6PEdHTZAoaAfaHnsw3Hf1SftbIl19hZOU_ZnXE,10469
1075
+ cirq/transformers/randomized_measurements.py,sha256=BR0UQympwlJ9NqxmWkx2r83qBRZGURtQEwJXLAzvUu0,5687
1076
+ cirq/transformers/randomized_measurements_test.py,sha256=udQZWgM8_atTQ4i5tPhGnrLu7D9WGvRaLNeeAwUGWeg,2737
1077
+ cirq/transformers/stratify.py,sha256=wXOZI6MrV3R-p7Gd9Np5NTpjJe7OOHUFBYzaJx2YM8M,10469
1046
1078
  cirq/transformers/stratify_test.py,sha256=17ic2VAUPEGuPG2o5j98yDxQ2j2J_PN3EsPsfh5xwUk,15220
1047
- cirq/transformers/synchronize_terminal_measurements.py,sha256=p061MYYglY6HhWYYkFzIny0CtaY9LUygPg4UbGewZhQ,3842
1079
+ cirq/transformers/synchronize_terminal_measurements.py,sha256=H3O1TiKGLYx1po7RCrSXhhLTTTNNRMCylDv5Ww2dJnY,3843
1048
1080
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=VTiw5S3s_Y31qR7ME8Mzv50LdJ_6M3DOtgwvtziQzPI,7742
1049
- cirq/transformers/transformer_api.py,sha256=f95sfOr-KYXLt4yxAaFXoG0-oEc8IKApzG4pyXsm3YY,16956
1050
- cirq/transformers/transformer_api_test.py,sha256=f-Vup0VCUvTqJKm5kWHf6xet7sFTerLMGYzJHy8Rc5s,13045
1051
- cirq/transformers/transformer_primitives.py,sha256=ZiQjYLfksI8ZxqvTvhUN0R9X1WvKEYwAo6NymoKGvzw,37658
1052
- cirq/transformers/transformer_primitives_test.py,sha256=KYD1cDE_jAB54WJPjpBdoO2ts8brckOBRb3oZc4tz1I,41695
1053
- cirq/transformers/analytical_decompositions/__init__.py,sha256=ZNtETntol3G_n6uqzGxOmBanGMbCj0QAc-5vicN2jkM,2724
1054
- cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=DsuuP91pm2dX0CO4rWwmJAJyAfuXMcA1UJK0g8krp7k,6726
1055
- cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=AAZh_9vEb5f2E_EItPZTlMRNdv0d47AwqTn4BytX0UI,7102
1056
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=iFF2vb5tI4PVQVHBOP_tuy8EKUtGg8aMDZSdK-74YMI,8675
1057
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=Pc1vNvRxcYJEERASHbCqPX1bqImGd7FzWnQcUcIo_YU,4950
1058
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=RDg0wzYa_YXBJepCgloD_OIwTOwNco98dqGoe0UsnhI,9108
1059
- cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=bwZa0BDclAd1sX3bD-GdNF2MO5DtH7mw2YLppEK0LG0,5568
1060
- cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=bU9IoY0igVZTmF_wsTdTxAfqPKWyqZ14Gt2AJoK5D_4,4524
1061
- cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=qpFODpCJrE9piYLWR1FzweTn3v80EvLCV-PP2fbHcoE,2112
1062
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=-ovbhXHeuGcqu1XQd6ZNV3yDrO3JeAEoA_6z5IlPXxE,8326
1063
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Q_CGIfaelZEvmTtmkbaPdBosGwqQQjjypAs2DNMCT54,4158
1064
- cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=iAPdMwHKM1B3mJtQWH-iNjR-VkzhkUDFC23f8kjXY6M,8436
1081
+ cirq/transformers/transformer_api.py,sha256=d_voglut7ogMtxrEY00ZnCYSnwmofaT8AKJulLl1QZY,16957
1082
+ cirq/transformers/transformer_api_test.py,sha256=YBkIX-R6vYeQz1Y_sqpzDlvNYszEtfvkegoA8dAVVVc,13286
1083
+ cirq/transformers/transformer_primitives.py,sha256=LMZ0CIIKpyyfkF4l13LGCP5AItptjzdyLL6xyfYkCq4,36660
1084
+ cirq/transformers/transformer_primitives_test.py,sha256=Q0j8XmmDsTYpoZj1Qc4kDlMhpU4cpuBf77eBV1epM3o,41766
1085
+ cirq/transformers/analytical_decompositions/__init__.py,sha256=hMsoQSQtSvEn5mNohSvGPjsmf58VN4jzmIFnchVhZi8,3760
1086
+ cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=x8Xvuvp_-Qf2_Xo3hY6YhgjYO5gGY1MkyMw_47C5ndc,6727
1087
+ cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=iIU5FhXlmnKoA0cIIp0lnYGcpyCJ4bevNheYNN-_FAc,7102
1088
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=Z7XA_lvr9ncPLbuon82LJdg43OY-he6mbQ5VECYa4bA,8675
1089
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=sZ2eDF5foEyNhTDqSzTYKkug4CMY7QmF4NCN-FaA530,5050
1090
+ cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=YPkHUwi_FXzjYudOyACXKoa787Mi4chPhxuvc2dQM3I,9109
1091
+ cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=RbtQKHz0uEtbfaUejfXGgi6ngjPQ0yQtgM1alxKJUr0,5568
1092
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=NmnR56BRoOU1Fone3V8EIBy0PbvwXDqsZMuHTjZYXqc,4524
1093
+ cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=j-7-rCKpciBt5Qu67A0grMo3AZYtpakkL_dlZ2M3G44,2112
1094
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=cineE--vrEkTyuM2s2RDPkQUHe1sZRi9rDCHh6CPcZE,11784
1095
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=zG_7_dtmkpVrzeiBqDsO85SbUdlEvsIxSii23GYaGjk,7685
1096
+ cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=YIM0q_l9fnY63Pbyg1uSfW66W-CwfFQGVsv-4DfID-U,8436
1065
1097
  cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=4GfU6wctBoG-OVFqFOE08xymd5dXzY-doE8ZNpsKohI,12308
1066
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=0N6NbY6yc0VGuTheR37mhUIKFu5TYmToxJO2mbLp9xM,2439
1067
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=CbWBFjdcswiJQRr68Asx5SWJeo_qZUJMPhfxPaOMjpk,2516
1068
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=yMSsKf31MNXPAhlZ81W3ZhH6FDw2hrvxO0sa4YyF2fk,9762
1069
- cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=t2YovP9bbZTwaa9TJOAurYsKBnHnI0mKIrYTLorHuR8,7847
1070
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=-wahknipQWwt5J9lSKzxOuTqo9Of-SdEAGiuthzrrCo,6177
1071
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=YBIfOS_SzNC3ahoNdI96vrF9qupGlMt48yhi_S-6rqk,4457
1072
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=7WQTqO0yv7YBacgB27rFVglGXp_Giu2cldjbet_I0VY,9342
1073
- cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=1bVxKj3lWsPe8wZs7MJl4RooV8HjxlQ3GeQydNKXIhg,9941
1074
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=p3_Mgm-v1jmEAT82Z_jas0hoIUg-TUsZHJ7SC_k2nqU,9721
1075
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=9ElSH1pr0Odu7cWcpXlDI-cDOpin90WEnPQQdnA_xkI,6990
1076
- cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=Awr7WvaJe_8-6RdrlD93NM8c5QSKX-qaImys8WSRBcw,3772
1098
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=Qmxv4YJgiBSbZUoonwSSBGGmzuPsUQLQbNTk2z59xRg,2439
1099
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=qBoSS8OoM2HdOIM_46pSdbWFsQBu0aeQxUqiJ9znlnk,2517
1100
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=yrVbl6TKffGltCuDTxSs2vMoe5kMuv7R0yJKtOZjvm4,9742
1101
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=p9H-XuoQ3jdR5NTcAcbW6Pak69qGfzvBN4N1SDw5eg8,7847
1102
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=OOjIy4Nw_28CdcmK5OE8uQEzy0wO5ITEF_tSZKaFSMM,6178
1103
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=486hVPQp620r8SPKlhyaFIK8TC5jDngX8WqHY1Hb0Hk,4458
1104
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=plRY9voElUECp8fcL-31R1odfSEv03dwkX7q4fB6aDI,9341
1105
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=TK7uykykqA3HY7M8lEeY73gvktaJ4HrfWo-EBZMxETQ,9941
1106
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=Jv5zfIDSsZzQsaO69Su0AWbeVS-32vasxz-xZaE2JD8,9721
1107
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=U4FJj3Xn417yqyg313ONf4l10d7FR5pKUwMlb87mfco,6989
1108
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=MUt2ThFMbCCapcRYGY_3cBRwYoZSb4ZFuua1doZsyJA,3772
1077
1109
  cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=85MbuIAos7o1371wXs_KH-Bk6jsPqSBKAx9GJ9c-wVo,4160
1078
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=F_XpM4ApYHxV6hbWnV3C7Ud9L1BnpvBHBXShPh2mP3k,25397
1079
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=eKOzjWkR7xs-CL2oPj__nWXR0LL9oO42wEHibnvWq-o,20618
1080
- cirq/transformers/gauge_compiling/__init__.py,sha256=dmgVx7_yfsO9TarOCMBfVuZjza_6_MmUyAfM_eo698E,1146
1081
- cirq/transformers/gauge_compiling/cz_gauge.py,sha256=TNZviXFu4j-lCF87QMGYVdb2RC_ePHLdI6FRCqh9go4,2550
1110
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=J1az4caLRz59cHRtnZ6T-8HRXvaP2tf19O3gqb67PHE,25417
1111
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=VsbjaDbwy94sMYVnqN02gw66k2g-cRTUyto4o0NPbII,20619
1112
+ cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
1113
+ cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=GEw5b1865_5yBmX1TXxrh3JX8KrUvGDspIE8fjp_svc,5540
1114
+ cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=_lXX8eEiq4kh8cxOb-3M-wRFTipCvjp3KIq8PtgvKsc,1391
1115
+ cirq/transformers/gauge_compiling/cz_gauge.py,sha256=j_aF4bI4B2V3R6CDqFwe2xMHe5iN8KGF0jtvUQIt3I8,2550
1082
1116
  cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=_2RMzwuMoqytgsVZEET2m6QsGoZ2_uWgBfSGGvhZEWo,854
1083
- cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=7jUg2MHVX2V8SzH7r27e_BUUA_p5l15-Qv8lLlhGasQ,7948
1084
- cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=xVeoaaMuenlp_pxqmZO89kJEeBV0iapK7-JDTUuC7Lg,1565
1085
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=6mpF2ftcDtWQEsZNr-m16GkDOn5WBWV08JB4ZS5rf8M,3408
1086
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=HQw1xeko9OAD0PCuKcehUiy8mbxeRza4nE-6E8MGVME,1584
1087
- cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=UGJ_061h65Rfgb9LWREjxC8OSt01ZqP9TGnacL8VAuk,3500
1117
+ cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bULq-r5MuJBhxUNt_bnV1xhLGR7x2DMNXyshm4C3Itk,18846
1118
+ cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=1zKRV_xDV6_AcP_Q2u0JIhpxYXH0F3Twsjzn_Dudy60,5236
1119
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=OHALJ4rLbRCwRWrr0MBJ3BV_7LAZTrQFOvxpDJ5eNm4,5025
1120
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=sBEq92OUEwnRtfwG_Zlnkpl_pZdZIXcB4ypKy_b2bIQ,1805
1121
+ cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=L6Ei5xkNkU9-kKMJzjZRZCwpjO3p4Q-AaV2lmuJJXpU,3500
1088
1122
  cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=HEIIwKlX5ixau1e_etSUj5NvYOVTT-Gc3kuHcyKAeJ4,866
1089
- cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=gfjSlQdo13GfBPlrkQoHPWWzouiV7yYr7JAaB85NSGY,1086
1123
+ cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=8oTUE1A78_F0kHW1EJnH0XlLCwgSbbPv888l10oRyoQ,1086
1090
1124
  cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJwl11VPNXkf_v0WjCg9VxNKAplZ_5bZR7guOfnK-aI,1292
1091
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=32OGTcYT3tBFEQ1GQlrssc1wtwCcSvk4ZC0I1XD1QXg,1869
1125
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=mCwuFMPSa2NLJmyyQUxWbMsUS8cKVyQMeOdP6j2S6i0,2529
1092
1126
  cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=RwjadOOJfa2Qf7iryTIMJLPzeDMNqFkP6Tewjq68gJI,997
1093
- cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=dqQa-UWq31bE_jF3KMhU76sND5GuqTpEp9-wVuXdWVM,3126
1127
+ cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=8sKKyvszYdNTRuxTbLfZIeVV-VWxEX5S2pbgKhWTYpY,3127
1094
1128
  cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=0CLZoLw-WK3aKEIoaKBrQZ-qvaprOVLad-dVyWFmSiU,882
1095
- cirq/transformers/heuristic_decompositions/__init__.py,sha256=2KBAUk-vsVku-HuahLbDQxp8bjEQMZUUNiBz_cvUMUw,831
1096
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=j9bbiIbC2rvwG830gTTf9zr9C7RVA5Ilhka_ZNF-N7w,10785
1097
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=N02nlz7tISYVArvWNILwg-hnDB5Y9PCHbwIxk42Afv8,1534
1098
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=W9v3ubEoNy5Ra1I_AVKZZc3x_xUuO7c-XNmON2buNwU,20067
1099
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=dn-lBXnK_MXYMBtrQjlIm1FUBBGECiwyCyl5wCd7lL8,3830
1100
- cirq/transformers/routing/__init__.py,sha256=LqRtw_nMUtAVA2lkelb-WvEZ0ZJHD73rHfFaIvSTt7E,1019
1101
- cirq/transformers/routing/initial_mapper.py,sha256=FJobfxRsD3uO6IbRBQuR36T0D1lcFYUEP0VrW6AdOdk,3036
1102
- cirq/transformers/routing/initial_mapper_test.py,sha256=dhVXvFCVOIFkGtrRZuEQ_LhZYofZCnUsK_opVwfa7zk,1307
1103
- cirq/transformers/routing/line_initial_mapper.py,sha256=9wph7XMgI3MpAAEPvJvQX6qBtjhu67K8AEvbVc1SZDw,9467
1129
+ cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
1130
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=aHWLn5lExM_5CG5J4e0RuiF6etMpHp4QJz9BSeQeDDI,10786
1131
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=jl--brvE9TXBlpkzKZow9WbgZPHlIgrlne18Tf0ytig,1534
1132
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=6K9VvFHi-sJnJRQfnn1CLlrEl1M1neXABdkKKts6OTU,20067
1133
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=Ei4D19jDt4Fi5sGgYaF-Md6AdOh88NJOCxPYe-4IzMo,3830
1134
+ cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
1135
+ cirq/transformers/routing/initial_mapper.py,sha256=OTx48BHzFQpXKXv7UNTh6lJ2KSHdX2pdT-_TsgL7O-g,3036
1136
+ cirq/transformers/routing/initial_mapper_test.py,sha256=dR_Ec1W_NnIlLjvK7_WnGhZKgipofnqaO0bXxK4Pz3w,1308
1137
+ cirq/transformers/routing/line_initial_mapper.py,sha256=2ijLxhS9uKKENYWbr4jv_INKIjqLWzQPO9d9w1k2lUE,9468
1104
1138
  cirq/transformers/routing/line_initial_mapper_test.py,sha256=l48BRKOEnv-4c31Anpg4bucWUppHg9-LMeo7lUny3Es,7476
1105
- cirq/transformers/routing/mapping_manager.py,sha256=m0XCzP3FXcIXvhiduSErmPROn31Dx2nfjlSPYYIaEJ8,8631
1106
- cirq/transformers/routing/mapping_manager_test.py,sha256=ijlRd3mCOO1QFI6L8utQS0m6u_-GFtc_Sb5h07ADv8k,5921
1107
- cirq/transformers/routing/route_circuit_cqc.py,sha256=iiHgLX96l601pFZpJbUq-bHkVLEGoAkH4wDl9stFKc8,22021
1108
- cirq/transformers/routing/route_circuit_cqc_test.py,sha256=gKGIBwftHR6CkUGdZ5z8t87o1Ch3rfcMjwjCO9CAn2g,9999
1109
- cirq/transformers/routing/visualize_routed_circuit.py,sha256=cKYvswXnNIQJ0Okketzkpy9Tw0Z_Y2DaG4cJmK9ouHY,2917
1110
- cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=L3IJ0UdyVg8cBIULjG5kcjWoTmKee9Sr_MHkyJwcopA,4140
1111
- cirq/transformers/target_gatesets/__init__.py,sha256=Sy572ZdTcImWcFinPq53rwf1Yxm9S3tpp4mjSCx-_T8,991
1112
- cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=EarJ3_dIkpKzPVGd8898o1_kVH9ISNS8KT2PPUPq6Zk,13535
1113
- cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=_M8R9n8vklqlCHesokcNINDGTTLx22TIa4tVLQNswoE,9482
1114
- cirq/transformers/target_gatesets/cz_gateset.py,sha256=5YJVD0uyb6w848_x8Qg5nLYMKyylyWmgDBNtm725oAU,4750
1115
- cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=M5rhQPt2XGrX26cvyknTIFGLBqa2jPgg4D0z8rhFogU,10584
1116
- cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=Rtoi2xmhlk_fobf5Hwc1nDQlLtmKPcJm2FJTR8JgpN0,6278
1117
- cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=-Oi3b9oX-0_3U9SKAkijVO-uBy4ut4PrFnsx-yFJ9mU,14391
1118
- cirq/value/__init__.py,sha256=J6nJSTfKIoEd5J2-2SrvWmtdXNZ4cuyVcXJxRCHFJi4,2005
1119
- cirq/value/abc_alt.py,sha256=ELJbQucNpDCPG4ImN9EDORqJU9OHT90EF1pwMBU0bRg,5998
1139
+ cirq/transformers/routing/mapping_manager.py,sha256=TXnk-QCSK38Z0DdO5jFzs4T1-ekmwiNQVyUXS6c02-8,8631
1140
+ cirq/transformers/routing/mapping_manager_test.py,sha256=kRKqF88EoqqwMI5qbv54OMBrqzodHZS2tVwIMNNwO_Y,5921
1141
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=qkpjvqUbNNY3vM6v8J7Ppei-c5smwLzrv8JfCBuMA5A,22022
1142
+ cirq/transformers/routing/route_circuit_cqc_test.py,sha256=3iBNnu08ocgU683ELlfIocZVgZHTehkHapho2reO-t4,10000
1143
+ cirq/transformers/routing/visualize_routed_circuit.py,sha256=io4nntaROspObIVP5DKt-cRori3jr93p71oEBTqRkHE,2918
1144
+ cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=1YlV-fSRcXLbcPFbxwuzdguwO0H9sGi2LH6T-bgOpXE,4141
1145
+ cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
1146
+ cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=QR8G6TpyiuK84PqBAvAvHLUHg9naXHCLQosHIjS8bRs,14286
1147
+ cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=eoyDTU4Q7YFGBIzPd9N8U7bxyBO4RGdhzseaDtbDrpo,9484
1148
+ cirq/transformers/target_gatesets/cz_gateset.py,sha256=YPprTliaHN_0qITbFwCGr58TCKZiDdalvj6OdWFl8pc,5031
1149
+ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=dPXItC91qmmGTsMUR1Fgrgfm54p7GZuMDe9YdR1iVtk,11279
1150
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=_zyVEidlvZ2Grk4prWW390heLcCn9boiqRmfpBiL-PY,6278
1151
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=T1Q7TVUiVbLkqhBOaVMtZpgd_pABU157cV9zrcztaZc,14392
1152
+ cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1153
+ cirq/value/abc_alt.py,sha256=aTWmYTHNFu6yD8i7HcUMfsautsGbPoKuasNFe6-Vq3Q,5997
1120
1154
  cirq/value/abc_alt_test.py,sha256=-N4ZZPVhkm1E5LaB2ZQEkOVObGFcbZbkdhS669cTtOg,9013
1121
- cirq/value/angle.py,sha256=vNZfTE3WmbWPYBKSPt--wvTub5bgUhmKR7ao_dIlyBQ,3313
1155
+ cirq/value/angle.py,sha256=uPa6RrAF-fH4vS8DxWVfBug1FZmT0yEMXdd4VlWOaJw,3315
1122
1156
  cirq/value/angle_test.py,sha256=PqeTBGJw6zfain4cG8FYMobtYQsfyxLQeBu_CF5fIjg,3548
1123
- cirq/value/classical_data.py,sha256=so7OCCfEGU2XU1yc5kWz2yhryK8s4FFChqi9GEV4hqE,11607
1157
+ cirq/value/classical_data.py,sha256=LFW7Q87mjg-KpuU5iJqxyDFNqre5AlHUCXbMVKwFVV4,11608
1124
1158
  cirq/value/classical_data_test.py,sha256=23ZraKZ-V3p-uux21bkcboQcEp81RW6VKnVIYPQc6_o,5231
1125
- cirq/value/condition.py,sha256=QrxKBAox4C-z2pL2_xeKMvmfp0OP4tVFXJdPULx1pik,5900
1126
- cirq/value/condition_test.py,sha256=FGnCFcpeIQFRbnszKsHKA5K7sderTz7kwS7zWbWwx64,4037
1127
- cirq/value/digits.py,sha256=pUQi6PIA1FMbXUOWknefb6dBApCyLsTkpLFrhvNgE0Q,6024
1159
+ cirq/value/condition.py,sha256=kS-SI-m4HgQpuGNrTxF6xGaoDYSaCw1JxLjUqpd2qhM,11977
1160
+ cirq/value/condition_test.py,sha256=RTDP4N3gGiAKX_tdpo1js0d2bK3jAfUFKXsrpN1q8CU,12913
1161
+ cirq/value/digits.py,sha256=PLpenXpyhrtEpEETVe3rMle4IKZVGL4GrW5ugThHkeA,6024
1128
1162
  cirq/value/digits_test.py,sha256=evx-y619LfjSN_gUO1B6K7O80X5HJmxxBPl61RrOovo,3812
1129
- cirq/value/duration.py,sha256=isNzA1TuKb5rSaAYy4JpgT91Zt9_5XLQBSmMkuWCtD4,10358
1130
- cirq/value/duration_test.py,sha256=C7nwg7IlHoQOUhWa_aX8vy7_qp654ZIDtmnKF35UiqE,8244
1131
- cirq/value/linear_dict.py,sha256=BG3pckQPX4DPqNvp-HxI_dTzQf8sGx6nIRkn0-ye4Qg,10643
1132
- cirq/value/linear_dict_test.py,sha256=uEHbvobWV4EypOXQGe6B4xh6atLbQq8YSOomNHgv38o,17107
1133
- cirq/value/measurement_key.py,sha256=MThR6rFY_YuSvcvWOacCEfOluJC0u7d8VvnDkHe-HAM,4939
1163
+ cirq/value/duration.py,sha256=JY1D2q61cHWChRjJR-ZPqfhuc3Bz0-U8gYpJif_cEYA,10378
1164
+ cirq/value/duration_test.py,sha256=hzAbSJgWWgKaZhHujWllzKWlLeQErslU-06ReVsHLaA,8245
1165
+ cirq/value/linear_dict.py,sha256=ra8rWflr6xXgfgVSOwN5wkQtryvp04H82PUYK7wSqLk,12736
1166
+ cirq/value/linear_dict_test.py,sha256=H7-3yABo7J9T8HF8_orAE0DsIUrTjNIwArTkhgpQdsc,19872
1167
+ cirq/value/measurement_key.py,sha256=ZDEmGZkJA8vS7jdNPa8yxqmTg_yQdPBhXpEfvniTE4M,5199
1134
1168
  cirq/value/measurement_key_test.py,sha256=GnEX5QdEVbmi0dR9URcgXQH23aqW7Y_PKmTb2eIdRCg,4466
1135
- cirq/value/periodic_value.py,sha256=U_tYBgWNVblZ6XDSwbXZin67KA0jUZiDAPpz-w7bnhw,3956
1136
- cirq/value/periodic_value_test.py,sha256=mMvj_Ai2T8BWRbc7jdvb7JPX8OZxlL4H7jtdvy54ono,4319
1137
- cirq/value/probability.py,sha256=FxbvxZJhQ4ttN8dBR3bhV1aQmOawUAl8fbcWc4zfzUg,1582
1169
+ cirq/value/periodic_value.py,sha256=Sb_5qisRHuYxNf3x9KYToWqcuig5E3pOOT8C-WskF6s,3922
1170
+ cirq/value/periodic_value_test.py,sha256=S9lk7EWKZjCNToYIsZWZqx77HuVlA7QEBP4lXazF7ss,4474
1171
+ cirq/value/probability.py,sha256=bonowweqs316WJM874UnL3rnjqQ_Po4fWPXw4ujduK4,1583
1138
1172
  cirq/value/probability_test.py,sha256=QXfihRBOfOIA_IoXlSbhoe7L-VGCBLLXYS99pL-R1yE,932
1139
1173
  cirq/value/product_state.py,sha256=5h-dM2o9JCTsJQsCZbED1TFjrbPswaoqrQ2VXFiZDYU,9018
1140
1174
  cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
1141
- cirq/value/random_state.py,sha256=SA4owzMPof8P5FLPhGUPN7ODfciKAIY24PgxfmnJ5AY,2063
1175
+ cirq/value/random_state.py,sha256=aJ2czSgM7Oiy4lrL4QPWirZy3o7C5MdKn8TDKR-aBVw,2063
1142
1176
  cirq/value/random_state_test.py,sha256=0VyxtuBYgrbHsNCXFZtcgucd5KwI1obMjILH2ZTZ5BU,1348
1143
- cirq/value/timestamp.py,sha256=u0v5FmnSF_o3NE7aF-xIfQ5cDAVZzaUb-ZMdrxWYg2Y,3649
1144
- cirq/value/timestamp_test.py,sha256=eZt9LLVK6TQy-2Bo1djitUD4at7i7M4lN60bLCx9UPs,4029
1145
- cirq/value/type_alias.py,sha256=YD5m-77rx-hatIEVi5Q5j5tZ2Ji3Mmg4jUY9GT3LscM,1144
1146
- cirq/value/value_equality_attr.py,sha256=VrSgnx8NLqIdXBSvZaf7V1NQ-zQO_BlM3CgxENNcEE8,10132
1147
- cirq/value/value_equality_attr_test.py,sha256=k_nl5hWxo4yMO6WNu0wU68wyeb-RN9Ua_Ix7s9UTfOE,6412
1148
- cirq/vis/__init__.py,sha256=e3Z1PI-Ay0hDHhIgFZEDwQIuO8C_aayNdL-EByF0J4o,1001
1149
- cirq/vis/density_matrix.py,sha256=kMAPcRh6f0ghZKSe86nB_2iFngrDsw0pNael1EZ5BEw,4819
1150
- cirq/vis/density_matrix_test.py,sha256=Xg41NQZBfoyrkaX3n9pW4q1LIxWpOW3Cr_I_Wx51GlQ,6965
1151
- cirq/vis/heatmap.py,sha256=O7BM3POKmbAuSHjiWPEUc7-KO5d3ckCQ0ovz5BCx4dI,16203
1152
- cirq/vis/heatmap_test.py,sha256=Hg4DwRKoTe7it2RQhsvX8aNZzs5MULtwaYteJvD6-_g,13605
1153
- cirq/vis/histogram.py,sha256=gQUrcebsk5wgPT38pWFW55jG9zaKhxp8zLRGmmVDk8s,5107
1154
- cirq/vis/histogram_test.py,sha256=Qlw0e3amw_MFga-hNweiLzRCH174W9bB2qkmX_RiS-U,1904
1155
- cirq/vis/state_histogram.py,sha256=i8PvGLMHu74mJVD18EuS7YFGw9aM3pTa-ocnZHOW2kc,4298
1156
- cirq/vis/state_histogram_test.py,sha256=KzxDJedwE-KZR-K_TZlMh01DroSnZPArZPOo4CBEYWI,3761
1177
+ cirq/value/timestamp.py,sha256=a7PFlJgvmGln7LJzhJK7g0JJt8cQD7JnHjC6BEYMFs0,3604
1178
+ cirq/value/timestamp_test.py,sha256=kEzKyhA0j1DnMlp41olZ7ure949nGP90Jw5OscFonwI,4030
1179
+ cirq/value/type_alias.py,sha256=bmKOnIIiHbjU4x62QBxAPyvdzsyv9fGyMEBz_ivwBo8,1128
1180
+ cirq/value/value_equality_attr.py,sha256=ZaCd8VW36yKENuBlmxjbdUp8NZa9wlegJqnE9vTN7G0,10545
1181
+ cirq/value/value_equality_attr_test.py,sha256=uLY2QntO8fuTO6j1mU20ulLGClY5z0_8fxTPR8mqt1E,6432
1182
+ cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1183
+ cirq/vis/density_matrix.py,sha256=8jadiGKgOG86llpgCahDcBJnWw0IpCooWWREJcNGXP4,4819
1184
+ cirq/vis/density_matrix_test.py,sha256=PBqsp4BjIubKWmei5FFzt5345_g_Iu-MR41jDR6Qa8Q,6907
1185
+ cirq/vis/heatmap.py,sha256=-0JRDfLErXSnwLbJkqz0Q4BJ6WezEV9F9gG3C6w2JMI,17767
1186
+ cirq/vis/heatmap_test.py,sha256=6CEVTaS6jfpdE7EhJIs7D_AXclA0pS_calDAHx0gW2Q,20550
1187
+ cirq/vis/histogram.py,sha256=Zo4JCkQm7zNqUmae9e4hYd0fFcEY__TXaGl5mNkG-5M,5107
1188
+ cirq/vis/histogram_test.py,sha256=MZPd3ivY0Lo_XKV4n07oVlQ345uvkEdI76qs6GwwUuk,1903
1189
+ cirq/vis/state_histogram.py,sha256=LgBKi4soevqZ1Z4G0bPrF2A4SC_bBOQrnPNqHuCx8Zk,4302
1190
+ cirq/vis/state_histogram_test.py,sha256=8I9IvHUpJ-QQVsLAem7-TawoCpBIm5Y06yb5HNfhM8o,3761
1157
1191
  cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
1158
1192
  cirq/vis/vis_utils_test.py,sha256=-aiL5WmhPDs_5BF2lDol1koD4JuHTiYxLK2ofyWrbCU,939
1159
- cirq/work/__init__.py,sha256=wY4w2J9iPehTWTyETX9YDQG69D-oc1BvHoC0mz8PiI8,1381
1160
- cirq/work/collector.py,sha256=cq1BgCAFUugnXnaCbGM9v7fr04fmK6ug8eb9w0BlPUU,7846
1193
+ cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1194
+ cirq/work/collector.py,sha256=Ivs7WWsjZIGRP-bchOY55W7L8ZdXWA5AWQdGySTuOEQ,7844
1161
1195
  cirq/work/collector_test.py,sha256=MirBDZ584HMZ3nJRUOSSQZcAyLR6sKc124GTQqPkunc,4885
1162
- cirq/work/observable_grouping.py,sha256=-FVJPuB-sDqoNQtiMxuO_TKhy-5uvMeRzfeWMfbxoT4,3492
1196
+ cirq/work/observable_grouping.py,sha256=Nx-oeih6fCDVxux3E3b6_Q4xDBJaEhzujc9Y2xYX8uY,3492
1163
1197
  cirq/work/observable_grouping_test.py,sha256=lVLLhQlwpAuBPUEkfCg7cTS_AhtuojLbvy288XX3Rn0,5811
1164
- cirq/work/observable_measurement.py,sha256=8XwQmlOpTYrFEdAPQo6c29fkghq6z6fsbLg3lJp57DI,28319
1165
- cirq/work/observable_measurement_data.py,sha256=hEanWlODzShivKve7RiEJ0G62E490oWVVuymSyqnyro,20833
1198
+ cirq/work/observable_measurement.py,sha256=dB1_8G4anlW-Sbt80oSSrh_yzedDJXXoByjYqWXrlvM,28319
1199
+ cirq/work/observable_measurement_data.py,sha256=szD9J6kMacdzLmR-puHR-fLjbjIjF332Iy_VGyY5OVg,20940
1166
1200
  cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u73k6kxTWU6Vx_tfOI,19696
1167
- cirq/work/observable_measurement_test.py,sha256=mKa_iXZ5lBy5zWD_X9UBabwm6MQnTwx2dDMTpPwpqBM,20189
1168
- cirq/work/observable_readout_calibration.py,sha256=9lfeybebV4Fh3Y-ExtxIGErPzZcK16oyTbN5XHMIaBA,1888
1169
- cirq/work/observable_readout_calibration_test.py,sha256=CHdwbwr4O84yVSRWkcC9Aysz8imiPs0Na5eT2jP86Z0,1807
1170
- cirq/work/observable_settings.py,sha256=OsZS8XvHT2LCFGkzu-wh1WShOx93I1nZ2K7uce-iT4s,6688
1171
- cirq/work/observable_settings_test.py,sha256=hV3g5ld5OZchTjVMVL_8cLXsbSBMz5DAsE4Vui2xTuk,4233
1172
- cirq/work/pauli_sum_collector.py,sha256=N1IsIwudBi84XWP1x7LNE2uQ6DGR2LFIWPhGbdHxaA4,4230
1201
+ cirq/work/observable_measurement_test.py,sha256=0EvlC3rqiKSudEyq24ZYD1NQ6mxYMO9CluP3Clc-BOI,20189
1202
+ cirq/work/observable_readout_calibration.py,sha256=h-z2n4Sj-Wn1yWP5Oc1VvI7-acD5ZJhAJQZJUnxCLaM,1888
1203
+ cirq/work/observable_readout_calibration_test.py,sha256=ldkxdZRU4IGm-SIv2NLWFsAfvBOczA-PYkwGo7C0V7k,1808
1204
+ cirq/work/observable_settings.py,sha256=a42gzUWy1FJ3XiTQ5NTenj0E7nLaoI1uEcmLlbn_sB4,6771
1205
+ cirq/work/observable_settings_test.py,sha256=pINRmwyJkracXiQqZddl8QSejm-NBWyXPRio9ecc76k,4281
1206
+ cirq/work/pauli_sum_collector.py,sha256=sdZn_aTuTQs_Y00rVUTgPknB5doj0QZxw8OSXv8RVv0,4230
1173
1207
  cirq/work/pauli_sum_collector_test.py,sha256=aeo06iLIYZjWjN3C4loVHRYWpV35lSSlcX2cOVdt2Ss,2437
1174
- cirq/work/sampler.py,sha256=JEAeQQRF3bqlO9AkOf4XbrTATDI5f5JgyM_FAUCNxao,19751
1175
- cirq/work/sampler_test.py,sha256=B2ZsuqGT854gQtBIAh8k0LiG9Vj5wSzcGvkxOUoTcW4,13217
1176
- cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
1208
+ cirq/work/sampler.py,sha256=sW0RhIelGABAKbqTM58shwyyCPgf86JIv9IGdJe__js,19186
1209
+ cirq/work/sampler_test.py,sha256=mdk1J-WrvbPUYhY41VhWf9_te4DnXr_XMPcugWwc4-I,13281
1210
+ cirq/work/zeros_sampler.py,sha256=8_Ne6dBkDANtTZuql7Eb0Qg_E_P3-_gu-ybFzxTbKAQ,2356
1177
1211
  cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
1178
- cirq_core-1.4.0.dev20240529225110.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1179
- cirq_core-1.4.0.dev20240529225110.dist-info/METADATA,sha256=Sw5UMKd7FYh2WMd1jQCnwECTW_jU56iMI17bZF7iMrI,1998
1180
- cirq_core-1.4.0.dev20240529225110.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1181
- cirq_core-1.4.0.dev20240529225110.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1182
- cirq_core-1.4.0.dev20240529225110.dist-info/RECORD,,
1212
+ cirq_core-1.5.0.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1213
+ cirq_core-1.5.0.dist-info/METADATA,sha256=b61wGoYYl2fcWhSGs3yJEN5SuGpIVj7I7GwbPB9u78Q,4868
1214
+ cirq_core-1.5.0.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
1215
+ cirq_core-1.5.0.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1216
+ cirq_core-1.5.0.dist-info/RECORD,,