cirq-core 1.7.0.dev20250825174419__py3-none-any.whl → 1.7.0.dev20251203004401__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (426) hide show
  1. cirq/__init__.py +1 -0
  2. cirq/_compat.py +3 -2
  3. cirq/_compat_test.py +16 -15
  4. cirq/_doc.py +4 -3
  5. cirq/_import.py +2 -1
  6. cirq/_version.py +1 -1
  7. cirq/_version_test.py +1 -1
  8. cirq/circuits/_bucket_priority_queue.py +2 -1
  9. cirq/circuits/circuit.py +19 -17
  10. cirq/circuits/circuit_operation.py +2 -1
  11. cirq/circuits/circuit_operation_test.py +19 -0
  12. cirq/circuits/circuit_test.py +31 -12
  13. cirq/circuits/frozen_circuit.py +3 -2
  14. cirq/circuits/moment.py +3 -15
  15. cirq/circuits/optimization_pass.py +2 -1
  16. cirq/circuits/qasm_output.py +39 -10
  17. cirq/circuits/qasm_output_test.py +51 -2
  18. cirq/circuits/text_diagram_drawer.py +2 -1
  19. cirq/contrib/acquaintance/bipartite.py +2 -1
  20. cirq/contrib/acquaintance/devices.py +1 -1
  21. cirq/contrib/acquaintance/executor.py +4 -5
  22. cirq/contrib/acquaintance/executor_test.py +2 -1
  23. cirq/contrib/acquaintance/gates.py +2 -1
  24. cirq/contrib/acquaintance/gates_test.py +1 -1
  25. cirq/contrib/acquaintance/inspection_utils.py +2 -1
  26. cirq/contrib/acquaintance/mutation_utils.py +2 -1
  27. cirq/contrib/acquaintance/optimizers.py +2 -1
  28. cirq/contrib/acquaintance/permutation.py +2 -1
  29. cirq/contrib/acquaintance/permutation_test.py +1 -1
  30. cirq/contrib/acquaintance/shift.py +2 -1
  31. cirq/contrib/acquaintance/shift_swap_network.py +2 -1
  32. cirq/contrib/acquaintance/strategies/complete.py +3 -2
  33. cirq/contrib/acquaintance/strategies/cubic.py +2 -1
  34. cirq/contrib/acquaintance/strategies/quartic_paired.py +2 -1
  35. cirq/contrib/acquaintance/strategies/quartic_paired_test.py +1 -1
  36. cirq/contrib/acquaintance/testing.py +2 -1
  37. cirq/contrib/acquaintance/topological_sort.py +2 -1
  38. cirq/contrib/bayesian_network/bayesian_network_gate.py +3 -2
  39. cirq/contrib/circuitdag/circuit_dag.py +4 -2
  40. cirq/contrib/custom_simulators/custom_state_simulator.py +2 -1
  41. cirq/contrib/custom_simulators/custom_state_simulator_test.py +1 -1
  42. cirq/contrib/graph_device/graph_device.py +2 -1
  43. cirq/contrib/graph_device/graph_device_test.py +2 -1
  44. cirq/contrib/graph_device/hypergraph.py +2 -1
  45. cirq/contrib/graph_device/uniform_graph_device.py +2 -1
  46. cirq/contrib/json.py +14 -2
  47. cirq/contrib/json_test_data/BayesianNetworkGate.json +10 -0
  48. cirq/contrib/json_test_data/BayesianNetworkGate.repr +3 -0
  49. cirq/contrib/json_test_data/QuantumVolumeResult.json +169 -0
  50. cirq/contrib/json_test_data/QuantumVolumeResult.repr +22 -0
  51. cirq/contrib/json_test_data/SwapPermutationGate.json +3 -0
  52. cirq/contrib/json_test_data/SwapPermutationGate.repr +1 -0
  53. cirq/contrib/json_test_data/spec.py +0 -2
  54. cirq/contrib/noise_models/noise_models.py +2 -1
  55. cirq/contrib/paulistring/clifford_optimize.py +20 -2
  56. cirq/contrib/paulistring/optimize.py +1 -1
  57. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py +146 -35
  58. cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py +81 -178
  59. cirq/contrib/paulistring/recombine.py +5 -2
  60. cirq/contrib/paulistring/separate.py +1 -1
  61. cirq/contrib/qasm_import/_lexer.py +6 -1
  62. cirq/contrib/qasm_import/_lexer_test.py +1 -1
  63. cirq/contrib/qasm_import/_parser.py +24 -8
  64. cirq/contrib/qasm_import/_parser_test.py +44 -6
  65. cirq/contrib/qcircuit/qcircuit_pdf_test.py +6 -9
  66. cirq/contrib/quantikz/__init__.py +21 -0
  67. cirq/contrib/quantikz/circuit_to_latex_quantikz.py +680 -0
  68. cirq/contrib/quantikz/circuit_to_latex_quantikz_test.py +253 -0
  69. cirq/contrib/quantikz/circuit_to_latex_render.py +424 -0
  70. cirq/contrib/quantikz/circuit_to_latex_render_test.py +44 -0
  71. cirq/contrib/quantum_volume/quantum_volume.py +2 -1
  72. cirq/contrib/quimb/density_matrix.py +1 -1
  73. cirq/contrib/quimb/grid_circuits.py +2 -1
  74. cirq/contrib/quimb/grid_circuits_test.py +1 -1
  75. cirq/contrib/quimb/mps_simulator.py +4 -3
  76. cirq/contrib/quimb/state_vector.py +2 -1
  77. cirq/contrib/quirk/export_to_quirk.py +2 -1
  78. cirq/contrib/quirk/linearize_circuit.py +1 -1
  79. cirq/contrib/quirk/quirk_gate.py +2 -1
  80. cirq/contrib/routing/device.py +1 -1
  81. cirq/contrib/routing/greedy.py +2 -1
  82. cirq/contrib/routing/initialization.py +2 -1
  83. cirq/contrib/routing/router.py +2 -1
  84. cirq/contrib/routing/swap_network.py +2 -1
  85. cirq/contrib/routing/utils.py +2 -1
  86. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +7 -5
  87. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +6 -6
  88. cirq/devices/device.py +2 -1
  89. cirq/devices/grid_device_metadata.py +2 -1
  90. cirq/devices/grid_qubit.py +7 -6
  91. cirq/devices/insertion_noise_model.py +2 -1
  92. cirq/devices/line_qubit.py +2 -1
  93. cirq/devices/named_topologies.py +2 -1
  94. cirq/devices/noise_model.py +2 -1
  95. cirq/devices/noise_model_test.py +1 -1
  96. cirq/devices/noise_properties.py +2 -1
  97. cirq/devices/superconducting_qubits_noise_properties_test.py +2 -1
  98. cirq/devices/thermal_noise_model.py +2 -1
  99. cirq/experiments/__init__.py +2 -0
  100. cirq/experiments/benchmarking/parallel_xeb.py +2 -1
  101. cirq/experiments/benchmarking/parallel_xeb_test.py +1 -1
  102. cirq/experiments/fidelity_estimation.py +2 -1
  103. cirq/experiments/fidelity_estimation_test.py +1 -1
  104. cirq/experiments/ghz_2d.py +150 -0
  105. cirq/experiments/ghz_2d_test.py +155 -0
  106. cirq/experiments/n_qubit_tomography.py +2 -1
  107. cirq/experiments/n_qubit_tomography_test.py +1 -1
  108. cirq/experiments/purity_estimation.py +1 -1
  109. cirq/experiments/qubit_characterizations.py +33 -4
  110. cirq/experiments/qubit_characterizations_test.py +16 -0
  111. cirq/experiments/random_quantum_circuit_generation.py +2 -1
  112. cirq/experiments/random_quantum_circuit_generation_test.py +2 -1
  113. cirq/experiments/readout_confusion_matrix.py +2 -1
  114. cirq/experiments/readout_confusion_matrix_test.py +1 -1
  115. cirq/experiments/single_qubit_readout_calibration.py +2 -1
  116. cirq/experiments/single_qubit_readout_calibration_test.py +1 -1
  117. cirq/experiments/t1_decay_experiment.py +2 -1
  118. cirq/experiments/two_qubit_xeb.py +2 -1
  119. cirq/experiments/two_qubit_xeb_test.py +1 -1
  120. cirq/experiments/xeb_fitting.py +2 -1
  121. cirq/experiments/xeb_fitting_test.py +1 -1
  122. cirq/experiments/xeb_sampling.py +5 -3
  123. cirq/experiments/xeb_sampling_test.py +1 -1
  124. cirq/experiments/xeb_simulation.py +2 -1
  125. cirq/experiments/xeb_simulation_test.py +2 -1
  126. cirq/experiments/z_phase_calibration.py +2 -1
  127. cirq/experiments/z_phase_calibration_test.py +18 -3
  128. cirq/interop/quirk/cells/__init__.py +1 -2
  129. cirq/interop/quirk/cells/all_cells.py +2 -1
  130. cirq/interop/quirk/cells/arithmetic_cells.py +2 -1
  131. cirq/interop/quirk/cells/cell.py +2 -1
  132. cirq/interop/quirk/cells/composite_cell.py +2 -1
  133. cirq/interop/quirk/cells/composite_cell_test.py +1 -1
  134. cirq/interop/quirk/cells/control_cells.py +2 -1
  135. cirq/interop/quirk/cells/frequency_space_cells.py +1 -1
  136. cirq/interop/quirk/cells/ignored_cells.py +1 -1
  137. cirq/interop/quirk/cells/input_cells.py +2 -1
  138. cirq/interop/quirk/cells/input_rotation_cells.py +2 -1
  139. cirq/interop/quirk/cells/measurement_cells.py +2 -1
  140. cirq/interop/quirk/cells/parse.py +2 -11
  141. cirq/interop/quirk/cells/qubit_permutation_cells.py +2 -1
  142. cirq/interop/quirk/cells/scalar_cells.py +2 -1
  143. cirq/interop/quirk/cells/single_qubit_rotation_cells.py +2 -1
  144. cirq/interop/quirk/cells/swap_cell.py +2 -1
  145. cirq/interop/quirk/cells/unsupported_cells.py +1 -1
  146. cirq/interop/quirk/url_to_circuit.py +2 -1
  147. cirq/json_resolver_cache.py +0 -2
  148. cirq/linalg/decompositions.py +6 -2
  149. cirq/linalg/decompositions_test.py +1 -0
  150. cirq/linalg/diagonalize.py +1 -1
  151. cirq/linalg/predicates.py +2 -1
  152. cirq/linalg/tolerance.py +2 -1
  153. cirq/linalg/transformations.py +3 -2
  154. cirq/ops/arithmetic_operation.py +4 -3
  155. cirq/ops/arithmetic_operation_test.py +1 -1
  156. cirq/ops/boolean_hamiltonian.py +4 -3
  157. cirq/ops/classically_controlled_operation.py +11 -11
  158. cirq/ops/classically_controlled_operation_test.py +26 -2
  159. cirq/ops/clifford_gate.py +3 -2
  160. cirq/ops/clifford_gate_test.py +1 -2
  161. cirq/ops/common_channels.py +2 -1
  162. cirq/ops/common_gates.py +3 -2
  163. cirq/ops/control_values.py +2 -1
  164. cirq/ops/controlled_gate.py +3 -2
  165. cirq/ops/controlled_gate_test.py +2 -1
  166. cirq/ops/controlled_operation.py +3 -2
  167. cirq/ops/controlled_operation_test.py +2 -1
  168. cirq/ops/dense_pauli_string.py +44 -81
  169. cirq/ops/dense_pauli_string_test.py +21 -0
  170. cirq/ops/diagonal_gate.py +3 -2
  171. cirq/ops/eigen_gate.py +9 -7
  172. cirq/ops/fourier_transform.py +3 -2
  173. cirq/ops/fourier_transform_test.py +2 -4
  174. cirq/ops/fsim_gate.py +3 -2
  175. cirq/ops/gate_operation.py +23 -12
  176. cirq/ops/gateset.py +22 -2
  177. cirq/ops/global_phase_op.py +3 -2
  178. cirq/ops/greedy_qubit_manager.py +2 -1
  179. cirq/ops/identity.py +2 -1
  180. cirq/ops/kraus_channel.py +2 -1
  181. cirq/ops/linear_combinations.py +12 -17
  182. cirq/ops/linear_combinations_test.py +23 -1
  183. cirq/ops/matrix_gates.py +2 -1
  184. cirq/ops/measure_util.py +8 -6
  185. cirq/ops/measurement_gate.py +2 -1
  186. cirq/ops/mixed_unitary_channel.py +2 -1
  187. cirq/ops/named_qubit.py +2 -2
  188. cirq/ops/op_tree.py +2 -1
  189. cirq/ops/parallel_gate.py +3 -2
  190. cirq/ops/parity_gates.py +2 -1
  191. cirq/ops/parity_gates_test.py +35 -0
  192. cirq/ops/pauli_interaction_gate.py +2 -1
  193. cirq/ops/pauli_measurement_gate.py +2 -1
  194. cirq/ops/pauli_string.py +37 -57
  195. cirq/ops/pauli_string_phasor.py +6 -5
  196. cirq/ops/pauli_string_raw_types.py +2 -1
  197. cirq/ops/pauli_string_test.py +49 -6
  198. cirq/ops/pauli_sum_exponential.py +2 -1
  199. cirq/ops/permutation_gate.py +2 -1
  200. cirq/ops/phased_iswap_gate.py +3 -2
  201. cirq/ops/phased_x_gate.py +5 -4
  202. cirq/ops/phased_x_z_gate.py +12 -5
  203. cirq/ops/projector.py +2 -1
  204. cirq/ops/qubit_manager.py +2 -1
  205. cirq/ops/qubit_order.py +2 -1
  206. cirq/ops/qubit_order_or_list.py +1 -1
  207. cirq/ops/random_gate_channel.py +3 -2
  208. cirq/ops/raw_types.py +33 -16
  209. cirq/ops/raw_types_test.py +4 -3
  210. cirq/ops/state_preparation_channel.py +2 -1
  211. cirq/ops/three_qubit_gates.py +3 -2
  212. cirq/ops/two_qubit_diagonal_gate.py +3 -2
  213. cirq/ops/uniform_superposition_gate.py +2 -1
  214. cirq/ops/wait_gate.py +10 -4
  215. cirq/protocols/act_on_protocol.py +2 -1
  216. cirq/protocols/act_on_protocol_test.py +2 -1
  217. cirq/protocols/apply_channel_protocol.py +2 -1
  218. cirq/protocols/apply_mixture_protocol.py +2 -1
  219. cirq/protocols/apply_mixture_protocol_test.py +2 -1
  220. cirq/protocols/apply_unitary_protocol.py +2 -1
  221. cirq/protocols/apply_unitary_protocol_test.py +2 -0
  222. cirq/protocols/approximate_equality_protocol.py +2 -1
  223. cirq/protocols/circuit_diagram_info_protocol.py +2 -1
  224. cirq/protocols/control_key_protocol.py +7 -0
  225. cirq/protocols/decompose_protocol.py +2 -12
  226. cirq/protocols/has_stabilizer_effect_protocol.py +1 -1
  227. cirq/protocols/has_stabilizer_effect_protocol_test.py +11 -9
  228. cirq/protocols/has_unitary_protocol_test.py +3 -3
  229. cirq/protocols/hash_from_pickle_test.py +2 -2
  230. cirq/protocols/inverse_protocol.py +2 -1
  231. cirq/protocols/json_serialization.py +5 -4
  232. cirq/protocols/json_serialization_test.py +31 -31
  233. cirq/protocols/kraus_protocol.py +4 -3
  234. cirq/protocols/kraus_protocol_test.py +7 -7
  235. cirq/protocols/measurement_key_protocol.py +32 -8
  236. cirq/protocols/mixture_protocol.py +3 -2
  237. cirq/protocols/mixture_protocol_test.py +7 -7
  238. cirq/protocols/mul_protocol_test.py +4 -4
  239. cirq/protocols/phase_protocol.py +13 -4
  240. cirq/protocols/pow_protocol.py +2 -1
  241. cirq/protocols/pow_protocol_test.py +5 -5
  242. cirq/protocols/qasm.py +2 -1
  243. cirq/protocols/qid_shape_protocol.py +2 -1
  244. cirq/protocols/resolve_parameters.py +17 -15
  245. cirq/protocols/trace_distance_bound.py +2 -1
  246. cirq/protocols/unitary_protocol.py +21 -21
  247. cirq/protocols/unitary_protocol_test.py +31 -19
  248. cirq/qis/channels.py +1 -1
  249. cirq/qis/channels_test.py +1 -1
  250. cirq/qis/clifford_tableau.py +16 -15
  251. cirq/qis/clifford_tableau_test.py +17 -17
  252. cirq/qis/entropy.py +3 -3
  253. cirq/qis/entropy_test.py +1 -1
  254. cirq/qis/quantum_state_representation.py +2 -1
  255. cirq/qis/states.py +7 -2
  256. cirq/qis/states_test.py +54 -54
  257. cirq/sim/classical_simulator.py +25 -14
  258. cirq/sim/classical_simulator_test.py +85 -30
  259. cirq/sim/clifford/clifford_simulator.py +7 -6
  260. cirq/sim/clifford/clifford_simulator_test.py +51 -50
  261. cirq/sim/clifford/clifford_tableau_simulation_state.py +2 -1
  262. cirq/sim/clifford/stabilizer_ch_form_simulation_state.py +2 -1
  263. cirq/sim/clifford/stabilizer_sampler.py +1 -1
  264. cirq/sim/clifford/stabilizer_simulation_state.py +2 -1
  265. cirq/sim/clifford/stabilizer_state_ch_form.py +16 -15
  266. cirq/sim/clifford/stabilizer_state_ch_form_test.py +0 -1
  267. cirq/sim/density_matrix_simulation_state.py +7 -6
  268. cirq/sim/density_matrix_simulator.py +3 -2
  269. cirq/sim/density_matrix_simulator_test.py +94 -84
  270. cirq/sim/density_matrix_utils.py +2 -1
  271. cirq/sim/density_matrix_utils_test.py +1 -1
  272. cirq/sim/mux.py +35 -8
  273. cirq/sim/mux_test.py +39 -26
  274. cirq/sim/simulation_product_state.py +2 -1
  275. cirq/sim/simulation_product_state_test.py +8 -7
  276. cirq/sim/simulation_state.py +6 -5
  277. cirq/sim/simulation_state_base.py +3 -2
  278. cirq/sim/simulation_state_test.py +7 -6
  279. cirq/sim/simulation_utils.py +2 -1
  280. cirq/sim/simulator.py +4 -3
  281. cirq/sim/simulator_base.py +2 -1
  282. cirq/sim/simulator_base_test.py +51 -36
  283. cirq/sim/simulator_test.py +41 -36
  284. cirq/sim/sparse_simulator.py +3 -2
  285. cirq/sim/sparse_simulator_test.py +92 -82
  286. cirq/sim/state_vector.py +5 -6
  287. cirq/sim/state_vector_simulation_state.py +10 -9
  288. cirq/sim/state_vector_simulator.py +2 -1
  289. cirq/sim/state_vector_simulator_test.py +9 -9
  290. cirq/sim/state_vector_test.py +40 -39
  291. cirq/study/__init__.py +1 -0
  292. cirq/study/flatten_expressions.py +2 -1
  293. cirq/study/resolver.py +31 -18
  294. cirq/study/resolver_test.py +1 -1
  295. cirq/study/result.py +2 -1
  296. cirq/study/result_test.py +20 -20
  297. cirq/study/sweepable.py +2 -1
  298. cirq/study/sweepable_test.py +20 -20
  299. cirq/study/sweeps.py +26 -1
  300. cirq/study/sweeps_test.py +67 -43
  301. cirq/testing/_compat_test_data/__init__.py +3 -3
  302. cirq/testing/circuit_compare.py +2 -1
  303. cirq/testing/circuit_compare_test.py +16 -14
  304. cirq/testing/consistent_act_on_test.py +1 -1
  305. cirq/testing/consistent_channels.py +2 -2
  306. cirq/testing/consistent_controlled_gate_op.py +2 -2
  307. cirq/testing/consistent_controlled_gate_op_test.py +2 -1
  308. cirq/testing/consistent_decomposition.py +4 -2
  309. cirq/testing/consistent_phase_by.py +1 -1
  310. cirq/testing/consistent_protocols.py +2 -1
  311. cirq/testing/consistent_protocols_test.py +3 -3
  312. cirq/testing/consistent_qasm.py +4 -3
  313. cirq/testing/consistent_qasm_test.py +3 -3
  314. cirq/testing/consistent_resolve_parameters.py +1 -1
  315. cirq/testing/consistent_unitary.py +1 -1
  316. cirq/testing/consistent_unitary_test.py +1 -1
  317. cirq/testing/deprecation.py +1 -1
  318. cirq/testing/devices.py +3 -2
  319. cirq/testing/equals_tester.py +4 -3
  320. cirq/testing/equivalent_basis_map.py +4 -2
  321. cirq/testing/json.py +3 -2
  322. cirq/testing/lin_alg_utils.py +1 -1
  323. cirq/testing/logs.py +1 -1
  324. cirq/testing/op_tree.py +1 -1
  325. cirq/testing/order_tester.py +2 -2
  326. cirq/testing/pytest_utils.py +2 -1
  327. cirq/testing/random_circuit.py +2 -1
  328. cirq/testing/random_circuit_test.py +2 -1
  329. cirq/testing/repr_pretty_tester.py +3 -3
  330. cirq/transformers/__init__.py +1 -0
  331. cirq/transformers/_connected_component.py +231 -0
  332. cirq/transformers/_connected_component_test.py +200 -0
  333. cirq/transformers/align_test.py +13 -13
  334. cirq/transformers/analytical_decompositions/clifford_decomposition.py +8 -7
  335. cirq/transformers/analytical_decompositions/clifford_decomposition_test.py +5 -5
  336. cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +11 -10
  337. cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py +6 -6
  338. cirq/transformers/analytical_decompositions/cphase_to_fsim.py +3 -2
  339. cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py +11 -10
  340. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +8 -7
  341. cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py +17 -20
  342. cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py +33 -27
  343. cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py +1 -1
  344. cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +1 -1
  345. cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py +12 -11
  346. cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +5 -2
  347. cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py +3 -3
  348. cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +2 -1
  349. cirq/transformers/analytical_decompositions/two_qubit_to_ms.py +2 -1
  350. cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py +2 -2
  351. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +2 -1
  352. cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py +32 -30
  353. cirq/transformers/drop_negligible_operations_test.py +7 -7
  354. cirq/transformers/dynamical_decoupling.py +185 -112
  355. cirq/transformers/dynamical_decoupling_test.py +195 -201
  356. cirq/transformers/eject_phased_paulis.py +2 -1
  357. cirq/transformers/eject_phased_paulis_test.py +3 -2
  358. cirq/transformers/eject_z.py +5 -3
  359. cirq/transformers/eject_z_test.py +23 -25
  360. cirq/transformers/expand_composite.py +3 -2
  361. cirq/transformers/expand_composite_test.py +14 -14
  362. cirq/transformers/gauge_compiling/__init__.py +13 -0
  363. cirq/transformers/gauge_compiling/gauge_compiling.py +3 -2
  364. cirq/transformers/gauge_compiling/gauge_compiling_test.py +14 -12
  365. cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py +3 -3
  366. cirq/transformers/gauge_compiling/idle_moments_gauge.py +225 -0
  367. cirq/transformers/gauge_compiling/idle_moments_gauge_test.py +193 -0
  368. cirq/transformers/gauge_compiling/multi_moment_cphase_gauge.py +242 -0
  369. cirq/transformers/gauge_compiling/multi_moment_cphase_gauge_test.py +243 -0
  370. cirq/transformers/gauge_compiling/multi_moment_gauge_compiling.py +151 -0
  371. cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +2 -1
  372. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +1 -1
  373. cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py +6 -6
  374. cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +3 -2
  375. cirq/transformers/measurement_transformers.py +2 -1
  376. cirq/transformers/measurement_transformers_test.py +45 -39
  377. cirq/transformers/merge_k_qubit_gates.py +2 -1
  378. cirq/transformers/merge_k_qubit_gates_test.py +1 -1
  379. cirq/transformers/merge_single_qubit_gates.py +9 -5
  380. cirq/transformers/merge_single_qubit_gates_test.py +22 -22
  381. cirq/transformers/noise_adding_test.py +2 -2
  382. cirq/transformers/optimize_for_target_gateset.py +2 -1
  383. cirq/transformers/optimize_for_target_gateset_test.py +11 -9
  384. cirq/transformers/qubit_management_transformers_test.py +6 -2
  385. cirq/transformers/routing/mapping_manager.py +2 -1
  386. cirq/transformers/routing/route_circuit_cqc.py +2 -1
  387. cirq/transformers/stratify.py +2 -1
  388. cirq/transformers/symbolize.py +2 -1
  389. cirq/transformers/tag_transformers.py +2 -1
  390. cirq/transformers/target_gatesets/compilation_target_gateset.py +2 -1
  391. cirq/transformers/target_gatesets/cz_gateset.py +2 -1
  392. cirq/transformers/target_gatesets/cz_gateset_test.py +1 -1
  393. cirq/transformers/target_gatesets/sqrt_iswap_gateset.py +2 -1
  394. cirq/transformers/transformer_api.py +2 -1
  395. cirq/transformers/transformer_primitives.py +271 -145
  396. cirq/transformers/transformer_primitives_test.py +185 -1
  397. cirq/value/abc_alt.py +2 -1
  398. cirq/value/classical_data.py +2 -1
  399. cirq/value/condition.py +2 -1
  400. cirq/value/digits.py +9 -2
  401. cirq/value/duration.py +6 -5
  402. cirq/value/linear_dict.py +4 -9
  403. cirq/value/measurement_key.py +2 -1
  404. cirq/value/periodic_value.py +3 -2
  405. cirq/value/product_state.py +2 -1
  406. cirq/value/value_equality_attr.py +2 -1
  407. cirq/vis/density_matrix.py +1 -1
  408. cirq/vis/heatmap.py +2 -1
  409. cirq/vis/histogram.py +2 -1
  410. cirq/vis/state_histogram.py +2 -1
  411. cirq/work/collector.py +2 -1
  412. cirq/work/observable_grouping.py +2 -1
  413. cirq/work/observable_measurement.py +2 -1
  414. cirq/work/observable_measurement_data.py +2 -1
  415. cirq/work/observable_measurement_test.py +1 -1
  416. cirq/work/observable_readout_calibration.py +2 -1
  417. cirq/work/observable_readout_calibration_test.py +1 -1
  418. cirq/work/observable_settings.py +2 -1
  419. cirq/work/sampler.py +2 -1
  420. cirq/work/sampler_test.py +1 -1
  421. {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/METADATA +5 -6
  422. {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/RECORD +425 -406
  423. cirq/contrib/json_test.py +0 -33
  424. {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/WHEEL +0 -0
  425. {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/licenses/LICENSE +0 -0
  426. {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/top_level.txt +0 -0
@@ -1,89 +1,90 @@
1
- cirq/__init__.py,sha256=n670ZaGq1Yuj88GYz87JeuXoFH91-FZLH7RbJ2-vAho,28315
2
- cirq/_compat.py,sha256=BCAAJx19-5UXHv3HpCzewinx-b9eDs_C1GHPXPfKLIY,29478
3
- cirq/_compat_test.py,sha256=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
4
- cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
5
- cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
1
+ cirq/__init__.py,sha256=1K7Bye9VQqTSOmPsAja6RkvTTOO0GHsiHs2ovWFoWDs,28365
2
+ cirq/_compat.py,sha256=nALb-aGhCTrrpcNJOAEt8FL4NZ345sB5reRGBa87H-A,29510
3
+ cirq/_compat_test.py,sha256=iowY-I0JDi6ghaJ5Mll3YKCGb1y3QvA91QW4pt5kRdM,33983
4
+ cirq/_doc.py,sha256=28ZskY9ZtZ_4GS1oXPUgklKnJqmAE-rkUfzcsJ0--nA,2941
5
+ cirq/_import.py,sha256=AermWa_ylM_4HpA1nJZIU5hWMtRx3a84RBS6ZZYtwg0,8456
6
6
  cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
7
- cirq/_version.py,sha256=YIvBpq_l5SLKoWa186LrENBpt1M757ZL_SWUU3va528,1206
8
- cirq/_version_test.py,sha256=222LlxGJYKlSh0nN-Yy_DG8HY35rqZRmH4QDAEujyjk,155
7
+ cirq/_version.py,sha256=bywb7qL588MApH9N8U_yd_OM0Xpdf5PH61Nlhfxhsyg,1206
8
+ cirq/_version_test.py,sha256=91ydPUuuFH5Sz3-Jya0wbVeFWmQhR5_3eMnJwkZhHp8,155
9
9
  cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
10
- cirq/json_resolver_cache.py,sha256=A5DIgFAY1hUNt9vai_C3-gGBv24116CJMzQxMcXOax4,13726
10
+ cirq/json_resolver_cache.py,sha256=GLI5E_ym3_1qZjOWdOS7-x0Z6W4y3zU6wNor-kW_1VQ,13649
11
11
  cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
12
12
  cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
13
13
  cirq/circuits/_block_diagram_drawer.py,sha256=OpIupxl6plGVaLkU13RqYGELAlHAIy56tV6qjg51Yws,9489
14
14
  cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU8OEunecX5SSIRU,11475
15
15
  cirq/circuits/_box_drawing_character_data.py,sha256=hExbMJHm9LGORhlhNiUvPiHquv4pJqIgJqJCivW4dbM,12109
16
16
  cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
17
- cirq/circuits/_bucket_priority_queue.py,sha256=U564r2mou4aZsOlpVYiZCgirqS6mVznG3ESyawBt4gE,6749
17
+ cirq/circuits/_bucket_priority_queue.py,sha256=5xQTiYd0bhJOr6_e_SZPlJlnUyeSb7G9C28CJCY4SIk,6776
18
18
  cirq/circuits/_bucket_priority_queue_test.py,sha256=MOby-UKYZQMe2n4KhqkfDCPrz-T_3eBbWDEa0_nadJQ,5627
19
- cirq/circuits/circuit.py,sha256=_5i3X0ICHZInOgPbK98v0usdHDr6YU7ONxgr9DXLGkM,122773
20
- cirq/circuits/circuit_operation.py,sha256=vvLk30okWhimdJRFhFOpwoHDkyOHzR2I9OIggZaqmVk,36338
21
- cirq/circuits/circuit_operation_test.py,sha256=ZoYvAIsURx9yPWiLcPeX3--lkCOFJkXLxHafUJaZf1U,50425
22
- cirq/circuits/circuit_test.py,sha256=Q1ywfvVp6ThmtkAKTk-5bq0cVKctncL0d1qoWxTL_r4,166579
23
- cirq/circuits/frozen_circuit.py,sha256=UXwABQqBSnSKqSWmRluQPD09xZU0orSW3b3IHvDqxUw,7903
19
+ cirq/circuits/circuit.py,sha256=gNDkhVcngLl6nn0ycQo019anbuJquRmppENEs96tEhw,123231
20
+ cirq/circuits/circuit_operation.py,sha256=uQTumySxcgyzQCZtG-M88PRR7USekj-aG1Dvzw76Z8o,36365
21
+ cirq/circuits/circuit_operation_test.py,sha256=9AR_11BiZN4lEoBXgN2Ukkx7Eqfz04tcCAxDDrclAQk,51358
22
+ cirq/circuits/circuit_test.py,sha256=KdeasorYf3sSk8d1m28FMEn8KDnIA0hsMAvru76I3kc,167214
23
+ cirq/circuits/frozen_circuit.py,sha256=il5GhsaEPkx8pJR61jnCf5kQRHjQTp9MQqS3HSJ9Em4,7914
24
24
  cirq/circuits/frozen_circuit_test.py,sha256=1Uk3g9St_nJFmu3IJ5hAcXWJjLfWFUXTCKQU1b0JJrE,5321
25
25
  cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
26
26
  cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
27
- cirq/circuits/moment.py,sha256=NZo497gTrPHuhgJT_zTaYZU2UP9oMdDkdV8urHbBDi4,28338
27
+ cirq/circuits/moment.py,sha256=A1IemNE8YHKUFjg2tVVxrRnDuHxP394mVvJm9-QSHKs,28296
28
28
  cirq/circuits/moment_test.py,sha256=wTfFl3yret5d5NTsUW1hAoATEZ0iZJ0tFiXHBKgkMUs,34255
29
- cirq/circuits/optimization_pass.py,sha256=W_YYo_9uy5h4ijU_In5n7gG3EvCVp1cJbE1pHD9ci74,6481
29
+ cirq/circuits/optimization_pass.py,sha256=uhLTcet3jfVRo_GhiKfYHrO6JQzJx3q6dDcBZSonhf0,6508
30
30
  cirq/circuits/optimization_pass_test.py,sha256=FvCCOZrqVQLYrf_BUAZ6M-sm6dMv00_xsvpN25Op1BA,5914
31
- cirq/circuits/qasm_output.py,sha256=qclnyiEnRzkcr0JqzzABuiHD3INkiALmhl1jCW0AYNk,13079
32
- cirq/circuits/qasm_output_test.py,sha256=e2TsMMVZLzyCYh6U3umPtusxmeiLJDunmsgFRa5p7E0,14048
33
- cirq/circuits/text_diagram_drawer.py,sha256=G2fJcoyUP0ikrhTluFo4lULCEXKJI0dai5lBtHm0f14,16485
31
+ cirq/circuits/qasm_output.py,sha256=ZCr9ibMqSpR-1ebRgl7rEwrs2gRp4rCt7bGS59Ociyo,14322
32
+ cirq/circuits/qasm_output_test.py,sha256=s5Y8x_z4IOAZ8FlpjWtEarPAydYiv0OqVFl1AV0XmMI,16402
33
+ cirq/circuits/text_diagram_drawer.py,sha256=zaJY3nA5WgfldVcUp3ka4OyWnmhqMBoyvnp1JhQ1DMk,16512
34
34
  cirq/circuits/text_diagram_drawer_test.py,sha256=YBe8zT7BDENoR-gA3l77mtRj6vxY3kVVZ4FqBO_WwsY,11031
35
35
  cirq/contrib/__init__.py,sha256=DSA8bHVvPSivnEtLS2WmAa89pzGxK8u2MyMHwpJ3HSM,1121
36
- cirq/contrib/json.py,sha256=7qE7iFEH5jWII3ZaIHjnitt3k-MULDxZ-0TFIQ4nJSQ,1473
37
- cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
36
+ cirq/contrib/json.py,sha256=2KQtIgFWbt8L9atmiGYLeF1LnnT3dSmbUx2VjiCPq74,1803
38
37
  cirq/contrib/acquaintance/__init__.py,sha256=hIRO807ywD3L5xwIPROAOq5FFnel9uXcQCw1uYBlNhg,3215
39
- cirq/contrib/acquaintance/bipartite.py,sha256=9BusD-thMIfOEZeDuUEBnZUJoOJ8bc-DzNJTVMOrVR8,6494
38
+ cirq/contrib/acquaintance/bipartite.py,sha256=f_u6TZinohHCAek6kqLcd_RhBUuyURYUqR2JHHOLXnM,6521
40
39
  cirq/contrib/acquaintance/bipartite_test.py,sha256=6MFUyDjhX6uoqVOmb7uMf7HFC-AY6-Oi3TXQcH416LE,16240
41
- cirq/contrib/acquaintance/devices.py,sha256=RV03R0Ie_OGAQXQ80TQZWvs-D9443AjTXZcXSAkEskg,3051
40
+ cirq/contrib/acquaintance/devices.py,sha256=5X5nRe6f7aSWxB9jZyWykSoW2BDO4u6t10-1vjH6su8,3049
42
41
  cirq/contrib/acquaintance/devices_test.py,sha256=X2qBUFZ5V1yv6nTnlZ-ncVNspd_nlGBqXmVpw1yw4NY,1285
43
- cirq/contrib/acquaintance/executor.py,sha256=PcdI1a8H1KrNWI0Es8S4PdEKrvC1vG-K8lPHcZiaymM,8626
44
- cirq/contrib/acquaintance/executor_test.py,sha256=ifm7TOh1ilbHkHqGJWHwUeZTZ81icx_ZoCSDRiXh2Bw,8117
45
- cirq/contrib/acquaintance/gates.py,sha256=zj158yhzPGKGbLQFaiVWeXDisn-ZwHFsKZBYt0VCL_k,13500
46
- cirq/contrib/acquaintance/gates_test.py,sha256=_LLwe3AfvIB5huIhL7KVj8wW1D9_dVVrcFKsGF_jEqw,15189
47
- cirq/contrib/acquaintance/inspection_utils.py,sha256=1DNusOpdv4_NoGnenN1oNEgWKYPrxJkankgpfH2Uvd4,2721
42
+ cirq/contrib/acquaintance/executor.py,sha256=Zv_l-Aputg72-VJ04KYAu7mMYsBlrRoo_bu6Rywkdlc,8609
43
+ cirq/contrib/acquaintance/executor_test.py,sha256=610u5jSluJPaJsYXAXYJDC7uFpJzBEYoAd1ubfeI6Sw,8144
44
+ cirq/contrib/acquaintance/gates.py,sha256=4xsFlHV9yBMsRA2dFfsCR-7plIVE40oVQ8WgnaocCto,13527
45
+ cirq/contrib/acquaintance/gates_test.py,sha256=_GXpYKRWILs6NOKCuf9NKnnkF5-K_vEPfAe297W8BEA,15198
46
+ cirq/contrib/acquaintance/inspection_utils.py,sha256=iLzoisg_ZU4yTCPCKz0qCW8fgwxVc08QktWV-d5Ro4E,2748
48
47
  cirq/contrib/acquaintance/inspection_utils_test.py,sha256=e2mLz0Wc-6dGTdBcfiW94fYIxW0pg-W1ePalO6bCR7M,1478
49
- cirq/contrib/acquaintance/mutation_utils.py,sha256=jnLy8Xg1kFC_7UHENaqGFpvPjmZBu-vs2vu-vIUoupg,4716
48
+ cirq/contrib/acquaintance/mutation_utils.py,sha256=cYGeKIrnCcfKiqlmrtEqhWnSAhTtRUDFCU_G7AfdBsQ,4743
50
49
  cirq/contrib/acquaintance/mutation_utils_test.py,sha256=_wDNSWIUAkgFa8T6xlcxP0bItLpEiSGd37mdDgEobq0,7900
51
- cirq/contrib/acquaintance/optimizers.py,sha256=f9FZF-JvKoLYYz6H3rDs3tbrCzX33v1aCRDNKmWT84I,2099
50
+ cirq/contrib/acquaintance/optimizers.py,sha256=qqY-r5zWyoK-oeC3DHQ5Z8c8mBC_4Pufx1TJDYPk7EU,2126
52
51
  cirq/contrib/acquaintance/optimizers_test.py,sha256=SGNvMoW73sdqVJr08NvXJeQvd0zg2y1rOB6iUEeHDsA,2500
53
- cirq/contrib/acquaintance/permutation.py,sha256=CF4TzVXxVaZ6dpINxAEbPx2jGsNcCHEk_gB6eygJvaA,11733
54
- cirq/contrib/acquaintance/permutation_test.py,sha256=ViasEAugHY4YzpULAqek5lOWnS8DwRMrS_9vsTKYNGU,11913
55
- cirq/contrib/acquaintance/shift.py,sha256=IgOChH9A8sAgjJgia_c6tf2BBiuq2HRG6S544HDrqPI,3071
56
- cirq/contrib/acquaintance/shift_swap_network.py,sha256=gT8A7ASsrL3DCwdnzZuUZEkyfkAHBbOEwQfCFVhQDtU,5285
52
+ cirq/contrib/acquaintance/permutation.py,sha256=b4NwAxv6FPgQR2zgm0qKnUSLvryUben5owOGyOlzGXw,11760
53
+ cirq/contrib/acquaintance/permutation_test.py,sha256=Zv0oYoI_ElzeXvQh0jREs76KY3b_97zsh38PEDtkAj8,11922
54
+ cirq/contrib/acquaintance/shift.py,sha256=NCtvtmh-OOTA6Ul5BKUt2zRHRMFVx1plrFrJDMMHlDE,3098
55
+ cirq/contrib/acquaintance/shift_swap_network.py,sha256=MmAJNZekDo_PkLCf35ivLvmHGWAHQJjkWdOdTMXVv2o,5312
57
56
  cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=AIG4kihV_HE04tL065GL9a2NpJChaV6F0rTCqF6q_mg,11722
58
57
  cirq/contrib/acquaintance/shift_test.py,sha256=srf0_Sa-k6xIzwY9lCCwGn7ev2fFnJ4la1OHy9XmgX0,4639
59
- cirq/contrib/acquaintance/testing.py,sha256=YMgVGA9ZUMOeQ5tiwbzeZQ6HyQpDyZ5vMoHAVJHHy6Y,1618
60
- cirq/contrib/acquaintance/topological_sort.py,sha256=u01U9Z8WjHzF3jD1IC_wpdqJ67OtaDZln1jUhkkTi3M,2980
58
+ cirq/contrib/acquaintance/testing.py,sha256=XBaa1hX9GBPBIUi8k_DfR-XXZrGxDZqb2Zlvn0Y4dQc,1645
59
+ cirq/contrib/acquaintance/topological_sort.py,sha256=Gp5cVQkdvwvKYNQuiwJn-1Xkkz2ZeSTWeNDI_MJYQMY,3007
61
60
  cirq/contrib/acquaintance/topological_sort_test.py,sha256=qYVwguw93ouBO13P95wFb7Igdc8WOdTiK5dNH_asZ0A,1716
62
61
  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=NwjnMu0o6_wa657rvDp7oF-Iszhchk8ivyYAsP6qxEg,3173
62
+ cirq/contrib/acquaintance/strategies/complete.py,sha256=Ifak8XBR8vhxQACuRKssMcVa9Ua5YfjC1WUHWyIE2cw,2219
63
+ cirq/contrib/acquaintance/strategies/cubic.py,sha256=5fcr5fspUs8YgZEixFU_UOjUFB57Zs2JNjhhbNym7xc,3200
65
64
  cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=ew1VlBa-FuhWQnMt1sqngM-fyfJhNLNKs4ZvYHc0ofs,1599
66
- cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=XMyTgC59egPIANVfdJ7NbZ-Y4f5K0hEZPJ5GrtqsoBE,2570
67
- cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=xs_gRngn9XpeF-WiTpHv2fbkyi-WZmq517qj0LUGF38,2292
65
+ cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=7RJovxp2V-Qc6RjcxlcXwXiucVSrI7ZWFTyGawIf_o0,2597
66
+ cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=nxygcy98bZjKcmCT2jUoSaKtysjcMM3jQNQGcFIPZJ4,2301
68
67
  cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
69
- cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=ACPACTjbkSI8hWRs3Y52cKchqZazwSCWELH6-LAh61o,9123
68
+ cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=4y4StSeIeHZ0qeYpPzeepTr18BgY8prESM7bl52xv-E,9167
70
69
  cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=L5SXu7ygwtRB6umpDmRzYMo6tm17KcWdO3vynAqGmvA,6005
71
70
  cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
72
- cirq/contrib/circuitdag/circuit_dag.py,sha256=R0J-FZ4ynk760C7eUuyf_4ORtd7Q6rFViUy_Qpm2Vsw,6913
71
+ cirq/contrib/circuitdag/circuit_dag.py,sha256=Bo3AkNTnzofs7kQaEIcrQYel7ZQK5c3oyFEygrjPsgE,6951
73
72
  cirq/contrib/circuitdag/circuit_dag_test.py,sha256=r6L21qD8tzLCgfKhnXK0QuNQ_v6aii5W0wyujoYcnAg,8378
74
73
  cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=dSTlTiFwXicJxQA4yHREGF7aJnkafNVrf74w9hkMsYQ,3210
76
- cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=Y8zYZzxpzK75FtQLHg_ObsCBiHRCSGLvbi4gFz-JCZ4,8018
74
+ cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=eyr2BN7wxN6_GVd49Xfe1uOrb0254cLWCxxYDkFVcz4,3237
75
+ cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=Ws7QgRMeXVvg_WrLFBt7GkMXqNVOFXa5X49w5QbEI-w,8027
77
76
  cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
78
- cirq/contrib/graph_device/graph_device.py,sha256=R_K2Nl7q3d-wjI0Fx8P1r_ZuVDRv9FMPN0daUy1vFaY,8088
79
- cirq/contrib/graph_device/graph_device_test.py,sha256=2ieFjKxSSC5VFBrWJGEi3_o5c-hEVU-BHewMgD-OUrQ,7531
80
- cirq/contrib/graph_device/hypergraph.py,sha256=FBzBb7-yVc3Tv4lOHQr1xdhyme5LCT3iFhZWPO3BT3o,4708
77
+ cirq/contrib/graph_device/graph_device.py,sha256=0dnLTd9p1dGM42mLP1pQ_8jq2sy5tcGkbtK6CnsIHqQ,8115
78
+ cirq/contrib/graph_device/graph_device_test.py,sha256=NyvJUHr5LEP7cJyLKPJ9WkAaIqXKY7V8V_6mTaPdQ4o,7558
79
+ cirq/contrib/graph_device/hypergraph.py,sha256=bXoqoPBi7w4vqQs9M1Ich7XHSLstDX6p3yZRqy3zrQk,4735
81
80
  cirq/contrib/graph_device/hypergraph_test.py,sha256=eiF2BcNVaWvMe1X3YtiR8uy-k70J9GEbUXLTIrrx8g4,3965
82
- cirq/contrib/graph_device/uniform_graph_device.py,sha256=H3DAC0JLTJvtivoY2yRV6ID3Rvc1ltvePBZU59KoAZY,2372
81
+ cirq/contrib/graph_device/uniform_graph_device.py,sha256=v51HuLyeX-Vv0CAbj0-mhcj9DpRW9BKRsllEsJO2UbU,2399
83
82
  cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=M7cxp4UEbhTf-kdVUc2EpRJPRQyjo82K_UJBbSSEvT0,1871
84
83
  cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
85
84
  cirq/contrib/hacks/disable_validation.py,sha256=cOqo4QUtbDu1PAOUCQRjT8EKE_AImbQr2rwGi0AOO0k,1530
86
85
  cirq/contrib/hacks/disable_validation_test.py,sha256=sz319WQwkSvkAUr913lhlrh1NM7-ozMffb3MxCjbwgY,1755
86
+ cirq/contrib/json_test_data/BayesianNetworkGate.json,sha256=C3-xVe9kuVkN8znCy_26JTozgUHyo6wwf8QmkmAqgw0,153
87
+ cirq/contrib/json_test_data/BayesianNetworkGate.repr,sha256=RKk-Fne5EYuz_Hx8jk59Ozeci08MRLfJ4ddSS5PrCAM,140
87
88
  cirq/contrib/json_test_data/DampedReadoutNoiseModel.json,sha256=2prOerpHJRPJf_o-sFcYBr0Ffm4J4xCYdJFd6FLS4Hs,196
88
89
  cirq/contrib/json_test_data/DampedReadoutNoiseModel.repr,sha256=63Nt1ibLxTkSNVSOrnKcRqc_RTLLg-d9O5Dw_ltc4ME,153
89
90
  cirq/contrib/json_test_data/DepolarizingNoiseModel.json,sha256=mBwPxHDjLGwUAg6uB1_pNv04xA7blkRkXcUPL07f7wQ,195
@@ -92,35 +93,39 @@ cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.json,sha256=
92
93
  cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.repr,sha256=d0ih7jIhch2MgkjexP2ICsA1P1Yat9G0R_nH5v50AtM,81
93
94
  cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.json,sha256=5B1rE7lFsyxl-HaV57zd3I2IvcFhtZhGYrxixo_JqsU,99
94
95
  cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.repr,sha256=HsgqVOnJ9rnm87M_wB8IlB9fs6juCa1wEkUI2wJWE0w,70
96
+ cirq/contrib/json_test_data/QuantumVolumeResult.json,sha256=r-mENrUqNYOTTBUJTJu65DfqDmVyCpIytS97hdhBjIM,3854
97
+ cirq/contrib/json_test_data/QuantumVolumeResult.repr,sha256=vElBmATmfUkUfS9ZX6Hht5alCvUe9ZBl5-w6fM8GAK8,633
95
98
  cirq/contrib/json_test_data/ReadoutNoiseModel.json,sha256=4rozZLPSIS_pLHJYP_lQI-RmCD9FSVylpsVk72tdpjc,189
96
99
  cirq/contrib/json_test_data/ReadoutNoiseModel.repr,sha256=2D9n9x2HpMimEUPqcnGdsmah2b7KvhAGzbrEkxC2jHg,142
100
+ cirq/contrib/json_test_data/SwapPermutationGate.json,sha256=ab-2LqpGJdfbLdtI9RJ35S424QE3Qtor-ye7Hy2z4jg,40
101
+ cirq/contrib/json_test_data/SwapPermutationGate.repr,sha256=G358z9U6S_dP3Q85NmKmhv5CpohUgGg5P7crhH1QDvs,66
97
102
  cirq/contrib/json_test_data/__init__.py,sha256=y4pe0VWiQAa4PmWikB3XKFVgiuJWspUzW9ugDUYq8C8,723
98
- cirq/contrib/json_test_data/spec.py,sha256=9Q_-qZkFM6S0bMFzyt-Bv2lPrHaUxltPmYCsn-wTxrs,1182
103
+ cirq/contrib/json_test_data/spec.py,sha256=IHgeFIsmK7t_PGvAA6WVU8IziLosT0KJTJaMG3gc1H0,1010
99
104
  cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
100
- cirq/contrib/noise_models/noise_models.py,sha256=CJcvVQTaah5t6AC2nFTbaiSL-nTR1jtYV3ftO7nTbyo,11404
105
+ cirq/contrib/noise_models/noise_models.py,sha256=WayGgVD9rzeuO9x8doTFFE6I8yiWKu01jTr1YY8EJJs,11431
101
106
  cirq/contrib/noise_models/noise_models_test.py,sha256=htDTYcWeMtgtLIo_4DaTIidoHCxPMVIAKtS80R4OmDs,11472
102
107
  cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
103
- cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
108
+ cirq/contrib/paulistring/clifford_optimize.py,sha256=UDJ9aIJ-iFBFM5MV8n6ec7wsGluC6diC4UFXYSfep1g,8675
104
109
  cirq/contrib/paulistring/clifford_optimize_test.py,sha256=8FFLg9gb1HmHHMdXPa-vCr1zyxvgdlciRH8qyfTWQRw,3964
105
110
  cirq/contrib/paulistring/clifford_target_gateset.py,sha256=5QP4A1gC1rsTbWXB0L00ZuSGy2VZvYer63UyydCj1W0,6311
106
111
  cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
107
- cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
112
+ cirq/contrib/paulistring/optimize.py,sha256=YPCMAy2vPkRg3DLLrmP7nSDoPdvgvPUni7SmAeUBWOI,2752
108
113
  cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55Azd0_rzsi_xnU,3618
109
114
  cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
110
115
  cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
111
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=xrG4KNJaJjjhCG_0KvnOFdAOTbNRGJhYwyhCSBjWkWw,21288
112
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=6WlAPdgS-iDPIccoZUTvAiikYo1sbIA0hP-L8Ij_TXw,36911
116
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=Di8ZX8ANGz7qRX7zOmVWMyl6vzJGM3Ux0KFtoZwJXfs,26139
117
+ cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=2mwqVVz3sjPYuZe3EuAlDB691JGOKglYZQxGx6AHyRo,32603
113
118
  cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
114
119
  cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
115
- cirq/contrib/paulistring/recombine.py,sha256=phJ-SY4zdqZpIZca0iSsY0lK6NdXd0M0sOOWnUdGn5U,4353
120
+ cirq/contrib/paulistring/recombine.py,sha256=7lyBRNMdzqalM3MMxo5mbEt8w70RfGjm3J2n_c2kDKU,4434
116
121
  cirq/contrib/paulistring/recombine_test.py,sha256=ydCc2JxmmjZ8TR-Ojyy5lIRed_P-n6UKWIRZ6HIlzVc,1959
117
- cirq/contrib/paulistring/separate.py,sha256=h3UHkJp2dAQn9wrW57Z2s6GvfnPZwRMzTHULoyJVfkw,3955
122
+ cirq/contrib/paulistring/separate.py,sha256=2BLkKwPtouB0NIQNomJFMtR161wHW9QXnkff_nfe9Xc,3964
118
123
  cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
119
124
  cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
120
- cirq/contrib/qasm_import/_lexer.py,sha256=ZCS3aEwJ5tW3FndBAhQfG65U6McCfF_z_3-hxoH6zmk,2934
121
- cirq/contrib/qasm_import/_lexer_test.py,sha256=ZSqML1jhT5EgGK3HXwcqZYaJcNlB2gPLXOQiSG8OyfE,7333
122
- cirq/contrib/qasm_import/_parser.py,sha256=7mh7PB4ngub1K48RWulJ0adWx--LdkFKLBh7j6rhyEg,43526
123
- cirq/contrib/qasm_import/_parser_test.py,sha256=V96NsSVVAmDqFNz36KCzk0bAJg2UbBZOwIsWJnYpGaA,67648
125
+ cirq/contrib/qasm_import/_lexer.py,sha256=dG91z4Nsl3uXKjwXoYNnLEQhHovz7QNu49jBXJBt7Rk,3009
126
+ cirq/contrib/qasm_import/_lexer_test.py,sha256=yaWshvgmwXNHPM6Gy01IPdv_baksSN5FGk1J6fhloRU,7341
127
+ cirq/contrib/qasm_import/_parser.py,sha256=D5akaJkqmaAsOcDHR2F8ZbsR_Kz2oVNvUju1YynCF_k,44051
128
+ cirq/contrib/qasm_import/_parser_test.py,sha256=dTJABmMASYOmu0HpRcxXSisit8-1J7u0xwVeTfKrtdc,68718
124
129
  cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
125
130
  cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
126
131
  cirq/contrib/qasm_import/qasm_test.py,sha256=mwgl7dIOt50hvxTVTiy1HpVxAjyBSb59R3_Hi-5LUIU,1906
@@ -129,325 +134,332 @@ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z37
129
134
  cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=PLJcrv8u3MoLQOC7XzUa6jb54lI8pCFn0zsO2BbnVr0,4563
130
135
  cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=DodZREuwlQhGSskI-Tuw603UuZvQPQckKdpU47oLRrk,2480
131
136
  cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=S9p6p9EPYariRJwy4XsRFqWvlrRofL9TZLdHZHNi2dM,2493
132
- cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
137
+ cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=fd36Z2g0e9YmW0KWUi5TDxfG-mwXJyJtWffbMgeBR9M,1085
133
138
  cirq/contrib/qcircuit/qcircuit_test.py,sha256=Nivln1ECv4_AIUH8-2kfQH7d2E7332uvFOXXSU-AfYo,6153
139
+ cirq/contrib/quantikz/__init__.py,sha256=cAKrNLJmGTHkv9TFJjxKs1WopJ634J6m-d701J8CaTM,910
140
+ cirq/contrib/quantikz/circuit_to_latex_quantikz.py,sha256=jAkrvW11K_Q3sq_eyij23WNoZ-NzIrjoYMGRc6U1MXs,30044
141
+ cirq/contrib/quantikz/circuit_to_latex_quantikz_test.py,sha256=EFJql3H_xrBHLrG9_W0sGgPySKRQxkskYUFYN9Pkshc,9519
142
+ cirq/contrib/quantikz/circuit_to_latex_render.py,sha256=kVMf2U_qPyDYIbUjDeZw6MfmBFoOz9FmN1wfPOy3KQg,20721
143
+ cirq/contrib/quantikz/circuit_to_latex_render_test.py,sha256=NhRA8ODivH6cXk8-99eO-EbvMb79VMWMUyN2wF37rcg,1507
134
144
  cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
135
- cirq/contrib/quantum_volume/quantum_volume.py,sha256=NM47qf3yxkGxI3uJAa7pCI3NgLrD8XqdyvFbfMZyPY8,19457
145
+ cirq/contrib/quantum_volume/quantum_volume.py,sha256=mCb4SRr_Y7sKjzDnr5Ss_yK7SOQT2S1mn_-5xtdjIys,19484
136
146
  cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=CZ_CyJMhLHlaIiG8doLC5eZX2o9agKqruMnQGM_CXCM,12610
137
147
  cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
138
- cirq/contrib/quimb/density_matrix.py,sha256=BJj3odlXIzZievkSpaouggIMHFVjQUzVf05r25O8AgQ,8610
148
+ cirq/contrib/quimb/density_matrix.py,sha256=WHDiEMAIcFgfAyc0oujN1gGmAbtLPWaYNvCFRAuj-3o,8619
139
149
  cirq/contrib/quimb/density_matrix_test.py,sha256=WBQY9vdQAuPFUYBTTJRUmP-161e7FasfTBvdq1oggyw,3092
140
- cirq/contrib/quimb/grid_circuits.py,sha256=nC-nSB7CPS9XeDOXt0PMyxTbJQWmzl4m7Azq9Lzn0dg,4709
141
- cirq/contrib/quimb/grid_circuits_test.py,sha256=bEoY_mITuYbhmMSZbEnkNu1QUbmvy9Tkl5a66INiKE8,3398
142
- cirq/contrib/quimb/mps_simulator.py,sha256=F7hwGMV3DZpyOvWWp73V24Z2oP6yP75eQipApmUd2uE,24703
150
+ cirq/contrib/quimb/grid_circuits.py,sha256=-lK0CZrB8MXE5qbw7ODn7vfP49mM8u3CcEowkPop7a8,4736
151
+ cirq/contrib/quimb/grid_circuits_test.py,sha256=Svjy9X0amucT6KSuWc4LSwmZvkW1uxjfcl1ajZZss4g,3407
152
+ cirq/contrib/quimb/mps_simulator.py,sha256=_6PX0YuLqMlSrO0k2FPgC-gTwuaqyzRSjsCPmL4XWqk,24730
143
153
  cirq/contrib/quimb/mps_simulator_test.py,sha256=MF9hye-gG1epkJRvtiGsHJChLerOV5MHhqDWADASAWI,17485
144
- cirq/contrib/quimb/state_vector.py,sha256=8CvClbDRr4rLSApbIAVYzDs3zMZ9e3a_VW7VErIectM,6693
154
+ cirq/contrib/quimb/state_vector.py,sha256=r3VJyYrTyatCaWH5-GSIRMgu9AToOsUVba7FXlM8Byk,6720
145
155
  cirq/contrib/quimb/state_vector_test.py,sha256=vPTNvd4nOhS3fCOzTDYxRxlLcl1ua2jO_uN7u0kw55s,5975
146
156
  cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
147
- cirq/contrib/quirk/export_to_quirk.py,sha256=vbzG3LzqlZfRxdqVIdYoqFalBfkFHUtE762rCVTYNqs,3860
157
+ cirq/contrib/quirk/export_to_quirk.py,sha256=u9DltZz-mRKLMxE0c5E-ej0nNA7__mDDoVztPlI1NuA,3887
148
158
  cirq/contrib/quirk/export_to_quirk_test.py,sha256=v0MJdEsU_aT-NRzBoOsgC_CCHuqq2DKjZYK5O27kPlI,12193
149
- cirq/contrib/quirk/linearize_circuit.py,sha256=T47QSIpPTj1w-vKuqshsHwWKPQVNSIEP3xBgJejxdm8,1589
150
- cirq/contrib/quirk/quirk_gate.py,sha256=-nfwb4y-gIuFNVyFu_RT47p-7MUV-3wvcpWab5h2mbI,7186
159
+ cirq/contrib/quirk/linearize_circuit.py,sha256=sszZerLz7aoYbmRbBnI5TPtib1k3LQfdU0i1tqYU-nU,1598
160
+ cirq/contrib/quirk/quirk_gate.py,sha256=lvmFK0cQEvrwytzaM2jN7OVN-CHtLKS9X_rT0Jwap5w,7213
151
161
  cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
152
- cirq/contrib/routing/device.py,sha256=-kFzQ6e5iDXYVO79gLtZQZQJZ8zgHH38_Bkb0ASAxuc,2924
162
+ cirq/contrib/routing/device.py,sha256=qdjIeWWTWUC4qGMBRCipcwhG_PAwE2AdTtJI4_I4Vbs,2933
153
163
  cirq/contrib/routing/device_test.py,sha256=RA0bY5HgQhMUyIHP0cBi4xRDK-UUp3jW9Zzm7JxGx-o,2107
154
- cirq/contrib/routing/greedy.py,sha256=QUD9WRBdc7nCe7nx_MBoawNIZ4wtIWH2TU_AiHGsuBI,13841
164
+ cirq/contrib/routing/greedy.py,sha256=0dFfmEwPz2MZ2VndObIJnA0F2_SY4dnOOqaInPXGqo4,13868
155
165
  cirq/contrib/routing/greedy_test.py,sha256=MwYKSuSOc4Ao4FnvoRZYMkcGrhWmotXdCoJJvnd-TvI,2447
156
- cirq/contrib/routing/initialization.py,sha256=WPHsk488_O3_brXrxJ5lciljj25BFbv_Yr0vxE8AtZc,3727
166
+ cirq/contrib/routing/initialization.py,sha256=ruNY4GxIGfHHJaeqdjG6TTi_2bFhyCxVl6S6K_7qq_o,3754
157
167
  cirq/contrib/routing/initialization_test.py,sha256=uKp999BFZnjJsduZxL9kA7nvDdJAjPfsBJ2lH3ipuq8,2561
158
- cirq/contrib/routing/router.py,sha256=79h5mqaBo2PI1-bT6hbDMKJw0wRDbm6eliloP6OClMA,2591
168
+ cirq/contrib/routing/router.py,sha256=020vUkhrIRyCePQlMHB8k33GceQkC1sO3f6b-hU3YF4,2618
159
169
  cirq/contrib/routing/router_test.py,sha256=v0P3Q3Lfl1vcp8xJ7qPpc6oSA1VUUgHZlNDcL4X3cUc,6410
160
- cirq/contrib/routing/swap_network.py,sha256=wQPDb3ZyIyaB1O2H7IyoZxfsGsuVn5GpdpDSURwdzj4,2379
170
+ cirq/contrib/routing/swap_network.py,sha256=yuo02rLaPjDopeyMgzKxXVJNmkk6inTLZArzltehqXI,2406
161
171
  cirq/contrib/routing/swap_network_test.py,sha256=dQw1LgVCU4bcjEaYBwRNMM2i4TfxkWpd-ansQJg5Lw4,5141
162
- cirq/contrib/routing/utils.py,sha256=xvA1khTMBly750GVJm_pCc5uBpAHpayLGZ-Yq4m2qg8,3780
172
+ cirq/contrib/routing/utils.py,sha256=RemXK8sMCBK_SEHZHl1vhYKPJ7pkD1W2GPciy5_7rtE,3807
163
173
  cirq/contrib/routing/utils_test.py,sha256=0TuaQdLTui_fFPRXGJfRBj5k5ysCyIQwW7OMfeABmR0,2107
164
174
  cirq/contrib/shuffle_circuits/__init__.py,sha256=yKqR59wvZYmIrolsEEqoO9Dhgd5hALMkAoR9AtjnbUY,1030
165
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=xzMS1EysSMRrrlWE37MyYV-NR9b48kINH204ejYPzkA,22730
166
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=JM1GZ3aCYQuc8IHrA9CG3PEZeMnV73roBlm9bEoDArw,23924
175
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=saGp-HqqKejCH3cyg5d6b4qnzzKbdR_No0NpCzeAy_g,22781
176
+ cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=kvHwWALPwz5LlnHW1DIQPe2SY2geRhG4a2Vih4wA2Sg,23933
167
177
  cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
168
178
  cirq/contrib/svg/svg.py,sha256=WxwlIcCv5SofhiZ16Bej6qHkdZgU4lT1Gw5GMZnFAkE,9398
169
179
  cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
170
180
  cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
171
- cirq/devices/device.py,sha256=Ejkn0qIW8r406kn7rCOQ96SEJu4dUuKK13hazJl1VYg,5383
181
+ cirq/devices/device.py,sha256=Q8qa6hgbKz0Yj67BmtXwY_mgTRdMmadu84uy6puR4dY,5410
172
182
  cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
173
- cirq/devices/grid_device_metadata.py,sha256=pgh2wu33i9rWOqqYgsTMtLuB2k4L8EAD6tMx_o_ju5g,8602
183
+ cirq/devices/grid_device_metadata.py,sha256=frGq3dHn1w4cQJRC5Ds6XmAwZZnE8QMheXwU_pxkV5Q,8629
174
184
  cirq/devices/grid_device_metadata_test.py,sha256=jNTQGFUrl-xCtuP6s04_FWtP1S87ot9TwYbXq-K950g,8799
175
- cirq/devices/grid_qubit.py,sha256=qBRUVaJaS-ZkpUJfv1LdPwV-kRsl1xJ2DslZW5naJxI,19125
185
+ cirq/devices/grid_qubit.py,sha256=tGFy6s31YrydwzRw_wSEKUYcBuCBHyrxd9tSGICZV7w,19153
176
186
  cirq/devices/grid_qubit_test.py,sha256=DtLAKSTRvTQ7XXujxDzhQIWgNbmFxdx-5A2tvDxUsaY,15642
177
- cirq/devices/insertion_noise_model.py,sha256=FCVsVsrPyGT0WsvIWQUgu4IliSRpck3znrEmlI-xOPU,3609
187
+ cirq/devices/insertion_noise_model.py,sha256=jXGIOhFHivZiJZapAOkm1-rVSRRiZWATLMurkNrI_IA,3636
178
188
  cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
179
- cirq/devices/line_qubit.py,sha256=LEYluAzhKzFKDRtyQ8pQ3-21bW5-30dQ1huJEWu78-4,11743
189
+ cirq/devices/line_qubit.py,sha256=Ff7VixrTSvC9eT3r1cdT_zXkICOUnxYzhDE0F1q_RBU,11770
180
190
  cirq/devices/line_qubit_test.py,sha256=gcOey2XO9QyBsI20wNtoFy0MYz5J-wwpC60P3018iL0,10667
181
- cirq/devices/named_topologies.py,sha256=iU7Tvp_4dhxA23-wBIl9mMRBSpXdsdEv7BUZPqzvkHo,15817
191
+ cirq/devices/named_topologies.py,sha256=rTspojP5o84nzBOi0RXVdBaIs0dB9haGnQDB3RN9muY,15844
182
192
  cirq/devices/named_topologies_test.py,sha256=cZlodti18nnvWyKTVMnQUIC4wlrdlKL93ptgnfgzyVw,4911
183
- cirq/devices/noise_model.py,sha256=8fcMrLzD3bgAHOvpmTdpdUxBDSGVYgM4Gbj-xNd-aaE,11255
184
- cirq/devices/noise_model_test.py,sha256=0kLY4lksbfBz1pAuSXQWBw8xSnwVrfXqlxrUbsaUuUg,9412
185
- cirq/devices/noise_properties.py,sha256=pXsTxgj2J6RcJ1uWUYdczUTBMn6ThtvucijNEgbrzQg,5321
193
+ cirq/devices/noise_model.py,sha256=611p4KDsh2XERc5dc8box8weZqrhBQ3kp95nMU49pQQ,11282
194
+ cirq/devices/noise_model_test.py,sha256=1lfeYHK1ikPM4WgtoXmixZVdVEKrXV8Nw1QkLOHIpVE,9421
195
+ cirq/devices/noise_properties.py,sha256=mlx7xiI6hGmviYA-1aCKlbsJwVjDxx4DC3FK-XB7khg,5348
186
196
  cirq/devices/noise_properties_test.py,sha256=h8y7SgiA_VuoPvlnv0WseMUouHUlbhKiWQoh_yzqJqE,3443
187
197
  cirq/devices/noise_utils.py,sha256=Gr51L8Zj1hQ7XCAPreqJdlIHNVpZswXzbUaQZmPcQ-o,7163
188
198
  cirq/devices/noise_utils_test.py,sha256=kYLGs40QOih7Ai7KHIs5dF_z1_suT0kzlma5-kJ1qLE,2145
189
199
  cirq/devices/superconducting_qubits_noise_properties.py,sha256=pQYEs6KupGW1lOQ5Tt8CEI0vdJ3sh94uTrVZHXosRmk,8142
190
- cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=9EyqTXQ5BLpPY90pu8pXNzVSwhf-ub5jZuBEEAq6AIE,12535
191
- cirq/devices/thermal_noise_model.py,sha256=TSOKMP1GSVS2FVzFGGt6_Rqd-0Dx4tnvMv6Yf_1YTk0,14426
200
+ cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=NdVfRiVOaV5_totKWxu_89UW0xYpdzgQLg-4GUWAZrQ,12562
201
+ cirq/devices/thermal_noise_model.py,sha256=ZHOVYlq-l19ccIwT65hv5FAM6Ye1F32XxvBXkJ-mq2g,14453
192
202
  cirq/devices/thermal_noise_model_test.py,sha256=2IKRk30OXQ6wVuOGM28dYdXOaP578nTGexyyzY6M0vg,13857
193
203
  cirq/devices/unconstrained_device.py,sha256=gC3NB4P8UUsVyz3o7CcVV_L6xIeY-ewgaUoXy3UCfDE,1536
194
204
  cirq/devices/unconstrained_device_test.py,sha256=R3JSwkjSIMYd9jtNGsYmEAw4yzESPhh88MZfd86Cekg,1107
195
- cirq/experiments/__init__.py,sha256=3y8FX6Edh_mEFJ7AWjhDurnSLxuEt0_edqL7CitCrTQ,3777
196
- cirq/experiments/fidelity_estimation.py,sha256=Wd2OiWzrlLwIbRbykV2axEbFdFKoJBc6sdIbAWTm1Q4,9362
197
- cirq/experiments/fidelity_estimation_test.py,sha256=ivUgYobEuN2eIzUveXy1Asabure2fRaopL8QfdFtvFQ,5007
198
- cirq/experiments/n_qubit_tomography.py,sha256=16u0Tv14SyUM9WCk-ZxbBit9cl93MbZodGrj16XiBuo,8436
199
- cirq/experiments/n_qubit_tomography_test.py,sha256=8wIgs0O8DtlCGOyC0MZA_d3tLNoURX1ARcqnnp1360g,4439
200
- cirq/experiments/purity_estimation.py,sha256=20MRvxDyxlcnWkwI94_PzMexOytS3NgnaaVbtFwLv2c,2516
205
+ cirq/experiments/__init__.py,sha256=3CalDY_vDOBjwi0ZLpE0Lkl1cZizPOaWTINlSEaqNVE,3865
206
+ cirq/experiments/fidelity_estimation.py,sha256=EVsj4EU6dsmzl3GFZAImFTknk8r7NcYg47osg5YB0fY,9389
207
+ cirq/experiments/fidelity_estimation_test.py,sha256=UuNCnubeAYkKtrh3PzpXKeTm_Is1gbMWtiAJCzVurkQ,5016
208
+ cirq/experiments/ghz_2d.py,sha256=wF1TXHu7P2tUhLZGpKUfZoqIEjSxwDFJ5u5fUkS87ec,5390
209
+ cirq/experiments/ghz_2d_test.py,sha256=o0kSr5GiF3dojViaW3_vr6fAtqj6KBAOUopifElPsrg,5439
210
+ cirq/experiments/n_qubit_tomography.py,sha256=cOepDBle3SOlMIsfIHl0sDk8x-xhEZcy-muKpRqpHWA,8463
211
+ cirq/experiments/n_qubit_tomography_test.py,sha256=Hxt7GVxYhHfuyju6y_4ffIm24HPhF6thF_zJwc1nV6o,4448
212
+ cirq/experiments/purity_estimation.py,sha256=bDEUZ9Dq4__wIemvRBA-3MZ5G05IRGIAXhk2V4yD2QU,2525
201
213
  cirq/experiments/purity_estimation_test.py,sha256=ZDU6k-pja5W5kQ-5cy4id1IWUQ86WMiQYNOiXyAI0YU,967
202
- cirq/experiments/qubit_characterizations.py,sha256=RO-gxOI_7n4HhGOmumgLGacV4Ve8bAY_s7XyxkOTUjo,40887
203
- cirq/experiments/qubit_characterizations_test.py,sha256=gcMeYJLMWvboZGJqOicNAmGV736Ty1I5D5Ihd4EHOf0,11066
204
- cirq/experiments/random_quantum_circuit_generation.py,sha256=90iD2KulPXKy9mu5MiHnir2ozCJ5bgGBzxNv9odw5FY,28016
205
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=R4ShY12vAfLd4fTT9mX0VQM9VQol58ZdPsqBkZvFds4,16737
206
- cirq/experiments/readout_confusion_matrix.py,sha256=qK6qDoNRuIHGTV7PS8xGkS7tCXGGyoDfUJJj6575-cE,20664
207
- cirq/experiments/readout_confusion_matrix_test.py,sha256=qbaS1smXtRaMcboN1eI1DIRxzrDCq8-LNSgGee3bENo,10885
208
- cirq/experiments/single_qubit_readout_calibration.py,sha256=0vnmKBtcjS8kCbJj_iJ0BWW23W6UCc4X2Ig9N_UUs0s,15243
209
- cirq/experiments/single_qubit_readout_calibration_test.py,sha256=2VG4uh25UVlRscdx9v24RHW4uVKnsEnWAqgiVubqAVo,7873
210
- cirq/experiments/t1_decay_experiment.py,sha256=ojtmkQ5mgiQ-cK389YrvlRXotzHon83HNG_8sae-JdE,7099
214
+ cirq/experiments/qubit_characterizations.py,sha256=N7I5nITdrBJXgNYC6H9pGCMmPLTr4Hm5jp2kqbd2WnE,42017
215
+ cirq/experiments/qubit_characterizations_test.py,sha256=z5WFvZmFtvm3j2W_aF6A-dzPKvoYcW8KdD7zccW0aKk,11775
216
+ cirq/experiments/random_quantum_circuit_generation.py,sha256=GkF8NQBGW3asBU6mo8dU97RLkPugLnvmV4QE8JBl8Go,28043
217
+ cirq/experiments/random_quantum_circuit_generation_test.py,sha256=YG_UAM6Hv4t9ga4FrK7gTN8WNcaaSOpzFvoWOmFZH0Y,16764
218
+ cirq/experiments/readout_confusion_matrix.py,sha256=awzeKHlLwRVieSiAZ-ne9GQ_TBMWVX9F_J8roq8r41g,20691
219
+ cirq/experiments/readout_confusion_matrix_test.py,sha256=vwlthL-rYGG5g_EJzJqHSK5017RCXJIci8nZWzZLoo0,10894
220
+ cirq/experiments/single_qubit_readout_calibration.py,sha256=EG-D9ZFLlsjN8dkgBewOzEMBRYX_z5i51Vw80TTR8Sc,15270
221
+ cirq/experiments/single_qubit_readout_calibration_test.py,sha256=w6MoGe7EloefunwOg9EMenunpsD9-LB03-gbR1nbYQQ,7882
222
+ cirq/experiments/t1_decay_experiment.py,sha256=CBMSLlHJwaKuRdt9wyDW3RtjanJyQL4aps4QC6IXheE,7126
211
223
  cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
212
224
  cirq/experiments/t2_decay_experiment.py,sha256=emyOtoJa8Z7nbnTJbxTrqfWdWceMCoKWA4aBGnUHLBg,19096
213
225
  cirq/experiments/t2_decay_experiment_test.py,sha256=_h_cDm9RHlsOm-R9g5LITm_ogQ9l_MAf6vZv6rQw95A,15170
214
- cirq/experiments/two_qubit_xeb.py,sha256=7CXYU1W-qijnp-1831zT-lEXCx6GeEJoCf6QOBvBChw,22803
215
- cirq/experiments/two_qubit_xeb_test.py,sha256=IW9dAlI7pZGUlzIq8_2cKfTAWtPm53BZ2vRjHCzsxpY,10787
216
- cirq/experiments/xeb_fitting.py,sha256=cO6hFOirbuWfWJOsgZC-lOLYBwqyK2IBAqP5lmjlpI8,30399
217
- cirq/experiments/xeb_fitting_test.py,sha256=QxqG7-yAr10wLveKYDyOHQF7Kn-KkRVslNE9mrJ1DAg,15748
218
- cirq/experiments/xeb_sampling.py,sha256=7Bnt9x5olJpsKkwh0ab7Oug1-1jlFjBTMOmPzmwC6r4,14941
219
- cirq/experiments/xeb_sampling_test.py,sha256=wVFcyAoErAC6tRQMA6AJ1MrTT1DGwW_0PuKlwXCU5o8,6861
220
- cirq/experiments/xeb_simulation.py,sha256=HqUb7d1XIgp0GEThIEHfDEsrh3kUee9pFS7k1vFWnIA,5089
221
- cirq/experiments/xeb_simulation_test.py,sha256=UAm6qCTJWa9o5Nwr9LwvJ8fmlNvg6IQs8gsraasK2I8,5625
222
- cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
223
- cirq/experiments/z_phase_calibration_test.py,sha256=0no2wWui8Ha5hKDiFXzMqEdv3ghY6zN3mpCLYYE9DXM,9178
226
+ cirq/experiments/two_qubit_xeb.py,sha256=4u3aahqZmo54DA17HDA5-NhzsVf50zeEwHSYm4_zVkg,22830
227
+ cirq/experiments/two_qubit_xeb_test.py,sha256=-zRvjypzWWtAvwrAzpYERy2YQxcuY7NTPDCS1DjjjY8,10796
228
+ cirq/experiments/xeb_fitting.py,sha256=8DydgGL5UmjD1kn8RcEyraZVC-g-r--hDlPJwI4pnXI,30426
229
+ cirq/experiments/xeb_fitting_test.py,sha256=UpdEm-INmY7IKVRktOlMOhV6i5cakUIJuJyCXBdbWYM,15757
230
+ cirq/experiments/xeb_sampling.py,sha256=luHjZvP4OrNRczluY_xgx8LHQpUztSbXyYIwpEM29j0,15014
231
+ cirq/experiments/xeb_sampling_test.py,sha256=9ALkHPftyK3TzHdY9ANwmT1S9j2f9CiQaHD_htYyNrI,6870
232
+ cirq/experiments/xeb_simulation.py,sha256=QXuTGQVvhHTUtkWfqqzSga6hVATURAdeyNfQDyzSgdY,5116
233
+ cirq/experiments/xeb_simulation_test.py,sha256=U-S76aoKPK8hfmGhpWEfH7CVLuacEqLUmEZCStxXrxQ,5652
234
+ cirq/experiments/z_phase_calibration.py,sha256=lXXjPCGkBrTwy81UsFMI8FzJAQyWOjyn0RI-FALwW0Q,15045
235
+ cirq/experiments/z_phase_calibration_test.py,sha256=WvUG6dOrffoUji7wQuzaDYhyLq9Tl0XjgL8v6IEjDt8,9594
224
236
  cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
225
- cirq/experiments/benchmarking/parallel_xeb.py,sha256=xC7BOr9cDTGshRNG4tgXAXXH4VuMntIBYjp_PQZW5Tc,26117
226
- cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=mrP97qFvhPa7_FYuW-PXGP9wAnxOFVCo8jwjwcGGWFQ,16352
237
+ cirq/experiments/benchmarking/parallel_xeb.py,sha256=y4iCvVQXWFlJ3wRxH58NHRnjxLd2ikUVOlUxTjQa62o,26144
238
+ cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=Vz8pVmXTmGlcFHDauuhai0lTNUrgwZlzT202zdpDE8o,16361
227
239
  cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
228
240
  cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
229
- cirq/interop/quirk/url_to_circuit.py,sha256=SOr-U5C_oOJoJ2XCM2QkEeUq3CDAugj7Q4_dlrHTURM,14089
241
+ cirq/interop/quirk/url_to_circuit.py,sha256=kO3TLoaGCWnGdn7aeCsnxEmI_T4eZ-tUd8UM723qKKQ,14116
230
242
  cirq/interop/quirk/url_to_circuit_test.py,sha256=0soI7pem2vbZ0orCQLtXV1YXtYfSjIOw3XflGppOKlU,26421
231
- cirq/interop/quirk/cells/__init__.py,sha256=qFnhZj9KKX1PFDSK3xEiJA5aHzOF1UUgoICJTeWHINM,1497
232
- cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
233
- cirq/interop/quirk/cells/arithmetic_cells.py,sha256=KCms0ME2VCvdmBOr4BKw2bGuDg0Ws5rcR3szH5VBnPI,13035
243
+ cirq/interop/quirk/cells/__init__.py,sha256=W2cC8R_AUY5oV2cljmtzkGj-NnYUYI6IMn9HSnKLBuY,1487
244
+ cirq/interop/quirk/cells/all_cells.py,sha256=YwaVLsm2kssym9G58apVmm6cDTga_lUrxu8-dBl-Zqo,2660
245
+ cirq/interop/quirk/cells/arithmetic_cells.py,sha256=w5ILW4kdKu_5OQMWwo7MgNPBfP1eAXUWeBWjjzx57SA,13062
234
246
  cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
235
- cirq/interop/quirk/cells/cell.py,sha256=RUJm4fErnDBLNm-2GDoE2aKxOygOsFXo2TaGAb4uWHY,8365
247
+ cirq/interop/quirk/cells/cell.py,sha256=iNXkFxELF81NKVai5tCvSDWmvIO0qzdBbGjRNhjlhS0,8392
236
248
  cirq/interop/quirk/cells/cell_test.py,sha256=fI6B5kdKwcCX-yo9YVWomvTOSlqqwR91KkL0HmINM9s,2364
237
- cirq/interop/quirk/cells/composite_cell.py,sha256=SuCoJ-Px2HEEuoGXeX5mecza13VYfLCzi7F1AMVuNBY,5240
238
- cirq/interop/quirk/cells/composite_cell_test.py,sha256=FGU-I6PouPJWGSD5qcnEGuVL4dL4Ib7Q3GkDP6751eE,5404
239
- cirq/interop/quirk/cells/control_cells.py,sha256=ISXqZMEUS455lZjPrwVjwuSiwX79Lx-0qSNN9f2jpJM,5545
249
+ cirq/interop/quirk/cells/composite_cell.py,sha256=TwG7863kPpPzrNd8ToRTH_dj881CynHIAn868NoR61Y,5267
250
+ cirq/interop/quirk/cells/composite_cell_test.py,sha256=gwreMPPh6y5vbcHSSS_F4Z94FLvqIY5z7pDWnHpU7dc,5413
251
+ cirq/interop/quirk/cells/control_cells.py,sha256=vsX23WOA64Za-jVaLtcUtKjGZPgEodfgtlQHrn4uQIw,5572
240
252
  cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
241
- cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
253
+ cirq/interop/quirk/cells/frequency_space_cells.py,sha256=1c4ElrJlA7LvPrI374VcEfvrJXvUFH2s-jI07dnXyTc,1928
242
254
  cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
243
- cirq/interop/quirk/cells/ignored_cells.py,sha256=AEZ7O4kQZgCkd_Uvn2TbQkofp2IHM3GdY9c-9E2wSpw,1415
255
+ cirq/interop/quirk/cells/ignored_cells.py,sha256=8VytbTR__1JNWArXLSlZhZ0DBlDEyFc9QD3Ul7eNxzU,1424
244
256
  cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
245
- cirq/interop/quirk/cells/input_cells.py,sha256=Cb9XOFCtMIQ5eHqE5CM2aAafWafKd8n-QZweGgA30qk,2987
257
+ cirq/interop/quirk/cells/input_cells.py,sha256=Kqxv5WTlUNmdAoPCiEhAz6eIZFOscqa67UEwM7D8tw8,3014
246
258
  cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
247
- cirq/interop/quirk/cells/input_rotation_cells.py,sha256=4ANzgjoW86WEwL9DT3uETwtzlnqqnhCyKoKFLmf5mr8,7390
259
+ cirq/interop/quirk/cells/input_rotation_cells.py,sha256=A81rvDYo85uH6Tyb41t5FEpoe5mk2eW2tOr7PUfn1EA,7417
248
260
  cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
249
- cirq/interop/quirk/cells/measurement_cells.py,sha256=U3I8wEX5BVp8Rlg1MkQAwaRMJ6wl6KGC805RGMoSO8A,1526
261
+ cirq/interop/quirk/cells/measurement_cells.py,sha256=upX3vwgGmQg3H6hO2N7yrCat4ISkdcMwKXpSidTqH_c,1553
250
262
  cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
251
- cirq/interop/quirk/cells/parse.py,sha256=THngP-aipoXuzd9lhEcTo_AhTCCDCybkaooDnwwYyaI,11860
263
+ cirq/interop/quirk/cells/parse.py,sha256=sT0kAI-oaN5ecG2dX9VH_imhFOOwdwrNsmlSxWTVepE,11846
252
264
  cirq/interop/quirk/cells/parse_test.py,sha256=w3Vp13EBAcMvpCgWK9fzYwfBpVF4ax6JAqASLmFrYWg,7625
253
- cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=2xBQt93gS0aam64ZU54Z8wnraIU5_G8auJLq5-7dBjU,3417
265
+ cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=a1_m62UdWrlc2w5ff9F6GOISzcwoksSxO0lsN2PHd20,3444
254
266
  cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=HEg156HfRnTSciiYEr_H3oIBtvF0GNafKwb2Gy53k5U,4552
255
- cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
267
+ cirq/interop/quirk/cells/scalar_cells.py,sha256=gU7isbkwNeid8wsSRElliRX354j0-vbjNLE_EMPNhUg,1308
256
268
  cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
257
- cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
269
+ cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=Olw6Ajj0B9aIS52DwdlmCLVgcvt1MapZOoRnNo6y4Ww,4521
258
270
  cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
259
- cirq/interop/quirk/cells/swap_cell.py,sha256=1-tKp9hWuQSZtyEa3JuD0AsS1s5F9hy1Csxe-rIKiIo,2444
271
+ cirq/interop/quirk/cells/swap_cell.py,sha256=1lENhkQuwIZECSQ8d7A0Nhah6EM0myFEihkqx01ObaQ,2471
260
272
  cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
261
273
  cirq/interop/quirk/cells/testing.py,sha256=crjATbwkd9FekUIhbFRZa3mbGpg9EM0iIINyGiNz-ag,3304
262
274
  cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
263
- cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
275
+ cirq/interop/quirk/cells/unsupported_cells.py,sha256=Y1FYjq463XFlvkbdTmfdIuRBk29tloXqvCRtWJ8FRuY,2887
264
276
  cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
265
277
  cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
266
278
  cirq/linalg/__init__.py,sha256=k3hZ6NMJN9b9ExgzkoHG4W2SFVEpYf8ZCSmIkOtRBOU,4029
267
279
  cirq/linalg/combinators.py,sha256=7V9oNSojc466NvOXyt4FMu50yDQ77iM5N4oZ37fV9tc,5347
268
280
  cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
269
- cirq/linalg/decompositions.py,sha256=qUgmm61cmoNZhOMji4q8kR8ki0SqBwU-Y8sR71mCA7Y,38562
270
- cirq/linalg/decompositions_test.py,sha256=eUl-O-PaY_IVuznJLPKnthiAIM_mI1bkJZJGgp6xWkI,25896
271
- cirq/linalg/diagonalize.py,sha256=3PpGmlI7CCkQS3JKr0AkgdHOZedXLniZkxmUtpCNQPk,10074
281
+ cirq/linalg/decompositions.py,sha256=Qrzr_435vJj0v8alGMhnxW6xu4Wc4OT1qvxWo9rnx_M,38648
282
+ cirq/linalg/decompositions_test.py,sha256=d7P2JKrdVkI1W5GHpveS3p7fioJFW9C8C6G-EKWCGow,25929
283
+ cirq/linalg/diagonalize.py,sha256=_yS0-26PZ-OaLAjr7H_Rw6qcm2rDShxuzTxWgb7P2t8,10083
272
284
  cirq/linalg/diagonalize_test.py,sha256=4gpQ2MmjK9C8khX1LTR1hfXAdP7Hl8e5jf1UszbXTFs,9177
273
285
  cirq/linalg/operator_spaces.py,sha256=jUU-OYL8Lnn58kbhLskDyhkBeXZXPXVmR-hcIkq60JQ,4132
274
286
  cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
275
- cirq/linalg/predicates.py,sha256=V-zUR07_rEBjXFPgif6EYrEHM6uDUzPOIcZTo0HguYE,12172
287
+ cirq/linalg/predicates.py,sha256=mgGPRQKpnOX7j2ro2C2QYpIG2XSC-VmP5bmu-IAh4KI,12199
276
288
  cirq/linalg/predicates_test.py,sha256=D_0TSF787MluJBJ_WctBPz8SsGBJesYgndCUISniw3Q,21911
277
- cirq/linalg/tolerance.py,sha256=4TZ_BjldOhPuP2CwYvMdzHCc9Lzfwi9ZkndSKObyyBg,1893
289
+ cirq/linalg/tolerance.py,sha256=3f7kX7a38EGOkSrkV213JWFgY4LGxpT-G6WNhv55b8w,1920
278
290
  cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
279
- cirq/linalg/transformations.py,sha256=vJcgYa_KxYacPgLHA_Kp7AfWMamB_73pxD0y4FJVcuQ,32588
291
+ cirq/linalg/transformations.py,sha256=e7xGyEJydNruRhU18zSMivIFe8Yg3vSCrMCBrRGRBv4,32622
280
292
  cirq/linalg/transformations_test.py,sha256=2HdnYDzNDq7djdPByQmRphKkpy6k3rK9nC8uZfDlSZs,26462
281
293
  cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
282
294
  cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
283
295
  cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
284
296
  cirq/neutral_atoms/neutral_atom_devices.py,sha256=9GP2IsrivvAoqnoEe-jkZ4Ef7v-zylwAr7jlAFkdEIo,1409
285
297
  cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
286
- cirq/ops/arithmetic_operation.py,sha256=cokwokyzKa3zJkyxopP81fTRMutHfI277ZObKw9El_w,10022
287
- cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
288
- cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
298
+ cirq/ops/arithmetic_operation.py,sha256=HcuqyVlxL-8KgnNfh5HkuY8xZdq31UqN20J_lDXOxig,10057
299
+ cirq/ops/arithmetic_operation_test.py,sha256=EfERI5jktfiQaQay5LrBV1VaLFn3dVhvOSweD50Uds0,4947
300
+ cirq/ops/boolean_hamiltonian.py,sha256=BtTD1IjotXhrSCsxdHCJjeS_K4z6Jc7grg6BrjuA08w,14935
289
301
  cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
290
- cirq/ops/classically_controlled_operation.py,sha256=Oro9yC5-2p7_O5IpHz-qHAmnry79qOfiRL-BKmVbnpQ,10290
291
- cirq/ops/classically_controlled_operation_test.py,sha256=OedFFoAwS4WnHKG58xgjhbKFgKebhYyP8I7AU4a0m9k,50425
292
- cirq/ops/clifford_gate.py,sha256=F4RiKZcf8PT1oUR0PfXPrIgDUcr9FJkwppPW39dpM2M,40078
293
- cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
294
- cirq/ops/common_channels.py,sha256=ZZa2JCyPtrKfGhcAGCUUzA4qym8S9isKs-xs-TEkhKs,37022
302
+ cirq/ops/classically_controlled_operation.py,sha256=E_yDiUhZ0OxDbzzDFaxfuBjcVRE6dPMJXGspioH6-VU,10330
303
+ cirq/ops/classically_controlled_operation_test.py,sha256=-LDfOotkjxdXJXACVoteWkgmyaTuCcmV4Vy3DHZaWvY,50861
304
+ cirq/ops/clifford_gate.py,sha256=bnjnib8kW2e80kYG5CVjUd0ptzDY8PgwPJxdXtC2pbs,40112
305
+ cirq/ops/clifford_gate_test.py,sha256=F8HhlwfT-wVAMPxi9AUpyCMa8AJN3d3Mic8OF9Xvl6U,41231
306
+ cirq/ops/common_channels.py,sha256=ErqjeisCcVCdWNSzGXFpf7tZME7eQCMlCFsNVFPfe3s,37049
295
307
  cirq/ops/common_channels_test.py,sha256=dPveO6j3qxmdRXaQhEIvj5vKRE0v3pQ9ICmjnSSbP0Q,30761
296
308
  cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
297
309
  cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
298
- cirq/ops/common_gates.py,sha256=luEk507wQgstyl15DUq0AtKsXYnJqX0Xei4hM5RFjaY,58239
310
+ cirq/ops/common_gates.py,sha256=pq-6pAquGvElu4m1Jol6odY9jRflTELFqe3MOOeqJus,58270
299
311
  cirq/ops/common_gates_test.py,sha256=IcUWxDTTTbis0efXz2Kn0zAdclp9R31fZAfCx3E-BOo,49758
300
- cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
312
+ cirq/ops/control_values.py,sha256=sxcuaVNdOhWiqFEcrAQwp6yeUduKl8ANkof52Ta1FUs,13373
301
313
  cirq/ops/control_values_test.py,sha256=Wyn0nwtcpnJvcPVRHmFGb3PtYxvsbpluA5UbPrG7tIo,13067
302
- cirq/ops/controlled_gate.py,sha256=3Hex9AdY6c_DedKoCqqpS4gx9rAgm9KZITbwUBXsoYg,13562
303
- cirq/ops/controlled_gate_test.py,sha256=jmIOlCx8dC3VId4NynX1ZYy7s7tkLav_d-fjiIZyVh0,29308
304
- cirq/ops/controlled_operation.py,sha256=KAbQGf6-AXm-DV9nk05S3sqJumOgvG9P6jO4Zx1gxec,13561
305
- cirq/ops/controlled_operation_test.py,sha256=hTqK6R0so-ZmZLcqS9xQl39ekNZ82UVYPbhmfbbh6vg,16699
306
- cirq/ops/dense_pauli_string.py,sha256=v4naX_wlHaXROIO-ONY5ZMYbqGijDlne3heafrLNE6U,24209
307
- cirq/ops/dense_pauli_string_test.py,sha256=Wh2YIpydze9GAxIDEPIo6YbdKxjvHLBoqAaVO-DqbmQ,22037
308
- cirq/ops/diagonal_gate.py,sha256=HNMxcgKgfZ2ZcXGaPhcBp6yOwu_stpSN3_GtNeWnR5s,8909
314
+ cirq/ops/controlled_gate.py,sha256=Zl4FlnpaAkEBs4UHWGuFAWW7k9ehT_EtOpFEmDihWQg,13573
315
+ cirq/ops/controlled_gate_test.py,sha256=Hsg4O1biIxcwqQq67Y8FRZGiKbwPzCfdk_dzE8sQE3c,29335
316
+ cirq/ops/controlled_operation.py,sha256=PXw1dO6Ba8GqzQEAltTBk2apdleN9FTNmY0uZKTn6l8,13572
317
+ cirq/ops/controlled_operation_test.py,sha256=k3kgb_40LK6CXK-lk8vGJADMSV2TM0Rt3OND4-258Cw,16726
318
+ cirq/ops/dense_pauli_string.py,sha256=LHbkf9lQ56XustomYpVtt3iw7jE0A1NC1dBM175Ta7c,23331
319
+ cirq/ops/dense_pauli_string_test.py,sha256=t4kl_8QdXnAbM3Bs-RpO-_fjtGZ1LSRl1UbXWJMX8Kc,23159
320
+ cirq/ops/diagonal_gate.py,sha256=6kOStIN6Su29Wt9nwfK5OJdDLhhnX5tePQvpUGJJrBk,8920
309
321
  cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
310
- cirq/ops/eigen_gate.py,sha256=OoUpOwHw6VZ2CpH0Qb-eQLD4c-cjj8wFwBr8NEc7C0g,17788
322
+ cirq/ops/eigen_gate.py,sha256=9XLNezWfVBfJXv3v2TBXvD4kzUhBKHNUAh4etzL126o,17949
311
323
  cirq/ops/eigen_gate_test.py,sha256=k48rIbYKUErElQBfiV8cNGcKRnO6_vSJtghDxm-rflA,16772
312
- cirq/ops/fourier_transform.py,sha256=JMledJB0tPjLlIlG9bfapJSqass94rXkAheXragQxq8,7455
313
- cirq/ops/fourier_transform_test.py,sha256=sX5TfZd9-n1WTyZcqOQ0x6yyI8k6rasywijMo3bc1ls,6426
314
- cirq/ops/fsim_gate.py,sha256=Qs7FLsNXR7K2jNVZ8I9o9YLvOb6cC6iBnAvZAHERNk0,20037
324
+ cirq/ops/fourier_transform.py,sha256=rLhkuYup3ZRtUXgmMm_olG1Hd66FU3mzeZiREzhGbGQ,7466
325
+ cirq/ops/fourier_transform_test.py,sha256=fum4Kyxqb8AcAsELZsZcmkzbyzB7zf3cH1b32R5LFQ4,6331
326
+ cirq/ops/fsim_gate.py,sha256=V2dHKbbqmx5ZRuSwXbd3TIcJEUUe2iZK55cjam0XOD4,20048
315
327
  cirq/ops/fsim_gate_test.py,sha256=QgckC2fij30grZJoO6HnQHdGkKcwtiegedEBRid3wF0,25858
316
328
  cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
317
329
  cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
318
- cirq/ops/gate_operation.py,sha256=ODltw3E7o5ffL2EOTLGj4MUzenBjq6rs_kUVQj4iP0M,13332
330
+ cirq/ops/gate_operation.py,sha256=V7GdzQ8OI9BTeAKE-ulL7Ccs0pMJkF3sHNxY_pZNNek,13819
319
331
  cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
320
- cirq/ops/gateset.py,sha256=h_lCF6-SeUOprqulklRwBZg77kr_zNG_gvNuvPQc0pg,21786
332
+ cirq/ops/gateset.py,sha256=AWoF5DGJ1pX1TyIYDvyvBurQUhr_cmnWxJeoTIn8TFU,22708
321
333
  cirq/ops/gateset_test.py,sha256=oeJ0zLgknWxgW39_bc_8Ii_5_g5VNxiJWicZkkS-TaE,17651
322
- cirq/ops/global_phase_op.py,sha256=GcERs4X5h5_at6tvJc8-AcM0cVsLCRPlpPkAWMINm54,5711
334
+ cirq/ops/global_phase_op.py,sha256=wcF1ERC_aRP9Z0PetRHyebeoZzAlDuC0U9ZDsm_mxI0,5722
323
335
  cirq/ops/global_phase_op_test.py,sha256=9BBnPZLLmBzHsMoRPMFTAShx87TJnhTLvvgLpHJF4wc,10721
324
- cirq/ops/greedy_qubit_manager.py,sha256=UTd9cTRbl4GQmf6ai6zqVBn5TR3-Vg84jJu4AN-0cxc,4050
336
+ cirq/ops/greedy_qubit_manager.py,sha256=X_l5e22GyLWmi1acwrUTIW6ujGxRWP1UQE5rNHwbJWY,4077
325
337
  cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
326
- cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
338
+ cirq/ops/identity.py,sha256=K6JOCrp5UmbM8BarzM8L0XFtzCQN9xn_GYNqCOfx5zE,5889
327
339
  cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
328
- cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
340
+ cirq/ops/kraus_channel.py,sha256=nCeLBeHKQzlg7qoDA86ooQyEeXVJK1b8P606XDGhjeg,5099
329
341
  cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
330
- cirq/ops/linear_combinations.py,sha256=YNSEAMBhlacvVvXy3MS-36uKlv9By18IWfipG8VLNYk,39886
331
- cirq/ops/linear_combinations_test.py,sha256=a-tk0Cd7zhlWXb_o8IrLkabimOqXLgYPJAwNgY8rh7o,68322
332
- cirq/ops/matrix_gates.py,sha256=or8Kc3kP1NFjLbAHemmrZIqYFgEeeteMogNVEzYjosk,10238
342
+ cirq/ops/linear_combinations.py,sha256=XFmhYtuUSInOmn-zwp0Rro71RaYcyz0ZUqr27-cmpdY,39617
343
+ cirq/ops/linear_combinations_test.py,sha256=4X7gJKFdJfqI9iisc3jZqnLIhRgMWgaqgDpkCkl3nt4,68965
344
+ cirq/ops/matrix_gates.py,sha256=2QkYVGsyaYgqHJWN0duR0z6Du893O47_wZKO-mP53FI,10265
333
345
  cirq/ops/matrix_gates_test.py,sha256=GEb2QTC2cNTQGVNXCXHL5PstrQLVpFEfQ3eGMZHe8z8,15006
334
- cirq/ops/measure_util.py,sha256=JtBgBFTGVUPstC8SdhV7JQhaEd3zYdKvUMJSoBRsngc,7397
346
+ cirq/ops/measure_util.py,sha256=NQFYt5Xv8_iyCLSuI1XPH-_6Fc1jaxU_fKINoR9ddR0,7525
335
347
  cirq/ops/measure_util_test.py,sha256=xsjcz70eXiDfGN_tFz4mNcF18dXgdV6z3vyOVnsF2BE,5570
336
- cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
348
+ cirq/ops/measurement_gate.py,sha256=LxCBATYL25biasL-WcH8Mi8s8k1_LbWfYKE1pJ4bV3w,11901
337
349
  cirq/ops/measurement_gate_test.py,sha256=IF8ceuD2Sb4kFlp9x9evwl8F7j4BkCvZXSgKCP4Ac1g,18573
338
- cirq/ops/mixed_unitary_channel.py,sha256=guje2Jbj2uWG8NSlwazK1r-XjxlTHA6s7ti52tWS-Nk,5246
350
+ cirq/ops/mixed_unitary_channel.py,sha256=u8_TEkQmywWQsXUIKoWiMAHpu6fz3bnPyi0-63MtbGc,5273
339
351
  cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
340
- cirq/ops/named_qubit.py,sha256=e2GdyDfeyKNgmXiiQh8yW59t4qDIvAEzXjb_NfyhgHs,9997
352
+ cirq/ops/named_qubit.py,sha256=WCSRXbffhGSyX-W78p_OPcz5--1PIMptfnyY5cg3rCI,9993
341
353
  cirq/ops/named_qubit_test.py,sha256=bS3sjjVo0Lm7cjoxBGkSsx5FGkUgSM1QxwBjVOHATis,5343
342
- cirq/ops/op_tree.py,sha256=w2jnYMi8UtV13CROphi4Gesydc5YzmuvXJZsIAGm65k,5277
354
+ cirq/ops/op_tree.py,sha256=FPzAmfgEnUCXNal62tfasWNTOaJCK1QUNLbrf1C0foI,5304
343
355
  cirq/ops/op_tree_test.py,sha256=npk2P6asFc3Z-K_xQ0l9JNam4uBwWMZTGT8rDO5xUmQ,6104
344
- cirq/ops/parallel_gate.py,sha256=B6uwL0lPJLiv_TL62U4HGyv7FZn_CvljSUK7jKTuu-M,6257
356
+ cirq/ops/parallel_gate.py,sha256=EKT4WiHD0nNfln4b14NyolU3T3pwGbUB3OvMV6gZtxs,6268
345
357
  cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
346
- cirq/ops/parity_gates.py,sha256=aBvAn-04K6PpcGGPbESqk2lbkPweiuHSJhK-Q1KUq84,14260
347
- cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
358
+ cirq/ops/parity_gates.py,sha256=C7J62rZNL8Lq_bVhq8Me_T1Z9Q8QQny8K7itEmQrI_M,14287
359
+ cirq/ops/parity_gates_test.py,sha256=z2i3qXtc1LBBFyYuoNFGONAXyFre9W7VzqYcqN0imTc,12509
348
360
  cirq/ops/pauli_gates.py,sha256=hXChuK9F56DEft2KHcMhjf6cPyEHHB5BKy10Dsk0FNM,6776
349
361
  cirq/ops/pauli_gates_test.py,sha256=YYzQBojxoZTM6WH7pD3PNwmQrIO6U7FTG6AaZ-6z-To,8334
350
- cirq/ops/pauli_interaction_gate.py,sha256=1drxD57PLCmp7dI9p5oDX2HPzsqwh0rrqHltUjtbWZU,5539
362
+ cirq/ops/pauli_interaction_gate.py,sha256=5i7GL82GrXEIWRWmy2ydrmej3yk9PslYxZ6boFv5B4c,5566
351
363
  cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
352
- cirq/ops/pauli_measurement_gate.py,sha256=OzbQeMzr9cHQsai8K-usg3Il74o8gdXZLksLuYr8RcU,7113
364
+ cirq/ops/pauli_measurement_gate.py,sha256=v7fTZk2JvYfCh9uNl0X7VjvH9XqqgseShp39ojdzOzs,7140
353
365
  cirq/ops/pauli_measurement_gate_test.py,sha256=IDnbQgyaj-nbYw_sslPBccl8aRGTlMrADc_EEiAvluk,6929
354
- cirq/ops/pauli_string.py,sha256=_OYVeQ9G9sgim636rdrqD3h-KyPhuYHMqBRE8lTy6e8,64066
355
- cirq/ops/pauli_string_phasor.py,sha256=JLKZem7rdshQ0doNvFMJmP7cLhl9lCsHAI1QlOmbmrg,18207
366
+ cirq/ops/pauli_string.py,sha256=lF5599GN-DLMSePQcPkYUuiboAehr2c20bpMUvdwsb4,63331
367
+ cirq/ops/pauli_string_phasor.py,sha256=AVy1uJYwtxN4uHUFaQp81plTKyWE8VeArewcC9emAGc,18226
356
368
  cirq/ops/pauli_string_phasor_test.py,sha256=ZIoraHH3kOFjtEfThXDS-sxUvSU8MYZ2avtdiPcyN6w,28309
357
- cirq/ops/pauli_string_raw_types.py,sha256=mBOAwfBT_y7yiSyC6Hr-ofLyIkjyOH5urmK-gitD3-Y,2226
369
+ cirq/ops/pauli_string_raw_types.py,sha256=jwr1pr7AVTgqqalnOqZS-4T-RjovGPCEtBjw_h25_6Y,2253
358
370
  cirq/ops/pauli_string_raw_types_test.py,sha256=ZcOZ31KSVIc7ReZoO8WZEX8MOyPOhUWaYLppvGTE4-8,2761
359
- cirq/ops/pauli_string_test.py,sha256=i_SkDlRuoYB5AZZ-KW4aFJBHp14AzMXlx-ZIJzPkDT8,78278
360
- cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
371
+ cirq/ops/pauli_string_test.py,sha256=hUy57-vnOd9d_-Q4Wr3nHvcdnzs5n2IdscIbs6glk8E,79644
372
+ cirq/ops/pauli_sum_exponential.py,sha256=GlgGxLbpJAyl3FVPIwu-2xxE3TBZTuni38SEv5M92TY,4888
361
373
  cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
362
- cirq/ops/permutation_gate.py,sha256=mTCKrLSNP3nm2hPebfBJNR5mHO6qb1ZqDT3pFA0zM_M,4218
374
+ cirq/ops/permutation_gate.py,sha256=dEDRNApwYDqs_i4qWTeMNilQh-Hslm6ONAZHTwlqtgM,4245
363
375
  cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
364
- cirq/ops/phased_iswap_gate.py,sha256=AQIPHurGVx4ccinrT8UZc9bZT9yX53Q4PlBk4uaqrGw,8939
376
+ cirq/ops/phased_iswap_gate.py,sha256=fgjXE-CKrzQfMwf8zyhxWfiihBMumvz1wfO5JkWXJh0,8950
365
377
  cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
366
- cirq/ops/phased_x_gate.py,sha256=ffIRnS_84saQYuwD4wsbEL2i11RXJ7XmxxRteWOwd68,9247
378
+ cirq/ops/phased_x_gate.py,sha256=H55pmJVxclrK-UIDlY8VwFRu_JdYEtYKxJqVSm0e7nQ,9336
367
379
  cirq/ops/phased_x_gate_test.py,sha256=lQ6UV9X52joByV_SLzNceO785uVY5wSqlba8tMpzHSA,10976
368
- cirq/ops/phased_x_z_gate.py,sha256=88P8w-XdrV-y5n0q3_wci_BmMCZ5BOW4c8eDPjVyrQg,11446
380
+ cirq/ops/phased_x_z_gate.py,sha256=HHxZ07Rc-JukQfqk6nua7k06nSCDtEguxBl35zpbCZA,11872
369
381
  cirq/ops/phased_x_z_gate_test.py,sha256=ZmV0NdJJMzile88bRHYGYPXxOP785fW_Tn4tCxbphPY,10876
370
- cirq/ops/projector.py,sha256=xxt3YhomvLfQjFWlU7yeKHTbPlgBHGQUcfiSbMxlIQk,5645
382
+ cirq/ops/projector.py,sha256=0WJ8nDggtHExBM9LjYrOA8LuydG1gFKQMuwhIko5F4E,5672
371
383
  cirq/ops/projector_test.py,sha256=vphfIBPkrEPXj4I6B_IPM84wOW-DsETSR9ua4lDioF4,9232
372
384
  cirq/ops/qid_util.py,sha256=pyU_me-SkhkGG4wMyPReuArUd9_3anrbCQK8PpzwCOY,2077
373
385
  cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
374
- cirq/ops/qubit_manager.py,sha256=5CFtTkkWE5aW4yyFnr2M70_Fw6jNUI-ltTXMVcL9oUc,3549
386
+ cirq/ops/qubit_manager.py,sha256=cTM1aH22X6H_HSv3HnGnDg2PQ08rgtf0tmsENW-ESEI,3576
375
387
  cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
376
- cirq/ops/qubit_order.py,sha256=Ekk246AzaeW6w3fNGNhHdGOQbD_DU8KeXl7BMhX-SDM,5497
377
- cirq/ops/qubit_order_or_list.py,sha256=5kChRv1gUnBKB-kF6okXoXcCa5CXbJ6HoB6ETpfl3ss,1188
388
+ cirq/ops/qubit_order.py,sha256=sMb9tTrgyJQ0BcLNrLWrT8T_Ie8uOmvLpcA04h0C72o,5524
389
+ cirq/ops/qubit_order_or_list.py,sha256=JnIK35vc9eFqZCSpsN5KCChhi-J-GX6XCamkQZqVIew,1197
378
390
  cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
379
- cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
391
+ cirq/ops/random_gate_channel.py,sha256=pSrin4_1QnJENgbJj7nCVnhiCAPFvFXiaw6tLEOeE7U,5126
380
392
  cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
381
- cirq/ops/raw_types.py,sha256=T90X1zF5B0aJVHDw8JVCv7VwZDeiLejcUQhQwC_RAOE,43414
382
- cirq/ops/raw_types_test.py,sha256=CoooLVSYidx1QkAFWJM4gNbs3CwkHHtVKE8HW6gPAxs,35408
383
- cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
393
+ cirq/ops/raw_types.py,sha256=YbFHnzuIHqiZihNjWUEsKBmfl46rLP4iejlepcriwfY,44278
394
+ cirq/ops/raw_types_test.py,sha256=QOeuiQ7BTM-zh9KFC048kGcpMTqM48VE-C1gAN1nUUs,35411
395
+ cirq/ops/state_preparation_channel.py,sha256=7x7Q-4Cgc4lZfj5vewHDvu9vGNvsJAHQcThnvzRIs1k,4808
384
396
  cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
385
397
  cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
386
398
  cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
387
399
  cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
388
400
  cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
389
- cirq/ops/three_qubit_gates.py,sha256=qOFW-bva07ao30LL5tnkLV4kEmF_V5yIl8w5fXF5_DA,27937
401
+ cirq/ops/three_qubit_gates.py,sha256=AdFynO2g3dFIOtOvP8K_3FgrmTlN7vUm9BkOT4w6LnQ,27948
390
402
  cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
391
- cirq/ops/two_qubit_diagonal_gate.py,sha256=m2wnFpi0sHA9cxMa2cqwRYGQIlbyTGohMTLdVVQZ2-U,5377
403
+ cirq/ops/two_qubit_diagonal_gate.py,sha256=wDkRTY_jGpSYJ6Nebq0dA3rACthfPXVyamN51AOtCG4,5388
392
404
  cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
393
- cirq/ops/uniform_superposition_gate.py,sha256=LiB_Aft5mQY5aVhe4S8DR4ugMREwXEFTVO1MCU1s0zU,4751
405
+ cirq/ops/uniform_superposition_gate.py,sha256=1KPi0nh1cqJrRMdPj42l92bSOiCZUhucgRfM1oldXLY,4778
394
406
  cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
395
- cirq/ops/wait_gate.py,sha256=CU_CdgkNZV5BjVnBKu-GEIdkyu787mqiQEV0fnjhLkc,5575
407
+ cirq/ops/wait_gate.py,sha256=aPvswcFOdLhsHnTYwbabkHWK_qf74_QwQH-dV7zjGmg,5721
396
408
  cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
397
409
  cirq/protocols/__init__.py,sha256=SZCBRpL2YbYWMVcvJVR6FGkBv9aGv01oY2skSBvtNcg,6015
398
- cirq/protocols/act_on_protocol.py,sha256=MSwEUu8dccf05wrNmataAdIaPE1Qp6zdT1RjFiuOk5I,6858
399
- cirq/protocols/act_on_protocol_test.py,sha256=PV_A5Nhx1S8ir0JNcO21WRTbvsIXDDLxlUQj5udFDSw,3271
400
- cirq/protocols/apply_channel_protocol.py,sha256=03Nhc0puiFAviYqyjy0MrK7Xx2xx3iaJrkxMyji9Z8U,15586
410
+ cirq/protocols/act_on_protocol.py,sha256=e1bxW5drGyZgTg9tE6AGg2QJSHEeCY174_liTTJhFmw,6885
411
+ cirq/protocols/act_on_protocol_test.py,sha256=YoGby7RO115lA6nH3EPXZEQ0I4hutMcN2inl4XqxBWY,3298
412
+ cirq/protocols/apply_channel_protocol.py,sha256=xSoSnnh1aLWI8rSNbW3FJtzs-VniOWsswK6Nypd7CcY,15613
401
413
  cirq/protocols/apply_channel_protocol_test.py,sha256=XtvZzmG9x-cdeLeCm7ojHsSbMkQZJEjyFB3EFiPbA10,10896
402
- cirq/protocols/apply_mixture_protocol.py,sha256=ev1OpdLNgDlBiM6uszKXbIOlVUuBhxSMk3kHbIdG8bo,15292
403
- cirq/protocols/apply_mixture_protocol_test.py,sha256=dd1cLUDsSnvBKoX_IjqV4BzcZ4SsBWe5-rDJMy7AD5A,11422
404
- cirq/protocols/apply_unitary_protocol.py,sha256=ISiwDw2Wzk9rn1kyv2OiaMuYtbUKPm0zQ8CFJF6RXYk,29870
405
- cirq/protocols/apply_unitary_protocol_test.py,sha256=XukFnr2B5vAobIr9laDNjCk68oM6QeDnquxtKz32j6w,26667
406
- cirq/protocols/approximate_equality_protocol.py,sha256=dAE1864uIybIDWYaF1k7nFBCiXpFtky69OiSRyWnoI0,6264
414
+ cirq/protocols/apply_mixture_protocol.py,sha256=DFvEfMeJEGr4XP7MBNovHI7hXuXKQBcEKBAO0xQQCXU,15319
415
+ cirq/protocols/apply_mixture_protocol_test.py,sha256=VGuTnSxVMRSSE7-ZCbr7gD8q-bt_sbeFW8SVYlpW8VA,11449
416
+ cirq/protocols/apply_unitary_protocol.py,sha256=0PT0WHQbIu12oWz_wTWX_VqhfRmZ35gaGn0lZ3F6FDY,29897
417
+ cirq/protocols/apply_unitary_protocol_test.py,sha256=s5Ap5iiYJvB9wJlAZ_FbmurlGfCNWIS-LGYZffr8tyE,26767
418
+ cirq/protocols/approximate_equality_protocol.py,sha256=qn-4wZxNd_e-9j8iv_2vlHlVnZ7Nj6ewUn0zqofoZi0,6291
407
419
  cirq/protocols/approximate_equality_protocol_test.py,sha256=APzdSFqSTTBsjEtfSRR44H2CllYL1_OsPUH1NTzR08c,9495
408
- cirq/protocols/circuit_diagram_info_protocol.py,sha256=Bj7zAAxFZZ7VhJWk8eLmCWVX-WrHd5k4wBz23jER5JA,17179
420
+ cirq/protocols/circuit_diagram_info_protocol.py,sha256=wCtKKOaw0Lmsca84wAzTtqYIwrXzMN_u7WX7Ycu_GVo,17206
409
421
  cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=r-kNamR6QPdu-Q9to2DKLrDP9J8rWOA7IxfMVvcO0qE,12074
410
422
  cirq/protocols/commutes_protocol.py,sha256=DPwB_xKiqj3MW8uxEksjWDd6c163zgNMNMDjE2N9Xbw,7368
411
423
  cirq/protocols/commutes_protocol_test.py,sha256=INP3i39_3Xqh8oDTDNdY546fqD3eqnVzW_TO0zUVCeg,5911
412
- cirq/protocols/control_key_protocol.py,sha256=OhMkglGhP0_Of1Z-pMkEs6pYDTKzmu23pVyZunqyBBk,2591
424
+ cirq/protocols/control_key_protocol.py,sha256=a_yEw9vk7nlfJ-lADHIJPf0RhuxfM7KYcRvuG-prtXg,2934
413
425
  cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
414
- cirq/protocols/decompose_protocol.py,sha256=73wGRdSf4o_K8MJ0i-DPJIBiNlq6fRGrF9E90NqxhwY,18941
426
+ cirq/protocols/decompose_protocol.py,sha256=HLf37Wj4PGMo4KNKjBy9LL7nWVX01asiZaI__aTHYWI,18923
415
427
  cirq/protocols/decompose_protocol_test.py,sha256=JJexKMKYdSW1K1S4wkTyR1Wy80Ku_jHslSJx3gJ5REs,18130
416
428
  cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=rIk5aRxjtmi75c1lfXutycULZYHNR2zfKmmZ67L0kZU,4077
417
429
  cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
418
- cirq/protocols/has_stabilizer_effect_protocol.py,sha256=T_CVVpvckp3ZTsWi089mPqbmwOPLlF6GalEKrVK7Hvs,4309
419
- cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=T6-vtMO-eBXIMRur1nlmAzi4ty4-F1BP59ZRWR_d0HQ,3955
430
+ cirq/protocols/has_stabilizer_effect_protocol.py,sha256=Jap6z5ocbXLRH_9eEKw6O3nerzkGG_BB0aea1A4QZUA,4307
431
+ cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=nXmWpMvOtmbeetjSwbWzdJoghDxuDzLyV6awhtRUc5Y,4087
420
432
  cirq/protocols/has_unitary_protocol.py,sha256=pO23u1faWqz1s-cvE1rySczN6tdriM7dvBOAh7A0pzs,5439
421
- cirq/protocols/has_unitary_protocol_test.py,sha256=FifK9oCMMyXHsZJNsDNutbKvty-p3jfcwVZzxyWoZ74,5956
422
- cirq/protocols/hash_from_pickle_test.py,sha256=H1V2cy-gtbKhhewZPSI7kcNqgpkS5luF70JLGZSkuYs,4108
423
- cirq/protocols/inverse_protocol.py,sha256=tHaY8-dfd0SD59v3DZ_zpwz7lwFrraPExEnIgn1T0RI,3965
433
+ cirq/protocols/has_unitary_protocol_test.py,sha256=CJDVVW3eFwcTa9wWl6GavBD2Z62YEmQjMWKDTdV8skg,5994
434
+ cirq/protocols/hash_from_pickle_test.py,sha256=9ngrFdPe65jESRvrEiFuxmB56ypllofcU6tuCMs80B0,4108
435
+ cirq/protocols/inverse_protocol.py,sha256=msnGXeK4ZJ7ejM3_9mE4gw_L95aSQnrkc4Stt2QWV64,3992
424
436
  cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
425
- cirq/protocols/json_serialization.py,sha256=7FlTtI8a4fWQ0znWq9APrElQdCU44667rNFNnSraxrE,24491
426
- cirq/protocols/json_serialization_test.py,sha256=An57W8eBWaUF4kKOCos2UlHzNiILnUJvqmZLmwZ_6MA,27872
427
- cirq/protocols/kraus_protocol.py,sha256=Dpv8JA1cSWXYXrkx3vBZupxQHdIyYDC_y0R0rVL3QDE,11377
428
- cirq/protocols/kraus_protocol_test.py,sha256=NCgkPoGuSki7VGqbnRUDsuhpFlvDJEAcJGzeLpImz6Q,8236
429
- cirq/protocols/measurement_key_protocol.py,sha256=nhfnvNmfjJVYG4R7xFTqNdMzYC1r9uqy43iT-eJC58s,13321
437
+ cirq/protocols/json_serialization.py,sha256=jCyahEQe5qgHO87nzxtKp5rHm0zMagWGX1nPyf0x8nM,24577
438
+ cirq/protocols/json_serialization_test.py,sha256=TewzqlI48icH_8DK-DoYtrMlyH0Mznjzi_vIxQjwKbk,28090
439
+ cirq/protocols/kraus_protocol.py,sha256=ZNbdN3HUlysVvmXbOBlR38lKSLtxfi2mh-Xtj_VZYio,11404
440
+ cirq/protocols/kraus_protocol_test.py,sha256=2L06H6CRIZlS_8X7lAv2-OIfBQVfeRhdYrS0J0Xdh2A,8279
441
+ cirq/protocols/measurement_key_protocol.py,sha256=poFjzUhK0DZ0dwOGt3SQGH_KMhUKrlPguA5H3AnMyBw,13750
430
442
  cirq/protocols/measurement_key_protocol_test.py,sha256=PqSU9uB4t2yvPz9hZBLby2mZnZo-DOLlx3HIicyPeLo,8768
431
- cirq/protocols/mixture_protocol.py,sha256=-BkCRr_JAQwZ4yZ2GptOn-xcJLzgzcFQKdCB0oBV0EU,6399
432
- cirq/protocols/mixture_protocol_test.py,sha256=Sa0XzglMnVZRJir0EKTTiNJ2yBGVSrGvD8fDoKfYFQg,3858
443
+ cirq/protocols/mixture_protocol.py,sha256=w0c9mchy4WHhQS6gt4E1sfG3LkulDgXnR_lam_sKIUw,6434
444
+ cirq/protocols/mixture_protocol_test.py,sha256=8hSIlvlQJ-HxHrlgX8ZCykZsP5wcWZhXJUF5JfiXIRM,3932
433
445
  cirq/protocols/mul_protocol.py,sha256=Jv7Qq5SejO0F6kpnFcTBML3rjZd-LTmrUJJ_D7PRpR4,2749
434
- cirq/protocols/mul_protocol_test.py,sha256=J2jvKPr4Doy9Fx7RNCXbjvTkyBu1fcsxfRH-I6OzE34,2172
446
+ cirq/protocols/mul_protocol_test.py,sha256=d8aG5PnGkmNEan23KcL6Y1KHYmgS8Plyi7g65gqa3gU,2240
435
447
  cirq/protocols/pauli_expansion_protocol.py,sha256=a-oovf62dKIbMGx4SdzNiQfjBpZkmvvwzqRLPnfQqoQ,3738
436
448
  cirq/protocols/pauli_expansion_protocol_test.py,sha256=TATNum73ccpG_SbK6FWxcD7rj5kw92mKpzzK1oNZkk8,2769
437
- cirq/protocols/phase_protocol.py,sha256=7WVlTzqcyDV-l6zBJ9x1bJg5555jCuF_0dJ62UeGZ7Y,3618
449
+ cirq/protocols/phase_protocol.py,sha256=FNjEBmBZyAGpjA_WesqFg_PBN7-qL-QIP0PAUbXa2ns,3812
438
450
  cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
439
- cirq/protocols/pow_protocol.py,sha256=q_Y3MMdkOXiB1D6V34lQGNf8vlvc5btZfDeO8M0jZd0,3151
440
- cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
441
- cirq/protocols/qasm.py,sha256=njxlAUNwzQfyZXn3Uwk4z6HvcXb6vgcRsRpFRLTNutY,7186
451
+ cirq/protocols/pow_protocol.py,sha256=wxYpedx4xE9MMS9ybEBBT3tLHalfsjpqdeHnocgVics,3178
452
+ cirq/protocols/pow_protocol_test.py,sha256=MJHL_chaWEWS_CK9Bc-BVQMOblwKVbzcvjw1EkNQSUQ,1748
453
+ cirq/protocols/qasm.py,sha256=cB7ECmC46Ux6zW0I4IePZX_oEUIuc3BSvfh-6B-v-D4,7213
442
454
  cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
443
- cirq/protocols/qid_shape_protocol.py,sha256=JTzhzsz_hNe7QYMLSoJbLacolXj8WrtF5_3Xim_mctc,7652
455
+ cirq/protocols/qid_shape_protocol.py,sha256=CDahjKZHUY4bUHAm9JfX8_K0nsByaOzql96Cms8WPy0,7679
444
456
  cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
445
- cirq/protocols/resolve_parameters.py,sha256=N1NJJ672v3ISQRusO-t6nwm1hOmOqMVBeXtqfjR_Pzc,7399
457
+ cirq/protocols/resolve_parameters.py,sha256=Lw1Kf3QOMjiRYCO1vr5Fd0UxY8TPQ-5es3asogTxOqQ,7448
446
458
  cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
447
- cirq/protocols/trace_distance_bound.py,sha256=xF_qfkFV_T7O3-5lBITupq6ulBYuzFXDHaYDv7it96E,4150
459
+ cirq/protocols/trace_distance_bound.py,sha256=hh8okHf7bo4kXSXK92km159MrK9GVV9ib3meGhQZpys,4177
448
460
  cirq/protocols/trace_distance_bound_test.py,sha256=0bI9uYttJj5eayM05kShPh9qkxeKG1egcZ9fXJPZWNU,1980
449
- cirq/protocols/unitary_protocol.py,sha256=KsXGUA7bkHOkL9GqJXpyFmhA0HVQeLdZfypZJC7yU6g,8233
450
- cirq/protocols/unitary_protocol_test.py,sha256=oj31ZmeGylf4wh2jv_EwsXmJ7YYgsu3YM43A-yXrPps,10480
461
+ cirq/protocols/unitary_protocol.py,sha256=3eP2U74vap3-Ha1xXr-FpkWIi6kHFWKroFe7f83puTk,8287
462
+ cirq/protocols/unitary_protocol_test.py,sha256=C7gauI6a5mcyjCc_qfRYt6eDtigt46kSdo8hpj2WEV8,10838
451
463
  cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
452
464
  cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
453
465
  cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
@@ -918,126 +930,126 @@ cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPW
918
930
  cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
919
931
  cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
920
932
  cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
921
- cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
922
- cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
923
- cirq/qis/clifford_tableau.py,sha256=yWYa2ahqITMuEc41IdjDreV04orfZUVREHHHfGAvFp0,26208
924
- cirq/qis/clifford_tableau_test.py,sha256=MPb5kGoCOjHpfIzADKmd1qDbUkXR6nwZbpQnC6UCTH0,18385
925
- cirq/qis/entropy.py,sha256=SWB_Q7k5io_ZB1FzpNeUZNte3QqjiRR1_8vN2nEOt-M,4242
926
- cirq/qis/entropy_test.py,sha256=DYdTUSosNo8njD8XiX7ZHtSydZf2wJun1RMKne6is5Y,1717
933
+ cirq/qis/channels.py,sha256=7djUp0vVoodXZ-VkmkZMYsAkO9TZnfLWETw-iRGPxF0,12841
934
+ cirq/qis/channels_test.py,sha256=BeYJJUnCFE4nhkNgBH4OxXlZJt_clLQZTqA4t6EJezI,14267
935
+ cirq/qis/clifford_tableau.py,sha256=HeKSzsAchulgDyowuJ8GgHen2yJmycc4jrpA6_8teM0,26347
936
+ cirq/qis/clifford_tableau_test.py,sha256=f9vpGZPLmcF6Sv-8oPV2mM2OFlh6hOYCArki8Px1rLM,18539
937
+ cirq/qis/entropy.py,sha256=M8nZXjAk-eazZtUs2aU5vukBTbY5D7-crZbocrqJ1rQ,4247
938
+ cirq/qis/entropy_test.py,sha256=aBZyHxLM_Z5mWvRFWUGlIqlry8yJD9bfGyxNKybhziI,1725
927
939
  cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
928
940
  cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
929
941
  cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
930
942
  cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
931
- cirq/qis/quantum_state_representation.py,sha256=usrQ4eTty-rGnG3w9nvWmz0Yb9Vt83q3N05gT58pJMU,3203
932
- cirq/qis/states.py,sha256=FkUp-pOj_a1rd6U9t3xaq7PK8KPNKsq54AWmkpLulDY,41775
933
- cirq/qis/states_test.py,sha256=vTvZE0Y-WL7gD7g5gy0HendmrHfbh-qPZ6KsDJH7aAg,31849
943
+ cirq/qis/quantum_state_representation.py,sha256=RnRIPb33gquc_Kobj3mlf2JlBqKRZlF_pmnnKTOQ6V8,3230
944
+ cirq/qis/states.py,sha256=GsBwED4ZpgcjfAis9Akth8kmDulqJz8Eq4ENV2cxRkc,41982
945
+ cirq/qis/states_test.py,sha256=bBjiKiTEB-J0Z1OJGElBXOaYrU4cFTn41-mLSK-E35M,32321
934
946
  cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
935
- cirq/sim/classical_simulator.py,sha256=dBI1bgbMKPBYTTnBEU3pfI1UkXn4XZFeHFP21z7TLWM,9295
936
- cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b-myCmbI,12739
937
- cirq/sim/density_matrix_simulation_state.py,sha256=EW_iOJutp5jKJfM9gZhBjkAkD7ZLmukN3t8mP0quzLE,13968
947
+ cirq/sim/classical_simulator.py,sha256=yW0LXu-zzwp_WuWVbdUiJieLqjpDyR6CYbZWtTJsW40,9820
948
+ cirq/sim/classical_simulator_test.py,sha256=USnEOt7CjxGCK0OK_2BGyWJaTvcJemKiqg2LYW2o0s0,14907
949
+ cirq/sim/density_matrix_simulation_state.py,sha256=VWjWtwLJ7SNSaWySIhAXA3qXYLz2CN9ONI8lPRAbkyI,14070
938
950
  cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
939
- cirq/sim/density_matrix_simulator.py,sha256=ZvXfKs0IxBTtu93Eq207WA9hXXv4CUfvxyAzq3eXAEc,17490
940
- cirq/sim/density_matrix_simulator_test.py,sha256=X2BVzl1jZeORA3aiK3X6BKFpt1pcnXhx74NA2cL9sCg,61288
941
- cirq/sim/density_matrix_utils.py,sha256=W2jUIiuBve3MEECrgxUImTKw4YtaaGiscXxQEzYdViY,10273
942
- cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
943
- cirq/sim/mux.py,sha256=w7sdSWFtmAEmHHn5nMH4H1qBCCp5oltlteH5vs3C_ik,12451
944
- cirq/sim/mux_test.py,sha256=VKwMk5r4iX3tNY-Af-pZwhUVF9qxq8yT03YxhV2DmME,13717
945
- cirq/sim/simulation_product_state.py,sha256=py-gVRPis1EfyavdCW5gLhiULocrqUOTe7ZI7OD-nws,7014
946
- cirq/sim/simulation_product_state_test.py,sha256=ZZeCC9a_VIehiMzyo9QQPL4PD2G2h8XVZk80IZzD5Ok,9093
947
- cirq/sim/simulation_state.py,sha256=wwKjntD1XuwyUcXJGFJYwmmolYaPK5pc8_xS05cOsQg,12522
948
- cirq/sim/simulation_state_base.py,sha256=ASH6OeyTLnWyZmSO9hdfvnS5vtVuBgm6GVUUB-izW-Q,4040
949
- cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5JJ4SY,7560
950
- cirq/sim/simulation_utils.py,sha256=KWg_hbVyxhXK7e0r4DF8yHKcYSDmFqRIIxkF_l4O0Qg,2676
951
+ cirq/sim/density_matrix_simulator.py,sha256=l8lsbrO_VL4STH6xARLrSlKhi0cMY_9RnTyaNgX8Nd4,17531
952
+ cirq/sim/density_matrix_simulator_test.py,sha256=SbLGFqg9d2RPdDygfJ83soBc_yZCnZyT2vmpEnuGiag,62050
953
+ cirq/sim/density_matrix_utils.py,sha256=3XS5iOQMZTDW7SO2yope4hx1n7Jd6F90HaPSN8_lYGI,10300
954
+ cirq/sim/density_matrix_utils_test.py,sha256=xwe-kRZdv7CDD3boU5H8gFaHUAOjK3lGi4gjxZWhY7Q,14563
955
+ cirq/sim/mux.py,sha256=ZoNLYZfm1ozhkM-UVV9MuyBq8ET8thmtlpxOXjrdQTI,13821
956
+ cirq/sim/mux_test.py,sha256=3cFV5vBcy2fOnuTSqZRLmpKhOl-_eEKCD7LQlGtbEjw,14333
957
+ cirq/sim/simulation_product_state.py,sha256=L9ohV3MrHbigXVsSZmBhapP-2ZvCf2fqS_n9E-DPYuc,7041
958
+ cirq/sim/simulation_product_state_test.py,sha256=KZtdDvcmNLbs0_i1Cgx6QuyVgHLvccelcv9CzIPimyE,9192
959
+ cirq/sim/simulation_state.py,sha256=WyPCe35E60Q02LJ6c2kuhTpolLATnrs_wgSCaAaHXz4,12581
960
+ cirq/sim/simulation_state_base.py,sha256=7W9R5n0isQscmhGZZRKhyUuBNiKfvG4FyFcikwjKNp0,4075
961
+ cirq/sim/simulation_state_test.py,sha256=HhPqrhgqmX6i7h0Dn3nZrTqY1XMEbjcAhVTkrJ9xj5g,7695
962
+ cirq/sim/simulation_utils.py,sha256=LGXpNxJJv8dKN1eHpNcEgZ4169sWJM0jFS_8T4Fuxd0,2703
951
963
  cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
952
- cirq/sim/simulator.py,sha256=IwFY1865IyqZTvm_AvCVKkCXthrcfqcIjv3H1zYyKxM,41783
953
- cirq/sim/simulator_base.py,sha256=YtP27aAGiyqNXyCK1ibKpaNvExyEzZgi-PBr-rFdHjM,18182
954
- cirq/sim/simulator_base_test.py,sha256=ag_1DIA82vEBLrXlwxWBvtobJa9E6SqBT46F6aPZESc,14979
955
- cirq/sim/simulator_test.py,sha256=bPcjADGo1AzA5m_zvaap38NJ6n-IGKBRSAVgFmu8-ek,18799
956
- cirq/sim/sparse_simulator.py,sha256=d0chp2JPvvcc0DovfmHxPGII4b1wQBPvuh76_VQTv9I,12922
957
- cirq/sim/sparse_simulator_test.py,sha256=7P9LEeu6359slpvRJhVW4_gCKSnxpCTQVzpkvB_s0bo,53790
958
- cirq/sim/state_vector.py,sha256=D-o77aJ0tIBarPXdvLER22NXeX5mQ5EwpjKtbWRljEI,13415
959
- cirq/sim/state_vector_simulation_state.py,sha256=O_WuK7xKYGhFYX4jlAoVmsggjIFgh6ZbFYhnFxTo1Pw,17506
964
+ cirq/sim/simulator.py,sha256=ALZnw9YzZ_dPlJ1pp1oxSKMBXEc4puS_QWr5DAkGUJQ,41831
965
+ cirq/sim/simulator_base.py,sha256=gf0xYCBl7lvqmV4F8pzcQlWD6elToaVkF1CnaA-34TQ,18209
966
+ cirq/sim/simulator_base_test.py,sha256=P1zROHOQbsA47XPDJptfREF9KXyEsGthH3cBkMiarkM,16298
967
+ cirq/sim/simulator_test.py,sha256=v-wGBECx-fe_P5LDrEYh9blgHGLUBLeDLui5T2dR4aA,19360
968
+ cirq/sim/sparse_simulator.py,sha256=OMs4UDg405T1_hIIezgqXIEw_FRDZIU9sPr0q4C8qbo,12963
969
+ cirq/sim/sparse_simulator_test.py,sha256=ZZ9dRplyB0NY2o9GDq1CknMvbDt6MUjjOHI_V55iL_g,54534
970
+ cirq/sim/state_vector.py,sha256=juNLCu2Yhc29xhHuWhhSH8M1BThDQ1Iz8g16lOTC6xk,13360
971
+ cirq/sim/state_vector_simulation_state.py,sha256=hQa6-dkEaJGX9OsYtJooEmmKHtL_trz8ujnPRbUfWNk,17643
960
972
  cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
961
- cirq/sim/state_vector_simulator.py,sha256=vQlFlnnczQn5dmSBACzouZnCgxJhIM3O38KfGiv-Caw,8206
962
- cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFPw9cBMRs3WM,7900
963
- cirq/sim/state_vector_test.py,sha256=ZxJ3WjEdfI0guBlQs0JfhK05qAKQefvtpfuLjM3vR-M,16607
973
+ cirq/sim/state_vector_simulator.py,sha256=bOfqIAD4ye3Ikub4vQFY91cUnlf-LH1PKiwgOuKICiw,8233
974
+ cirq/sim/state_vector_simulator_test.py,sha256=DU0_pTgDubV-paZZXgRrYnHia9f0cd9aes3xelZiTXE,7972
975
+ cirq/sim/state_vector_test.py,sha256=dqyQdGRLnaR8eWA8U0rFrGQCpDh8sMqTD4aw5ZrVAc4,17017
964
976
  cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
965
- cirq/sim/clifford/clifford_simulator.py,sha256=zld4rZYuq8_m7C_m9n6WPhtxLrGKVMHT3vQI942a85Y,9828
966
- cirq/sim/clifford/clifford_simulator_test.py,sha256=caKQHVNuQoZYcJqfanTtNx6Hhc_6VmD908Z2mzJ8o6I,21405
967
- cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=0T0ckoRzm-pdQuu9gwFlJe2wOqzf772QDHY7yLLoY9U,2173
977
+ cirq/sim/clifford/clifford_simulator.py,sha256=W67lSClYyKtz7k-jTeYoz3TyqJ83_8lIbSZNlE83txs,9924
978
+ cirq/sim/clifford/clifford_simulator_test.py,sha256=l5U1wTDq4NyzoO8efRJ-67dyiJg2hn8fWwMhqYrgfIQ,21771
979
+ cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=CbV6bB5BX4xpuGGHHh-lWu12KXvSpK1JRJ7YTsbRFXU,2200
968
980
  cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
969
- cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=c0AiqB_CMW9DzAJWRRe86-LJAPIaRQai7JOm7Gco6Pw,3030
981
+ cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=inE5ePM-O6pGCnDFRbrxQ-B1KAixcSbuf6bGzypUpZc,3057
970
982
  cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=KNWsT5MbwULzARrtLtAYzJpwv09Ld8uy0cu1DU4pMx0,3958
971
- cirq/sim/clifford/stabilizer_sampler.py,sha256=JE30zh0SOlE1MswbFtZE_Rfc831qkB3pgCCyF8O8phA,2554
983
+ cirq/sim/clifford/stabilizer_sampler.py,sha256=hLD8tnPLFmjSmUMdpQYxxnssCAG-SSTJWEbApF60bwE,2563
972
984
  cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
973
- cirq/sim/clifford/stabilizer_simulation_state.py,sha256=7ZQyFGbzkWC6kh4_jmZvtW5mLPapEoe61lye43tzfso,6704
985
+ cirq/sim/clifford/stabilizer_simulation_state.py,sha256=10XdROSu46EHia8iFze323fhXd7SLZ0oMfBx_XEgTVY,6731
974
986
  cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
975
- cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=EWSVRig2ZxpVamCXL8TTTcBIJaHCxeUmWohPhzrsztE,14155
976
- cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=UuvgpwexGB5LzMfaa3Gws2vHhC9pyHrqW_gDtx_pAYM,3201
977
- cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
978
- cirq/study/flatten_expressions.py,sha256=q9U-AukDri63yC4pF_dEKCX81RfquK4z31ktLkL0gz0,15528
987
+ cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=gklORzX82m_ZfS0NUJnNoHvqny-xUPR3SdiUYZ6MZk0,14140
988
+ cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=54rsMKAjaMTDKEKozJfKgKZgIgNNmhc7nM2NA_Mmb5E,3181
989
+ cirq/study/__init__.py,sha256=DOSO7zCALprkHGIA2Y_Ys36EDxsfyTQUjXOS326vRTk,1697
990
+ cirq/study/flatten_expressions.py,sha256=a7fataE8pcPHv_FzwMhvZrjCoJYy8EFZJpip2E3M46s,15555
979
991
  cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f90-2uNj1c,6202
980
- cirq/study/resolver.py,sha256=TozodaKHKobwTKVR3g3DblzPljTrErAxVHryZVwpraQ,11747
981
- cirq/study/resolver_test.py,sha256=LY1h8RCPY4d_8O5hprRcIf3HFhzODQrMbUrmwmt1fbM,10727
982
- cirq/study/result.py,sha256=ci9Pg9IW4OMR4aZ4SaQ7TPVTgoSU-1WarjKEXBv2F2g,19214
983
- cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
984
- cirq/study/sweepable.py,sha256=UlpkVE9oLOgdpz0WHpQMq1ZRVbsM3r_CGM6okYr165I,4308
985
- cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
986
- cirq/study/sweeps.py,sha256=vGNedvDb_qypXtmz-fdtFO2aePMlvLhLj_rHzE4as2k,21567
987
- cirq/study/sweeps_test.py,sha256=fiOKKnDyD-Ju7xeQM7A9pKkfR58VHXKdc0qw9d0MwRA,17231
992
+ cirq/study/resolver.py,sha256=lzhQymA2CyFb67CdzHPD296XpLj1GuIIRBEoM3efTx8,12259
993
+ cirq/study/resolver_test.py,sha256=XmebRPBMoTwEtBYb1pd3nyuY-vRyQsMOCgkE47wmroM,10722
994
+ cirq/study/result.py,sha256=85ydDHGMwju-KTy1DfPANwdLR2ek4YLL8gOxOHCUmjM,19241
995
+ cirq/study/result_test.py,sha256=VdzUNYcyIwFmoaaj9Ahi8jzepwH3TrN4JEY-JHECgBs,15805
996
+ cirq/study/sweepable.py,sha256=cuOxVARB34hC2ZY1hP8qSnLg9Gq9hoJlhiJN1V6yFNI,4335
997
+ cirq/study/sweepable_test.py,sha256=mSbCVpYp200Xdy1c2kXQg1aFmGTrmJy36nvMJDbXRmw,5717
998
+ cirq/study/sweeps.py,sha256=F_0va3hRt1Z6ZpCr27DuvBolV_JWt2kVy3L2QA2G-4A,22651
999
+ cirq/study/sweeps_test.py,sha256=9iuTAL_C_t6-Gl4BDaAm44bwKYSUywakiAt3a9IzjNc,18400
988
1000
  cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
989
- cirq/testing/circuit_compare.py,sha256=vWgMVa-TVwTRUMyEvNV6Ah3CMRlZYVo1xn41MsCTHzo,18766
990
- cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
1001
+ cirq/testing/circuit_compare.py,sha256=w0EFbG2JXN3XFWhROI1-fFlellj_B5Y7VwXrMlhcAX0,18793
1002
+ cirq/testing/circuit_compare_test.py,sha256=MqsI03YdleFzh-HJHh1u9ClqkUwIV8cWkzPCbNM8WjY,19934
991
1003
  cirq/testing/consistent_act_on.py,sha256=hE_6fRPcmlvgRf2bHkB0XS4jnh_cR2PVS-g9YyNIijo,7670
992
- cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
993
- cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
1004
+ cirq/testing/consistent_act_on_test.py,sha256=JO9BonPKXBQqYTqA-NbnpcG9hgozWmqY8aVWlMxwfYo,3580
1005
+ cirq/testing/consistent_channels.py,sha256=_-RNKWR7GQNjp5K42g0NyM11Kp4vtqMCPCEtYJd3oAo,1789
994
1006
  cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
995
- cirq/testing/consistent_controlled_gate_op.py,sha256=kYWpELVPT5c-bxTTNkWceiuEJDdsKheO3ZV0N1mTnpk,2665
996
- cirq/testing/consistent_controlled_gate_op_test.py,sha256=-Uzm7T3HFKSE8jPfTPi9ElJaXCHqaOpbfjFvD1un5rE,3221
997
- cirq/testing/consistent_decomposition.py,sha256=mkOmMAMPr0B215n-nSX3yxHxA45HwTb7G0KFEIr69jI,3665
1007
+ cirq/testing/consistent_controlled_gate_op.py,sha256=MSKekjOHbKubN6Wo7JD6ahP-ZJRLtPNSyGKE_0iXbms,2682
1008
+ cirq/testing/consistent_controlled_gate_op_test.py,sha256=XAQV03CV6qajZef2qabB9E9RPPNNj3R5F50I9d-OL6Q,3248
1009
+ cirq/testing/consistent_decomposition.py,sha256=56HMW5RnOJBH5uAI9dhx3og51DCyG9WgWz6i6yykCfI,3687
998
1010
  cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
999
1011
  cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
1000
1012
  cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
1001
- cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
1013
+ cirq/testing/consistent_phase_by.py,sha256=rIYf0ISZreoZ2NFyqjnVIwhaMBi2cUgwPBCmmGQvMSo,2129
1002
1014
  cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
1003
- cirq/testing/consistent_protocols.py,sha256=w8KIfrNPmp5IpKqUntdZbtIOIa1JyN34q6RGb3cF7Tg,7468
1004
- cirq/testing/consistent_protocols_test.py,sha256=U9lzwbnjAwQVcL8fRN5MpHSgUj4faRA3pt5Z6uEPOwQ,10003
1005
- cirq/testing/consistent_qasm.py,sha256=IE1VkEh-isZNoQbK-AKmCI1xpQidryNG4xOqKcdzCOY,5055
1006
- cirq/testing/consistent_qasm_test.py,sha256=5qpvWQt6KS4ltp-ia8LE4YrgmWSVo3hwcJplQsFIvww,2915
1007
- cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
1015
+ cirq/testing/consistent_protocols.py,sha256=uWpaWs3Bi_7kjQApEGk1PLw0aHZ1uIplfxvhfAyeZQ0,7495
1016
+ cirq/testing/consistent_protocols_test.py,sha256=3RBpA9LeSyg92G0fkIjKMn2g4-Rybg4ajVgbe9VPSa4,9988
1017
+ cirq/testing/consistent_qasm.py,sha256=5I1RhkFjMdNFbMQf8aSGeTbvAc7TRVBqRIyZKuyINwc,5098
1018
+ cirq/testing/consistent_qasm_test.py,sha256=EjZFgjhKemO8B-0q3Nzx2H0lvsbT5HIIPMYNGzkNLbE,2955
1019
+ cirq/testing/consistent_resolve_parameters.py,sha256=EZ47cIqMayuhkcoNeTW7B_XfNzVzR0TOYZZ0G8HiIiY,2018
1008
1020
  cirq/testing/consistent_specified_has_unitary.py,sha256=gFFhitFqLnEy3rYmtZVkZ_wq5eVt7A8SUT0kbl8g6n8,1093
1009
1021
  cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
1010
- cirq/testing/consistent_unitary.py,sha256=8O9xaTEQCUNOn8BsuHnCXcbXI8ZV2DZGiNp1dk55xM0,3284
1011
- cirq/testing/consistent_unitary_test.py,sha256=yK8fFh2bcmZunUF2lrsTWY5pt9sk6pFKInvMg0MrKZ0,3312
1012
- cirq/testing/deprecation.py,sha256=FEcBPgLFKkfXDDU-DKrOL_ZO-1a4dEtGiQ8C8vosQQ0,2176
1022
+ cirq/testing/consistent_unitary.py,sha256=TeHSxujLzpmbT2q3N4DSrVs8DyxVdK3u8uiWO62pb5U,3292
1023
+ cirq/testing/consistent_unitary_test.py,sha256=IjbBP_wCMY7QBmP6mX0IieFf6Ln0wgTUNuVCWbLxdAg,3308
1024
+ cirq/testing/deprecation.py,sha256=TPcqQ2oZRY_hKs_b4NvP0VOmkiAatKbpl1DVKe2zIbA,2185
1013
1025
  cirq/testing/deprecation_test.py,sha256=LC---8mwEnEu4mi_95aJmv-z5lEB1wSFVqX_KVueOT0,2219
1014
- cirq/testing/devices.py,sha256=K1LKZi1_8WUvz7b_7_4_R75kRC08ATBXRxMzhQ3Kz9g,3289
1026
+ cirq/testing/devices.py,sha256=TID2L1q0rp1J7lFNXSY5cKmUt9lJwTsdIk8AH78vdBk,3300
1015
1027
  cirq/testing/devices_test.py,sha256=MeakoMeIRgcKkTTKqp2khfCaybRaCsZuaCHhTLgNy6U,2922
1016
- cirq/testing/equals_tester.py,sha256=XmCj8zPoS5DKGKDMVTTEC_uIikiYCth0l0o6QPd4oBU,6597
1028
+ cirq/testing/equals_tester.py,sha256=jwYLO0PcmPoHpKeTSzrQNXHc0JNOdo1Ep-CVK9mKEAo,6640
1017
1029
  cirq/testing/equals_tester_test.py,sha256=337JBdQcxsj_-qx8rrub0vycC8knx6JpVcFvFbWt2es,10595
1018
- cirq/testing/equivalent_basis_map.py,sha256=n6NNq70tIzpeqRHUOF08wgJUKOZDxK_YqrZGhFugwdY,2650
1030
+ cirq/testing/equivalent_basis_map.py,sha256=xG5o-7S9e1THUQeq0xxuCF6ZXWK2FbJ89E96ZJJkMpw,2673
1019
1031
  cirq/testing/equivalent_basis_map_test.py,sha256=Gg8CzHzkbKUAxZdLRlsP2oS-rstUXP6T0m6X_v8d1IU,1523
1020
1032
  cirq/testing/equivalent_repr_eval.py,sha256=o7juCX8DNaVjaodkQrA8xEsFurmZ-P-trtJ3M5_lhgI,3357
1021
1033
  cirq/testing/equivalent_repr_eval_test.py,sha256=6k2EhVYx2vxdJT2JEH0Kv390p3G0dJ0TEp1tdpFS_v4,3024
1022
1034
  cirq/testing/gate_features.py,sha256=7hFdlkFCDDiQ6gJaEQ6ICAQgMOu-bgGvFUz-7rVCRx0,1403
1023
1035
  cirq/testing/gate_features_test.py,sha256=4cMncHo6SvyMvSFY1m9eQOwwKMUuADlWaavgbOMC8ZM,2390
1024
- cirq/testing/json.py,sha256=Lzpfv_vn8NqYUhmB373Ay9NY9qkfd_piJMsLI4uSRSM,6683
1036
+ cirq/testing/json.py,sha256=uCLcZzoJmppmOhxiJpyDtOAaQQlQWa9jppkfgknJw-0,6718
1025
1037
  cirq/testing/json_test.py,sha256=wKpzoEHPariqLdZaIxgb87Tx1gAIbIXoXWUyR8TykGw,1152
1026
- cirq/testing/lin_alg_utils.py,sha256=Lcmz-1RwctkS58ciVP8tnBV1Ka1cAWslDM2l5NCzYT8,6286
1038
+ cirq/testing/lin_alg_utils.py,sha256=2sQHttNkmY8hIs8uXa09JOaLGggLaYX2u3zhjFw1R2k,6323
1027
1039
  cirq/testing/lin_alg_utils_test.py,sha256=HiCNYby5ZXVcXJLb8CNatExtuAacrphgUERsqKswF6U,4245
1028
- cirq/testing/logs.py,sha256=s5w_qv-DLyZ_4S76u3ZH5zrV1jVSOW8ktmouR7aOXBI,4034
1040
+ cirq/testing/logs.py,sha256=Fjz0TO1qkEofbT2TwvXApMB-hptyZCXLEOh7TMFG0WY,4043
1029
1041
  cirq/testing/logs_test.py,sha256=spuIb0EOJxW-UNEuBds20ouIE1ROdqL9TbyTlqn1p6o,5811
1030
1042
  cirq/testing/no_identifier_qubit.py,sha256=jeevOm60Jm8jkdxTJaR9vFwYEBFamCQKL_F1UuQizg8,1225
1031
1043
  cirq/testing/no_identifier_qubit_test.py,sha256=K4fCbM_o9Hw1d7KggAttWKr2T_Ty9T7JXnjaQMpfgSg,1001
1032
- cirq/testing/op_tree.py,sha256=Qpb8TX2TUY1SNPxAwd4NkO29Zdf4EIydy-N1TdQnK4U,990
1044
+ cirq/testing/op_tree.py,sha256=880yYBhWi38XltIT3mmcOz8UyBO8d843eaBdKJgUT64,998
1033
1045
  cirq/testing/op_tree_test.py,sha256=CzE_y9B8m8nV0nb34f51-hESgZLoEXlZ3JDjPWvkMjw,1118
1034
- cirq/testing/order_tester.py,sha256=m59iRdipLkpCKycTuflXQtAKWzS88t9110CajIqjKys,6726
1046
+ cirq/testing/order_tester.py,sha256=fXm9XxGEEK9GgQ5vHv35XJmd7eoneeWpzSHyobfUbV4,6742
1035
1047
  cirq/testing/order_tester_test.py,sha256=1KevbjlXrW1e1vrU2Lj4---jlUn9n80uHtJgRM1G_lU,5195
1036
- cirq/testing/pytest_utils.py,sha256=dNVr8k246110-BIdM6VHvTp4_NhnGebTLlbErXslkzo,1956
1048
+ cirq/testing/pytest_utils.py,sha256=G3C-LKpJWLtLm9q3q06Ts-vf4lYiKDQ5KCLAtq8UQFg,1983
1037
1049
  cirq/testing/pytest_utils_test.py,sha256=NThV-uSoa9ob3YY_oUBD6j8dxlR52dOUAuiegvmaiYM,1366
1038
- cirq/testing/random_circuit.py,sha256=slo1oK32x8tL344DVfAnXNL-7MDOD7fhYqBcS_ufl8k,6134
1039
- cirq/testing/random_circuit_test.py,sha256=8H48CmWjXqhHvQs2bP7IzDonnIVUcY0m12RLpG9xejs,7079
1040
- cirq/testing/repr_pretty_tester.py,sha256=vM-EC9K4BdQUL8dA4XdJaY7xQxCQ1Z5FZJR_jmuceZY,2934
1050
+ cirq/testing/random_circuit.py,sha256=6S9-wmgoJcjiqNL1QImOZzFhGrklMQA9Zv5yRfnXtew,6161
1051
+ cirq/testing/random_circuit_test.py,sha256=ln7AdKNkX0MU8OKGqmK0FVaa_Jtuf3zcBmypTVSPv3k,7106
1052
+ cirq/testing/repr_pretty_tester.py,sha256=rlSyf2EzQVsypDCYUmUQbz57v13LXQFUnAkrLMkvwy4,2958
1041
1053
  cirq/testing/repr_pretty_tester_test.py,sha256=mqEH4H6kL6sFd0r6M99LsMBLc6nS_m8dGFZQl1zei5w,2286
1042
1054
  cirq/testing/routing_devices.py,sha256=7D1fxGFPdabjMH4MRix-S0nwS8fxRC-dxNT6Xb6Csq8,2565
1043
1055
  cirq/testing/routing_devices_test.py,sha256=65cXCM86_sf5BLgswaYrrefsqyFXluibdDzD6JL6wOw,5684
@@ -1045,7 +1057,7 @@ cirq/testing/sample_circuits.py,sha256=xZuhNN_AbCBmwTyP0K1lKcu0LQR38y479nLknX25r
1045
1057
  cirq/testing/sample_circuits_test.py,sha256=S8__hXfSPjL7FLx1ei6en3n9ymQbehYt7FKi3llmmM0,920
1046
1058
  cirq/testing/sample_gates.py,sha256=N9oKdKTthk-KxToof4cH81is2uZvIwUmHTAKwFdMqoY,3317
1047
1059
  cirq/testing/sample_gates_test.py,sha256=rMMI1o36KDyGFtLh_XiQvIzhsyePktsDw88eRauRqWc,2430
1048
- cirq/testing/_compat_test_data/__init__.py,sha256=T9LHBgX2CLUvAloqrH0F1AAXdtgMuQvG3vZZhNbg61A,3028
1060
+ cirq/testing/_compat_test_data/__init__.py,sha256=6q3meL3mXpvI_H63TQ1RGTn8L6wb3oRpdPoHyBRo3k8,3012
1049
1061
  cirq/testing/_compat_test_data/module_a/__init__.py,sha256=Ic68-4DyonoJbDUUXqg4Z5e1AbPjl_yIwKLp1EsrXp0,434
1050
1062
  cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
1051
1063
  cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
@@ -1064,178 +1076,185 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
1064
1076
  cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1065
1077
  cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1066
1078
  cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1067
- cirq/transformers/__init__.py,sha256=B4ijV7PR4bN_QBswNqpAehIWTjXuaRMeyccrWz4Gw4w,7285
1079
+ cirq/transformers/__init__.py,sha256=6noA2FZMgzwYorHZuyi1aMB8mQzohE2FIdNxbNxMLsM,7343
1080
+ cirq/transformers/_connected_component.py,sha256=4MEXxL4ZEMQ4Iq-z_SpG9VfpAgBpO3S1y95UeqB6Lfw,8099
1081
+ cirq/transformers/_connected_component_test.py,sha256=BNpoDshQWHw9uvHQpPkkM6yAfQe9s0DR5D25jz8kiUM,6204
1068
1082
  cirq/transformers/align.py,sha256=95iI2sIil7V02hRPaXB-wG_eiMb5yF6ffUZU3fHmPP4,3341
1069
- cirq/transformers/align_test.py,sha256=X4ysJuemqqOeKix2rO9SlwF4CBQzEYbgiqgZmlMxbsQ,7722
1083
+ cirq/transformers/align_test.py,sha256=blaroKF825RMDCdt403u98OoGck1AXSRCyw1KuWnqB0,7791
1070
1084
  cirq/transformers/drop_empty_moments.py,sha256=uZJG9FpUNyA1Mi0xLDuVuhj_siZhPZ1_s08Ry9xQ-1M,1535
1071
1085
  cirq/transformers/drop_empty_moments_test.py,sha256=h6Pji0z0o9KOB7fnSHseWpIAhzvxWurF_flg9XWm_YI,1959
1072
1086
  cirq/transformers/drop_negligible_operations.py,sha256=eP2dP_n0BYlr8aZ1wnD8YWsqCtwN0l0O6p45RbXEpfM,2097
1073
- cirq/transformers/drop_negligible_operations_test.py,sha256=32mS4QQ8tiH3wBAAgbUU8LgwWDmvreRVEDZML_kgxyo,3859
1074
- cirq/transformers/dynamical_decoupling.py,sha256=LP0Hrp7XqfVRmSy_wQX85GKPgK1Vy2_HCt8OyySFL2s,13484
1075
- cirq/transformers/dynamical_decoupling_test.py,sha256=wQUCw99ODghLmluox9-3rg-w_A1vEVa96dFmKXWC2m0,45171
1076
- cirq/transformers/eject_phased_paulis.py,sha256=gK1XIslsBPFcppUFacbhvzfhcnK5ZSVcyLN1SM5wTEE,14072
1077
- cirq/transformers/eject_phased_paulis_test.py,sha256=o5cK5zvcOMflFGQiXDiVBx-Cz_eA0EzTBXnujJ23O3s,14244
1078
- cirq/transformers/eject_z.py,sha256=3u0Q0WGGAxmZuPnyiU4q04gJMnY--0nvhF4eotnSl9k,5803
1079
- cirq/transformers/eject_z_test.py,sha256=mKa-xViF9ZyuJpHWeqmYfPHL-3AGNTTfe0yHaXYHRZ8,13226
1080
- cirq/transformers/expand_composite.py,sha256=jDuipLc-9uYKGogQ7HAH0NLg5qb1uhdxh1nFWBYWkPk,2402
1081
- cirq/transformers/expand_composite_test.py,sha256=l-4EZqj0CN9NJJRYSvvAYLkIvQ9t2YAPtkCnuKs-KJU,8677
1087
+ cirq/transformers/drop_negligible_operations_test.py,sha256=LrZDDITL5dskTywIahZqZBWnIXAJqNAjOgd4EYfrYTA,3908
1088
+ cirq/transformers/dynamical_decoupling.py,sha256=H0sOVKce3-NV-B8onp_S-mWU50EFJ9GJxJqKpQrYoCU,15113
1089
+ cirq/transformers/dynamical_decoupling_test.py,sha256=ChZljNEWwmQTvqaXjvSj3j8YJ1VZZnNm0OoYr-2Eqo8,43038
1090
+ cirq/transformers/eject_phased_paulis.py,sha256=LEpnrrUfnSJSnq4ToiOGIhtC721MRXceIWiktYeZ8Nc,14099
1091
+ cirq/transformers/eject_phased_paulis_test.py,sha256=f-9uuiWxHrnH4QMIr6VaWkplOD_bjT8v9UrnhQe6GcE,14279
1092
+ cirq/transformers/eject_z.py,sha256=GsQ4Yz1Ibs3m86ElaVE9wJt131yCrT1Kg9VZ9plxhFo,5887
1093
+ cirq/transformers/eject_z_test.py,sha256=jrWu_7t6PKj3v91NZys1qd0C1DF-87cCzb2Cd2hJVZQ,13314
1094
+ cirq/transformers/expand_composite.py,sha256=apOyL8Vw0IWQoaT5CGW_i8TKm0BH1r_P_M4BMcUjo40,2445
1095
+ cirq/transformers/expand_composite_test.py,sha256=YQyNJcaCDYuc7qaRzSYGfydrYd4QtX1BXGIc-rx27K8,8782
1082
1096
  cirq/transformers/insertion_sort.py,sha256=LtuLQmoA1uWyraPqQ7_QZdkf_vAk75V5HIHvnk4GIZo,2613
1083
1097
  cirq/transformers/insertion_sort_test.py,sha256=E4unAfvPrTE73zI7OnZ8vWq5BUXYpPYjUw2zuq1a_vw,1231
1084
- cirq/transformers/measurement_transformers.py,sha256=JXB-hpCmLD4oVA4Y8hAFL4khowPVlwKsmuDVlgLC_4o,19496
1085
- cirq/transformers/measurement_transformers_test.py,sha256=mJKYFqqMwZnD8KXVM1tmF2kcIZXkkZKlfOU9XbGxYpQ,29019
1086
- cirq/transformers/merge_k_qubit_gates.py,sha256=v9vY3f52S9QR7D_Om4APSZ65rwJH6Z7g6Gf3pD_9H3I,4380
1087
- cirq/transformers/merge_k_qubit_gates_test.py,sha256=523FmfCC7mGX_zecGaQ2tgdqBvMGiMinwJMIfKBgG8E,14016
1088
- cirq/transformers/merge_single_qubit_gates.py,sha256=p452ZsVPcxQSBwbjcT1H0OOPinb37DAIHxNjphEwvGk,13671
1089
- cirq/transformers/merge_single_qubit_gates_test.py,sha256=ZIJmpi2rGNSGEu0xY3zRS7gFJbX6-zyGrIsaqGrL5jI,18080
1098
+ cirq/transformers/measurement_transformers.py,sha256=Y9vfggZhrLzJMdqTKvskW8mRzSs_Aqvsuyez_bt4Afo,19523
1099
+ cirq/transformers/measurement_transformers_test.py,sha256=3mqrZsR7xStCEobkxvOP-J6giIyNygk3is94vbOlKfo,29405
1100
+ cirq/transformers/merge_k_qubit_gates.py,sha256=wdx5kJW7Y6RDTdLzN3ls1C5ciNE69WsP-ENezaVJOb4,4407
1101
+ cirq/transformers/merge_k_qubit_gates_test.py,sha256=hyjfM0MY8Yczs0oC886fvBi34Sk4KMkq38IAg_7EzJk,14024
1102
+ cirq/transformers/merge_single_qubit_gates.py,sha256=xEEaDgKTeVxEj3hD2lG9Jq4OjUacP-cj49ODm-avsXk,13825
1103
+ cirq/transformers/merge_single_qubit_gates_test.py,sha256=3d6RoBtoY8itlAWFi7aimlsYtMjVa68YwG57wj3VHRg,18214
1090
1104
  cirq/transformers/noise_adding.py,sha256=UePj56mCvhg6Vp5DJfQcjjaIo_UzcrnOCg2eN6YvkQU,4468
1091
- cirq/transformers/noise_adding_test.py,sha256=nHOoKUPBBOkWF6A_JhIO6-G0AuFkLKBCxH7e2BOem9M,2171
1092
- cirq/transformers/optimize_for_target_gateset.py,sha256=8jEOazQmnDsHEXJhdRDzIWVLYuAwy3EIByqpq7_VTVg,7216
1093
- cirq/transformers/optimize_for_target_gateset_test.py,sha256=6xu7bDUf2CifMGFvutXT_CI2Wu_FSeucg6tcXHEeOZw,19574
1105
+ cirq/transformers/noise_adding_test.py,sha256=47fn8TSBE31J1jCSvZUMwK8gE7wnPgBzgXe19-yq8kw,2189
1106
+ cirq/transformers/optimize_for_target_gateset.py,sha256=pkL8zEchkfl9zS6xsK6laVm-GsDoxs-XVjyYSUbKLVc,7243
1107
+ cirq/transformers/optimize_for_target_gateset_test.py,sha256=oUrMaX3fyieUblN0yO8bGFuEYRI3L5mQ5kE9POEhqbk,19727
1094
1108
  cirq/transformers/qubit_management_transformers.py,sha256=uLSwYrJ62REI8WCslClRiKQdNE7mLD48L5bhINHRY34,9431
1095
- cirq/transformers/qubit_management_transformers_test.py,sha256=QjrEx3jC1AG4YGD2VdHW59SRW1icQ-pJc3zAMkJqAvE,14051
1109
+ cirq/transformers/qubit_management_transformers_test.py,sha256=mFMKf5I9OHiYAlghWtkbWKOVfaoSrMvRkIy0ki7EqyA,14201
1096
1110
  cirq/transformers/randomized_measurements.py,sha256=pbftgY2ctVMOoJHPBq96ruW0hkcNustLo6_d_eQvyPc,5725
1097
1111
  cirq/transformers/randomized_measurements_test.py,sha256=ZfD8QW9Iy7NfidA1Iez9DUuT9HuzyEzFpHF1JNffE-I,2817
1098
- cirq/transformers/stratify.py,sha256=vrQjnDHb54Yu3IJz0FO1uLRX2QD1o7wI3UDPeRUsTVo,10453
1112
+ cirq/transformers/stratify.py,sha256=ohaPb9RWY-7ZOHJNY21ufS9K4AD2cxoITxoVSrLvxrA,10480
1099
1113
  cirq/transformers/stratify_test.py,sha256=X4h2KMc82N3G6d_qLIP0HTsrDWerWgEXTH_WBPN8nd0,15257
1100
- cirq/transformers/symbolize.py,sha256=5gVjtxJ5C0EpxSlGMTsU6VNwGfJfFosuPNgZOofQ1Wo,3992
1114
+ cirq/transformers/symbolize.py,sha256=o60IpySlJwkq71wntIT4zq1oatwvnABQtSh3si8jnZU,4019
1101
1115
  cirq/transformers/symbolize_test.py,sha256=IF92t0r_mhC48tmCCVJqykXD6ms166n6XfbcSRTrJbY,2243
1102
1116
  cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdrqo5xJcqEWgwPHUfY0VaHk6lxI,3825
1103
1117
  cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
1104
- cirq/transformers/tag_transformers.py,sha256=xGTEe9_H857Zd-GJ_g1tlCz_zH3kWKGBq38Zzoi1klU,3510
1118
+ cirq/transformers/tag_transformers.py,sha256=V-ox9ot6bI6J2NAW7YVhrl4QFT2pxYAA2etam1I6O3A,3537
1105
1119
  cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zKDCZ_Gwtnykkt4,3439
1106
- cirq/transformers/transformer_api.py,sha256=woyAJu8NIbo7IP9jgIZNSOVIIj0x4wpFyzpYlto1wCg,16794
1120
+ cirq/transformers/transformer_api.py,sha256=0XxIk8vg7AlCG8Oyeqpehh9-dGSG8CqxVRR1Sg_EleI,16821
1107
1121
  cirq/transformers/transformer_api_test.py,sha256=vz_zTDPJIfjfqORGKCxeAs3U1F3X2dFNbe50o79uY-4,13273
1108
- cirq/transformers/transformer_primitives.py,sha256=U7eN9UQ3YpW6D8UPJTHxsSO4ERpZxRxt14rqbMTk71Q,36521
1109
- cirq/transformers/transformer_primitives_test.py,sha256=QAayPS74Ro4TTol-IOPnd7S49DKhvXYmWci0nOsk05A,41712
1122
+ cirq/transformers/transformer_primitives.py,sha256=AE9ZdwwPIAiwV7P64-o4otvCNov7KQ2pSQqSte86lUo,40859
1123
+ cirq/transformers/transformer_primitives_test.py,sha256=EfN8jgye-ahE5-XnKdbsC17BLbvSmEJd0hQvCm7VqmA,51654
1110
1124
  cirq/transformers/analytical_decompositions/__init__.py,sha256=Rw7X6hPh14k-cDTcdWI7fQu8v5oU9d1vHuwulUBv-8o,3694
1111
- cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sH7nesFWgYOWEl0UCUAmx6zsFQG0ibeQZpq7Imx38MY,6743
1112
- cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=Svuj7abPvWyEK1W4_6M17hah-xp4Y0E_VICvGyvHeig,7138
1113
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=mZ5ojjxpSkQRhlRmTg0waBXAkCj7hWeEEYQRkCxjzEs,8701
1114
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=E_6BPxf8mTt5C7kCVvFLvgtfsFoDSwjAAH_-KVbxhYo,5086
1115
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=jFWTFjCQ76cDbtyWaYk3RGPFv2oZLnwSVyanUXClu7A,9115
1116
- cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=6ZDfSTL7aWSXXfM5DToeX8VxMalWirrCGKKg7QKBGFc,5591
1125
+ cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sX0FBuWTptCs5HykNMJy64nuuqXmrXkPHxSFnhShH2I,6808
1126
+ cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=DPVqB0rlDsA0BZJOin5QTkVSEfNTVNuf8seGCp49ttg,7178
1127
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=TF5New-qCyj1WmXqeGy4afVoSp16GpaY1WvApsy_DOg,8765
1128
+ cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=fvThApgVxTerVPURzLMPDzaRGIaUYvocFUGXE5o2ls8,5134
1129
+ cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=0rjLQL5tfL-1JcU0sbYgaEUPEskvGznMpEMO7T9MIXU,9154
1130
+ cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=Ma9jpBJ-TBtWRiGm_XFeidi3iP6Z-5oEhSt8m-0qcuI,5701
1117
1131
  cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=7GKdVnN5jvpjABudB0zE1kUn0BPZmuvRZcM2yLMUoWs,4540
1118
1132
  cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=yWHkXXErOxLmnp5t65WUsY9e9iN6L950MZRw5OY3QW0,2172
1119
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=EIrK1PbHRMMhT5wei6rYk8diPEaqEZ0B-9M1chhCfCo,15450
1120
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Bk94HEm9a-cywM_Q2TBF6eUYkSJB1GWwJ5QO1J-rMoA,9006
1133
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=rlsU31Qg3rEUD1eJwaCE1Deb8JNYJGCWmWleCDFZTKw,15498
1134
+ cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Unbrv-bIFKSneH_Lr40iZvdxj8MSBeo_6aQns7KbThw,9030
1121
1135
  cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=6kaQfcXY7je42o-pVprSwgPXCDJXraDXQ9mHyR_BaBk,8428
1122
- cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=oh96QXddCm1v8CrYA5mEnnx_ENXwZi89W6paVZU273I,12344
1136
+ cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=n3BeROUBz7EetUnpvkrDmUcep1LJJFQBGgI3wJlOv3o,12662
1123
1137
  cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=CRZylmI8nA_aq6vXj0WmMce8PIe8OFCjq4_bqYfkenk,2464
1124
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=0nHp7b_Uz-00eod1U6c8Lcx78zNes3hABWnPR_NuMo4,2554
1125
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=6IChilA5NB4X00MYumvbRUo757cLaIslXmtirJk7TxU,9252
1138
+ cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=C6kHrWxsR_u9BhIhMBJmLBSH7o4eH8Q-y5r5k5vWM6w,2562
1139
+ cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=8K6Wm076H8M4acD5l75cf6X28k9QcByr4yqR6NpPhx4,9261
1126
1140
  cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=a21HU4BE82AG2UJU4hUVqymUU7Lw4CLw4-NChX4OpLI,6808
1127
1141
  cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=2bIpZOHBHxH2mdbJfDpo6nQgpitOI0ZmoH_5l_nA1nU,6167
1128
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=c-vFBZnybd-Ez4rcs13THGGthzEZ0qw9Iw9sAKbE6yc,4494
1129
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=bBA8RP-lzv8fKRiHT6M5NEBbl0l_ml5carekhGD5gnU,11705
1130
- cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=eDpkbJqVnSLuqXNJkU1BsaUYSIFRWrUXgQO35xrQHXE,11074
1131
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=8tYGV41gQBRzJSNUB3bsTMI8vil0TNE4TgqWlEw8BhE,9656
1142
+ cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=ZzIekSfnTtKMuZ-2oHgKrBEhqLVZnBX3CqBjgXVwVyk,4620
1143
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=0Fkc7MJwWbP7USja44OClhwllKTw9wkHNtlsMCMkXgM,11761
1144
+ cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=hwTUAcSEegRfe1U3P-ETDjgQvbyz2a5nGOGT7t81adE,11098
1145
+ cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=LkUSvzRvrNYFJEaGZBdtwFB3UYMR2QJykEwF4Z-SjmY,9683
1132
1146
  cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=bX8ap8VskN-gKxn3F4A8_vhgWO0AErOpP1QVVEtBjmY,7073
1133
- cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=dP9umZJBgNJ8FbDFFZVgMSyO-NjWJqXmoWyQuTo--0g,3751
1134
- cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=Cj_GZvJykt5NfNuB8vEY30DE2tU3nJtnUztAArgnfE4,4204
1135
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=s08m1PJODNUNzNNkn_zu2qasRSWmXJAq8Tb9cHKk-yU,25348
1136
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WfPQA_wTpRknovNenxC1LPAt9cVHqwdRhUhPZ8sLNr0,20655
1137
- cirq/transformers/gauge_compiling/__init__.py,sha256=kgsBfsjwCjHMcwZd2wpzXFWPT9ZK-7PjzhEMV0q0pao,1557
1147
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=aQnlBtuei8mvDAukt5PanLQsVOL5I1qjbp4MYkjghog,3778
1148
+ cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=z1fE3ESWLKDWh-Tj_L52gNqSXTbmKfS4fhQYwXKLGug,4220
1149
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=9PJSToq3Yz6mLAXmCqFn2EsdURCNz-lGpM1E5RPT87E,25375
1150
+ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WkP5lHXjio-UZpNYTm8Dp_kJbDHS5OvhjLDerGC7wZ8,21127
1151
+ cirq/transformers/gauge_compiling/__init__.py,sha256=AoDneer0nUDmvlK4SYaWrcSAOZyJr_EhgSe7E2WN8hg,1949
1138
1152
  cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=EoM_TKZt8mJwYFQAfv3rviitXWvGT8I5N36droPWPCE,5576
1139
1153
  cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=dPV2vqsyC-eUi_jmwEk6dhOKHnQLJ_A01_Emxw2j8QQ,1427
1140
1154
  cirq/transformers/gauge_compiling/cz_gauge.py,sha256=dtcC49-qIvH_hRaQpQLBvGu-3323r4cwWpFImBnDebE,2586
1141
1155
  cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=MQURH_tIIPxHu7CRWWEdDksHYr9GzGZH7RqnjZdc994,889
1142
- cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bXqAEVBXHplnxRMwNA0GrbpHsVLoY-zV0zpeP3VNjJY,18834
1143
- cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=JFG7aCe-PxPGZDPCAx82ILu6PX_laFvCDlaabwvL0Kc,5272
1144
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=NUbcz-tGS58QPohpsmMx0RbB4d79GMSoyVxdL3CPiZc,5060
1156
+ cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=4OTJ-PHSkHzbT8aNKMt9lfxWchopo9m40CoE5fDBTA4,18857
1157
+ cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=EAT_VSVHCTf_vZLUxMJn_OED4eIAu_1Kx5Pe1HqRYzM,5385
1158
+ cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=YvtupZt-KWHpIJaNyYOwHw-DJb0H1E5sguUcjjuiL9U,5084
1145
1159
  cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=qPcs2BWU-1gOEz0NCLixBLO9I1PVIOLShB7wkprcQZY,1896
1160
+ cirq/transformers/gauge_compiling/idle_moments_gauge.py,sha256=-VK91rDVKkla1uf7T6AzA1G9Y9Kwjrklh5PrEQdAxrQ,8518
1161
+ cirq/transformers/gauge_compiling/idle_moments_gauge_test.py,sha256=OSb0840o0M8Qpde_Dp3-sRCGrJCO4rBgArDLnnT8D-g,6903
1146
1162
  cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=CfW3hgO6AgUB7D6tC8J2XZQw2Ge77LT44BygCzMW4Xc,3536
1147
1163
  cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=V6g-jyGujMKEzGtOi_OhMxX5oTznGXJi9tCNKI9Qrb8,901
1164
+ cirq/transformers/gauge_compiling/multi_moment_cphase_gauge.py,sha256=2KQbxm4r6eKNNRUifkoi-ODdeDICrwbbKepLX3Ht8M4,10384
1165
+ cirq/transformers/gauge_compiling/multi_moment_cphase_gauge_test.py,sha256=tLzTtbRF4sbupIjySBbkLPx-cVrJv-CIr9ZBjXDeiIA,11657
1166
+ cirq/transformers/gauge_compiling/multi_moment_gauge_compiling.py,sha256=iporhK2jhu6XtaQLPvoma0WQoFBrDc2l46BlsoU5y54,5634
1148
1167
  cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=yhrF4pa1u0-iwYay47_2bZ4xfU323TOdlyazl0U9v4c,1122
1149
1168
  cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJO8BoP4uA0SqSLXS6bqn3T69SwcBHCQHBwWAkI8YTk,1328
1150
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=qnVmbXqehhDucg6Cm3VZm5lHez-uttayPSHqL4JHPEA,2557
1169
+ cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=jHIvV5aKSoh36au8HGKZ3L4U71aI-fZnFXQVZqxlL4M,2584
1151
1170
  cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=WXZjPf3SAxZHwWbORnsNPeBu1jHeqBqRkrTPCZiNnAY,1033
1152
1171
  cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=kOFHb5GydzeMNwSvDLFuEjc71jHC1HBWxaWinPlrArs,3163
1153
1172
  cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=2KJ14je7QNISHQE8GAK0Oy0HisDFiGEYHxCGc0LhRRg,918
1154
1173
  cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
1155
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=awhnFQiCvAIX73-_u44U7I8_m-xk9TG5KUjbDH_B8K4,10797
1156
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=WJ2P6QfwY2l6RYUfMeWbn096MHDiTYXQAV6-0ThR0AQ,1571
1157
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=od4YwSC0dVIMPPdNY3kv9dW5uKbaQ3QpKjD_8aP-am0,20089
1174
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=tGIJmKI3EYNsbnkFrOh-CSvWLrdu2nlYfYDNDMbSeHA,10806
1175
+ cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=F0aPEAQguxxArg_-gc7nRxDClFBCo1VKCUcwjE7uqvM,1627
1176
+ cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=ufnd9EapHQ-AdV6mkz8rCuNM445Kmszjz4U57f0FmWs,20128
1158
1177
  cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=bvgDe-3KhwTLSokL7X93IZgneGNLrgzSgNulMhsoARs,3922
1159
1178
  cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
1160
1179
  cirq/transformers/routing/initial_mapper.py,sha256=N3_n8zhPP0TFQkPr46j-1zZw1R9RcMCUZF0-NfZWOfo,3050
1161
1180
  cirq/transformers/routing/initial_mapper_test.py,sha256=N3RrubB1suUbD8SuYoZtMASAQPyb5a4NJqJmhJZpV04,1344
1162
1181
  cirq/transformers/routing/line_initial_mapper.py,sha256=Z38g6BUBMGyRRH0l9nh3m8XtcgYqxarbRGWMhAOiB8I,9431
1163
1182
  cirq/transformers/routing/line_initial_mapper_test.py,sha256=Qu51LOZjv0KQHcwtEax-4dF78g9g1pl0COpF3xFHE6w,7568
1164
- cirq/transformers/routing/mapping_manager.py,sha256=w-dSQOs_IpUMU8HPyFQlJ2scER4DnX03llp44504Rq4,8621
1183
+ cirq/transformers/routing/mapping_manager.py,sha256=l3RsFVw-y-VFkFI_ESUL-ckh8mRlymn69Z9wS6QI1FA,8648
1165
1184
  cirq/transformers/routing/mapping_manager_test.py,sha256=dSqouwT77Pa9cj3osKCv478pOrJzB-QP40sozNz-j3k,5957
1166
- cirq/transformers/routing/route_circuit_cqc.py,sha256=2nx56mQUQFRv6xHd97sfb6qePiQ6yI9_y7d_tOAk6pg,21960
1185
+ cirq/transformers/routing/route_circuit_cqc.py,sha256=YS9jnOu4ss8DCSr1u74HSqBdPQkLmw8y6BBc7jnvYF4,21987
1167
1186
  cirq/transformers/routing/route_circuit_cqc_test.py,sha256=Neg9A29Re-I4A4Tu0VNLKkl1_225M7wFHRx-TpLLzco,10140
1168
1187
  cirq/transformers/routing/visualize_routed_circuit.py,sha256=VgHN3zQ2cfEd69i5i85Tt4_HHpdv1yRyJbQ9I67-00Y,2907
1169
1188
  cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=Cv00tV0C23M-3JxOY-hvFeLPASc6hR-XkYxxzJ3nhwQ,4193
1170
1189
  cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
1171
- cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=EwotTSGzomfLBNze9DlddRG56q0SjUSK9_SiF9gs6yw,14246
1190
+ cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=Aw3em7OgEWtMi64UqYi4NMkWjlvc61eM4IghwU5frf0,14273
1172
1191
  cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=hhswvGSsR5NhRzER96VHjq-P5fuv1VIrDnjAT-c0LBE,9606
1173
- cirq/transformers/target_gatesets/cz_gateset.py,sha256=J-GlZ1yuVCz3jcSs7h9FGSj26fDqk9mQMLU3f5f4j3k,5033
1174
- cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=xdcvqpaHyU2Z_-yqIwEGy7KMj-p0C-aL7seHWLKOoh4,11432
1175
- cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=ToMXP1uCSb1PulzOWEyujXD-HEHdHlviLoDETiTV2K8,6273
1192
+ cirq/transformers/target_gatesets/cz_gateset.py,sha256=K-1oasv_8D73a05NfuHsyyRHjhttyGOTggUm1aCCohk,5060
1193
+ cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=xgTgcq8d0fwU8FvGf9xMlO_JbjX7BsUNyRypAfLA-Qk,11441
1194
+ cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=LcWGXA3PX_hDvNWLigX1f7VcwKKfAq0L1XzkUZRCl88,6300
1176
1195
  cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=lH7xYm_qkgi_MegqvvxNMQvWnAReUskCXaKpCsIQppY,14580
1177
1196
  cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
1178
- cirq/value/abc_alt.py,sha256=ZNHskvHpu3KOhMpIo0C5MBEbEpWFQ2WPiNdstppwZ7E,6026
1197
+ cirq/value/abc_alt.py,sha256=-HF-lup7xXMKGV-BxTi9Tpeyjy4RsERJFKMl18O_-7U,6053
1179
1198
  cirq/value/abc_alt_test.py,sha256=3ryHzM0B2uxFw3ZP_BIj0FWg4gXKNPLfeQOJMPVL1FQ,9033
1180
1199
  cirq/value/angle.py,sha256=6YP1RWv8IrruvgxvqlCYxcabYRE8bXrbV_Jx66Jfuvs,3285
1181
1200
  cirq/value/angle_test.py,sha256=jKLd1hkY-Tb22krD-WkJjfqFy9EJIIZCAL57__FgW_c,3608
1182
- cirq/value/classical_data.py,sha256=SIxyyJyM0BavQxJJVnRN_ktFvv5QFEPPEewsr0muLVk,11487
1201
+ cirq/value/classical_data.py,sha256=u4613WYDMjfDylFYAedrBKo3iPtJs_Jey0FssAu9iiw,11514
1183
1202
  cirq/value/classical_data_test.py,sha256=q1QMT17E-X9kcaPw1oQqx3Hwnq3hyht24HaK3z7Udpo,5332
1184
- cirq/value/condition.py,sha256=lJJcFiqG-r68DhhS01DS6HhQw0pDwbNq71bvH1Famec,11916
1203
+ cirq/value/condition.py,sha256=V4eap0T1B38fPl5zT5vEvHK5vRB5CrSCeaEbBHXD2LU,11943
1185
1204
  cirq/value/condition_test.py,sha256=oEdim5nOYYY8UPU91H2xhb9MH8EC2WbMXTQ_DruHVO0,12949
1186
- cirq/value/digits.py,sha256=-3HTHqEQqy5evUz8aLE6ruw0NV3ncuPrc5asRMQ-sQ4,6063
1205
+ cirq/value/digits.py,sha256=CrraW8U68Bj5PhA9uLa6AdCJg9XbaEID9iUIU2Ym4bk,6357
1187
1206
  cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,3848
1188
- cirq/value/duration.py,sha256=9zhnMe7EBicqbRp267GkPz97q1y1DcnPDXHqdEjJpts,10389
1207
+ cirq/value/duration.py,sha256=YA2Gsd7dblaKx6eSrRZRkWg726WWGRJFsY-b_7Ujsj8,10413
1189
1208
  cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
1190
- cirq/value/linear_dict.py,sha256=-wtYnPpg5X8MbaJq8xbkmDw48nTSItuhjj7Zdvwxp_A,12123
1209
+ cirq/value/linear_dict.py,sha256=bDy9K0x8X45IeB5X-b1CQAqQQGCP7uRm28zHu1bg4Xo,12110
1191
1210
  cirq/value/linear_dict_test.py,sha256=eZatVgAMonquI2qys4WJx6ddUc2KDea440qHIOxlTfQ,20061
1192
- cirq/value/measurement_key.py,sha256=tgKhfa6UUPMP3azlF_yuARqg31T-lAAMhoTK6OtUEeQ,5175
1211
+ cirq/value/measurement_key.py,sha256=jMibWhivnTX_oUhyGyto87VHrsF-D2mc0D0Ep5h8bMA,5202
1193
1212
  cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
1194
- cirq/value/periodic_value.py,sha256=QAIEt2Ls9ZTumQg913anBjehBidrrk6ULkQNSk4Qu-s,3936
1213
+ cirq/value/periodic_value.py,sha256=qh0n-NlNGv6SDzf6ftNwxyvSyjtDl28vntWFq0YYQOs,3947
1195
1214
  cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLlOYUk,4572
1196
1215
  cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
1197
1216
  cirq/value/probability_test.py,sha256=vFpPiofJY-ddsfpDrtgP-AiXFCDtKVXhjkv_4Vl1-Qg,984
1198
- cirq/value/product_state.py,sha256=yrYlvVoINj4N_fj_9nxugm1qsTxOzIh5j_pJGsyJ8lc,8997
1217
+ cirq/value/product_state.py,sha256=NSNLTFNvs2mYNRw7U8BGpQT6tj1G--nhBpbWk9PElfs,9024
1199
1218
  cirq/value/product_state_test.py,sha256=CGRb5pKl5bVB9yWeil12qweQ735wYP64jQGoC-j3tto,5978
1200
1219
  cirq/value/random_state.py,sha256=Kv3dcVif6ltJSI0RT9kSI1XeofW16jdtmo5T3pD4m9w,2099
1201
1220
  cirq/value/random_state_test.py,sha256=AfzX82WsyyuLYnoakNOTj2PPL1fYRH5ZaH84uO-6Cvg,1394
1202
1221
  cirq/value/timestamp.py,sha256=pC-hwfLL6U1_5937AMw6YtGgEBq71prNQ6jOjh8Kbls,3633
1203
1222
  cirq/value/timestamp_test.py,sha256=L-MmYEuoTDdyyX6MJ6-wBqxHcSMabQHogX_DhOm0SAg,4214
1204
1223
  cirq/value/type_alias.py,sha256=64tVzxOqzwtKTwuqXan-PeTyjy7i6J928FCg5NtMcw4,1121
1205
- cirq/value/value_equality_attr.py,sha256=JcjTVy_TQ56SXa7n_qAWJkUbICC3i6vWcM5K3g_OwNQ,10461
1224
+ cirq/value/value_equality_attr.py,sha256=Oo3Fyw4-LKMgOwbc5g9Bxtj2ZVkgHWarPDaj8nfx0hc,10488
1206
1225
  cirq/value/value_equality_attr_test.py,sha256=ZWsjAlJd9M_-HONqTXcdjpIaFCilLcelyodZl1fIu2Y,6557
1207
1226
  cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
1208
- cirq/vis/density_matrix.py,sha256=7Mydxi7r1at6W0t7lH99Gq__deyCQ9RxHf-HveKLTZw,4820
1227
+ cirq/vis/density_matrix.py,sha256=IefN6zgEyqEcCXjHhv6tM5JgRQRed0mT2C8je6Vl584,4821
1209
1228
  cirq/vis/density_matrix_test.py,sha256=yoOQd0XqCECfmM6ycsBEF2hEyM5NTeNNAoVYEhRj8pk,7082
1210
- cirq/vis/heatmap.py,sha256=nKb91MmL5HxMQd95u0v3pf0zrV2dMqdUGCMDxOyoOO4,17620
1229
+ cirq/vis/heatmap.py,sha256=j8g5keJkCu82zWSOUYAPf4BeGnVMFP-p153cn7jiV8U,17647
1211
1230
  cirq/vis/heatmap_test.py,sha256=5Z6EymBugK_tygqKb_qHy7rBI1LfIG67tzPtGUWSUB4,20587
1212
- cirq/vis/histogram.py,sha256=EYuCshhIwXJPaoL5PvWG58bI2gK5mhbTyiWpDHVjq_I,5109
1231
+ cirq/vis/histogram.py,sha256=Wp19uDYmvN8JJ92cfeaqwDq6uq05M8GMWL6LuBL54t0,5136
1213
1232
  cirq/vis/histogram_test.py,sha256=G2JRYXfVwrw7TVaaejILqOowxRn_2oF456dYNH9pzeA,1956
1214
- cirq/vis/state_histogram.py,sha256=WOFxYGbI9Pg7YGb_oFRBX4loTaAsw6viFBTRHFIPv8M,4297
1233
+ cirq/vis/state_histogram.py,sha256=4W0rnd-_aMlCBrM8ZXUinunmYBxo2HE_0QllFUt0kuA,4324
1215
1234
  cirq/vis/state_histogram_test.py,sha256=zHQeSPGVViN5s1QHGsClm0zlIXdt_oyIIDQaAItDIDk,3837
1216
1235
  cirq/vis/vis_utils.py,sha256=MQDCuV-ZfHrtpSRF_-iIRuNvPR9Xv5umRpixPyZ5CvA,1274
1217
1236
  cirq/vis/vis_utils_test.py,sha256=geSavo2Ip585fjanPK3T8AUuvhUwNclLBdl_W_OOycc,984
1218
1237
  cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
1219
- cirq/work/collector.py,sha256=jeDM1imzWS57RUdErsBcndoCTd0I9VAomSZrcEgi_xo,7721
1238
+ cirq/work/collector.py,sha256=1HzbulwHmkk4a5rk6zGoZHC41zx1xgXGHqiKkmVG2qQ,7748
1220
1239
  cirq/work/collector_test.py,sha256=2dAOkKTn0tazxb_gyhKPJghXpj47Bm2SuCCpf_EW7kI,5004
1221
- cirq/work/observable_grouping.py,sha256=fYK48ml5U2B9AXXBFvql3YkIU2xSzBF-Bq5tWMVTYbM,3473
1240
+ cirq/work/observable_grouping.py,sha256=Dh96qFEgii7cewjm7qBtzTzpUSOYHEe2vDbuXVc9U-4,3500
1222
1241
  cirq/work/observable_grouping_test.py,sha256=c_axFGnGfCAqk69oqSgottsT_u_Versa4A_oZrgasMk,5875
1223
- cirq/work/observable_measurement.py,sha256=5SC_Dtkb7eZEKS6hA7BY41TX41-racYWyW8C_my_uYA,28211
1224
- cirq/work/observable_measurement_data.py,sha256=IdxqP9anGxLWDugJMNZUO7stKkcLQKJnCdYuSaBVP1g,21135
1242
+ cirq/work/observable_measurement.py,sha256=X2zHuAdenYmJoXhjVTP8Qao-IKhzY8fZ4JAWVIcgpqU,28238
1243
+ cirq/work/observable_measurement_data.py,sha256=PEL1IlgPlxKOUBa9WpBvlAo3f2NDq9obcSDUkW0MKPQ,21162
1225
1244
  cirq/work/observable_measurement_data_test.py,sha256=EDmmrcQeN-QtWdIxYqjpYyn_443zF_2peVV6DwU49zA,19731
1226
- cirq/work/observable_measurement_test.py,sha256=-NIQyQ9izFw09BfieMM59FBxLvtgwennuJSx9iwNTjw,21071
1227
- cirq/work/observable_readout_calibration.py,sha256=hunvihB8Cf9s9cyaWArEx-CuVQOO9K9Tm7mueAft4z0,1908
1228
- cirq/work/observable_readout_calibration_test.py,sha256=5XpRIP3VQ1EGtbvnOetElWHIDpKv6d086eyHtAxDeh0,1849
1229
- cirq/work/observable_settings.py,sha256=KWnoOnhu04tn_tTe9XUlcKVu7bfWy5BlVGgYc-UZBz8,6650
1245
+ cirq/work/observable_measurement_test.py,sha256=2gXCmhUQ9fzfDZgq-9PHqfkbhDlE9_fQe2t2Og-3hh8,21080
1246
+ cirq/work/observable_readout_calibration.py,sha256=ZNuBQfZ3iAnlkqish_77iBOmaW7verEPQnUOnQQCBRE,1935
1247
+ cirq/work/observable_readout_calibration_test.py,sha256=_CoLxkfnR5OF-tqRHVCicAT65V5uOK2XmhLnnAplwj0,1858
1248
+ cirq/work/observable_settings.py,sha256=WiV2e-uGO1Wv6KHSfNzuou5iXKMSo-FBP9Jte7jTYKE,6677
1230
1249
  cirq/work/observable_settings_test.py,sha256=TE2rIdeI7UjW9Oe2jAT2SAQ2A90GVZquOUa1ORcvObM,4373
1231
1250
  cirq/work/pauli_sum_collector.py,sha256=ZQgXylJUk31XUatimtTDSPVdLw1myX4ggcnENKnQ7ao,4218
1232
1251
  cirq/work/pauli_sum_collector_test.py,sha256=3fb_KS5bZ7AZTCl3y-SyN-jysqnb35o1cHPyQq_Ol_s,2443
1233
- cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
1234
- cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
1252
+ cirq/work/sampler.py,sha256=tuk0Gzf-O6VX3KPQTHuFmTPVN0QhhMfL1uofwu16v3c,19068
1253
+ cirq/work/sampler_test.py,sha256=aVs3i0BV815H-ZdAT6RLOose1bFVpz0kU6IwpYVNU50,13542
1235
1254
  cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
1236
1255
  cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
1237
- cirq_core-1.7.0.dev20250825174419.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
- cirq_core-1.7.0.dev20250825174419.dist-info/METADATA,sha256=HDtfPmc5sbaI5AMAN1fSFVDxaZynP1vayAB05Ci0CfE,4819
1239
- cirq_core-1.7.0.dev20250825174419.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
- cirq_core-1.7.0.dev20250825174419.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
- cirq_core-1.7.0.dev20250825174419.dist-info/RECORD,,
1256
+ cirq_core-1.7.0.dev20251203004401.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1257
+ cirq_core-1.7.0.dev20251203004401.dist-info/METADATA,sha256=QdgoL7rGcB1HrN-1wJ0p1wu-4dh0mkxFlV7tCo5JrtE,4757
1258
+ cirq_core-1.7.0.dev20251203004401.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1259
+ cirq_core-1.7.0.dev20251203004401.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1260
+ cirq_core-1.7.0.dev20251203004401.dist-info/RECORD,,