cirq-core 1.6.0.dev20250519175318__py3-none-any.whl → 1.6.0.dev20250519190234__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cirq-core might be problematic. Click here for more details.
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/devices/grid_qubit_test.py +3 -0
- cirq/devices/insertion_noise_model_test.py +2 -0
- cirq/devices/line_qubit_test.py +2 -0
- cirq/devices/named_topologies_test.py +3 -0
- cirq/devices/noise_properties_test.py +2 -0
- cirq/devices/noise_utils_test.py +2 -0
- cirq/devices/superconducting_qubits_noise_properties_test.py +2 -0
- cirq/devices/thermal_noise_model_test.py +2 -0
- cirq/devices/unconstrained_device_test.py +2 -0
- cirq/experiments/benchmarking/parallel_xeb_test.py +2 -0
- cirq/experiments/fidelity_estimation_test.py +3 -0
- cirq/experiments/n_qubit_tomography_test.py +3 -0
- cirq/experiments/purity_estimation.py +2 -0
- cirq/experiments/purity_estimation_test.py +2 -0
- cirq/experiments/qubit_characterizations_test.py +2 -0
- cirq/experiments/readout_confusion_matrix_test.py +2 -0
- cirq/experiments/t1_decay_experiment_test.py +2 -0
- cirq/experiments/t2_decay_experiment_test.py +2 -0
- cirq/experiments/two_qubit_xeb_test.py +4 -0
- cirq/experiments/xeb_sampling_test.py +3 -0
- cirq/experiments/z_phase_calibration_test.py +2 -0
- cirq/interop/quirk/cells/all_cells.py +7 -2
- cirq/interop/quirk/cells/arithmetic_cells_test.py +3 -0
- cirq/interop/quirk/cells/cell_test.py +3 -0
- cirq/interop/quirk/cells/composite_cell_test.py +2 -0
- cirq/interop/quirk/cells/control_cells_test.py +2 -0
- cirq/interop/quirk/cells/frequency_space_cells_test.py +2 -0
- cirq/interop/quirk/cells/ignored_cells.py +3 -0
- cirq/interop/quirk/cells/ignored_cells_test.py +2 -0
- cirq/interop/quirk/cells/input_cells_test.py +2 -0
- cirq/interop/quirk/cells/input_rotation_cells_test.py +2 -0
- cirq/interop/quirk/cells/measurement_cells_test.py +2 -0
- cirq/interop/quirk/cells/parse.py +2 -0
- cirq/interop/quirk/cells/parse_test.py +2 -0
- cirq/interop/quirk/cells/qubit_permutation_cells_test.py +2 -0
- cirq/interop/quirk/cells/scalar_cells_test.py +2 -0
- cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py +2 -0
- cirq/interop/quirk/cells/swap_cell_test.py +2 -0
- cirq/interop/quirk/cells/testing.py +2 -0
- cirq/interop/quirk/cells/testing_test.py +2 -0
- cirq/interop/quirk/cells/unsupported_cells.py +3 -0
- cirq/interop/quirk/cells/unsupported_cells_test.py +2 -0
- cirq/interop/quirk/url_to_circuit_test.py +3 -0
- cirq/linalg/combinators_test.py +3 -0
- cirq/linalg/decompositions_test.py +2 -0
- cirq/linalg/diagonalize.py +2 -0
- cirq/linalg/diagonalize_test.py +2 -0
- cirq/linalg/operator_spaces_test.py +2 -0
- cirq/linalg/predicates_test.py +2 -0
- cirq/linalg/tolerance_test.py +2 -0
- cirq/linalg/transformations.py +4 -1
- cirq/linalg/transformations_test.py +2 -0
- cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py +2 -0
- cirq/neutral_atoms/neutral_atom_devices.py +2 -0
- cirq/ops/arithmetic_operation_test.py +2 -0
- cirq/ops/boolean_hamiltonian_test.py +3 -0
- cirq/ops/classically_controlled_operation_test.py +2 -0
- cirq/ops/common_channels_test.py +2 -0
- cirq/ops/common_gate_families.py +2 -0
- cirq/ops/common_gate_families_test.py +2 -0
- cirq/ops/common_gates_test.py +2 -0
- cirq/ops/control_values_test.py +2 -0
- cirq/ops/controlled_gate_test.py +4 -2
- cirq/ops/controlled_operation_test.py +4 -2
- cirq/ops/dense_pauli_string_test.py +3 -0
- cirq/ops/diagonal_gate_test.py +2 -0
- cirq/ops/eigen_gate_test.py +2 -0
- cirq/ops/fourier_transform_test.py +2 -0
- cirq/ops/fsim_gate_test.py +2 -0
- cirq/ops/gate_features.py +2 -0
- cirq/ops/gate_features_test.py +2 -0
- cirq/ops/gate_operation_test.py +3 -0
- cirq/ops/gateset_test.py +2 -0
- cirq/ops/global_phase_op_test.py +2 -0
- cirq/ops/greedy_qubit_manager_test.py +2 -0
- cirq/ops/identity_test.py +3 -0
- cirq/ops/kraus_channel_test.py +3 -0
- cirq/ops/linear_combinations_test.py +2 -0
- cirq/ops/matrix_gates_test.py +3 -0
- cirq/ops/measure_util_test.py +2 -0
- cirq/ops/measurement_gate_test.py +2 -0
- cirq/ops/mixed_unitary_channel_test.py +3 -0
- cirq/ops/named_qubit_test.py +2 -0
- cirq/ops/op_tree_test.py +3 -0
- cirq/ops/parallel_gate_test.py +2 -0
- cirq/ops/parity_gates_test.py +2 -0
- cirq/ops/pauli_gates_test.py +2 -0
- cirq/ops/pauli_interaction_gate_test.py +2 -0
- cirq/ops/pauli_measurement_gate_test.py +2 -0
- cirq/ops/pauli_string_phasor_test.py +2 -0
- cirq/ops/pauli_string_raw_types_test.py +2 -0
- cirq/ops/pauli_string_test.py +2 -0
- cirq/ops/pauli_sum_exponential_test.py +2 -0
- cirq/ops/permutation_gate_test.py +2 -0
- cirq/ops/phased_iswap_gate_test.py +2 -0
- cirq/ops/phased_x_gate_test.py +2 -0
- cirq/ops/phased_x_z_gate_test.py +3 -0
- cirq/ops/projector_test.py +3 -0
- cirq/ops/qid_util_test.py +2 -0
- cirq/ops/qubit_manager_test.py +2 -0
- cirq/ops/qubit_order.py +11 -13
- cirq/ops/qubit_order_or_list.py +2 -0
- cirq/ops/qubit_order_test.py +2 -0
- cirq/ops/random_gate_channel_test.py +3 -0
- cirq/ops/state_preparation_channel_test.py +2 -0
- cirq/ops/swap_gates_test.py +2 -0
- cirq/ops/tags.py +4 -0
- cirq/ops/tags_test.py +2 -0
- cirq/ops/three_qubit_gates_test.py +2 -0
- cirq/ops/two_qubit_diagonal_gate_test.py +2 -0
- cirq/ops/uniform_superposition_gate_test.py +2 -0
- cirq/ops/wait_gate_test.py +3 -0
- cirq/protocols/apply_channel_protocol.py +6 -4
- cirq/protocols/apply_channel_protocol_test.py +2 -0
- cirq/protocols/apply_mixture_protocol.py +6 -4
- cirq/protocols/apply_mixture_protocol_test.py +3 -0
- cirq/protocols/apply_unitary_protocol_test.py +2 -0
- cirq/protocols/approximate_equality_protocol.py +2 -0
- cirq/protocols/approximate_equality_protocol_test.py +2 -0
- cirq/protocols/circuit_diagram_info_protocol_test.py +3 -0
- cirq/protocols/commutes_protocol.py +3 -0
- cirq/protocols/commutes_protocol_test.py +2 -0
- cirq/protocols/control_key_protocol_test.py +2 -0
- cirq/protocols/equal_up_to_global_phase_protocol.py +2 -0
- cirq/protocols/equal_up_to_global_phase_protocol_test.py +3 -0
- cirq/protocols/has_stabilizer_effect_protocol.py +2 -0
- cirq/protocols/has_stabilizer_effect_protocol_test.py +2 -0
- cirq/protocols/has_unitary_protocol.py +2 -0
- cirq/protocols/has_unitary_protocol_test.py +2 -0
- cirq/protocols/inverse_protocol_test.py +3 -1
- cirq/protocols/json_serialization.py +3 -0
- cirq/protocols/json_serialization_test.py +2 -0
- cirq/protocols/json_test_data/spec.py +2 -0
- cirq/protocols/kraus_protocol.py +2 -0
- cirq/protocols/kraus_protocol_test.py +2 -0
- cirq/protocols/measurement_key_protocol_test.py +4 -1
- cirq/protocols/mixture_protocol.py +2 -0
- cirq/protocols/mixture_protocol_test.py +2 -0
- cirq/protocols/mul_protocol.py +2 -0
- cirq/protocols/mul_protocol_test.py +2 -0
- cirq/protocols/pauli_expansion_protocol.py +3 -0
- cirq/protocols/pauli_expansion_protocol_test.py +2 -0
- cirq/protocols/phase_protocol.py +2 -0
- cirq/protocols/phase_protocol_test.py +2 -0
- cirq/protocols/pow_protocol_test.py +2 -0
- cirq/protocols/qasm_test.py +3 -0
- cirq/protocols/qid_shape_protocol.py +2 -0
- cirq/protocols/qid_shape_protocol_test.py +2 -0
- cirq/protocols/resolve_parameters_test.py +3 -2
- cirq/protocols/trace_distance_bound.py +2 -0
- cirq/protocols/trace_distance_bound_test.py +2 -0
- cirq/protocols/unitary_protocol.py +2 -0
- cirq/protocols/unitary_protocol_test.py +3 -0
- cirq/qis/channels.py +6 -2
- cirq/qis/channels_test.py +4 -0
- cirq/qis/clifford_tableau_test.py +2 -0
- cirq/qis/entropy.py +2 -0
- cirq/qis/entropy_test.py +2 -0
- cirq/qis/measures_test.py +4 -0
- cirq/qis/noise_utils.py +2 -0
- cirq/qis/noise_utils_test.py +2 -0
- cirq/qis/states_test.py +2 -0
- cirq/sim/classical_simulator_test.py +2 -0
- cirq/sim/clifford/clifford_simulator_test.py +3 -0
- cirq/sim/clifford/clifford_tableau_simulation_state_test.py +2 -0
- cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py +2 -0
- cirq/sim/clifford/stabilizer_sampler_test.py +2 -0
- cirq/sim/clifford/stabilizer_simulation_state_test.py +2 -0
- cirq/sim/clifford/stabilizer_state_ch_form_test.py +2 -0
- cirq/sim/density_matrix_simulation_state_test.py +2 -0
- cirq/sim/density_matrix_simulator_test.py +3 -0
- cirq/sim/density_matrix_utils_test.py +2 -0
- cirq/sim/mux_test.py +3 -0
- cirq/sim/simulation_product_state_test.py +3 -0
- cirq/sim/simulation_state_test.py +2 -0
- cirq/sim/simulation_utils.py +2 -0
- cirq/sim/simulation_utils_test.py +3 -0
- cirq/sim/sparse_simulator_test.py +3 -0
- cirq/sim/state_vector_simulation_state_test.py +2 -0
- cirq/sim/state_vector_simulator_test.py +2 -0
- cirq/sim/state_vector_test.py +3 -0
- cirq/study/flatten_expressions_test.py +2 -0
- cirq/study/resolver_test.py +2 -0
- cirq/study/result_test.py +2 -0
- cirq/study/sweepable.py +5 -3
- cirq/study/sweepable_test.py +3 -0
- cirq/study/sweeps_test.py +3 -0
- cirq/testing/circuit_compare.py +2 -0
- cirq/testing/circuit_compare_test.py +2 -0
- cirq/testing/consistent_act_on.py +9 -3
- cirq/testing/consistent_act_on_test.py +2 -0
- cirq/testing/consistent_channels.py +2 -0
- cirq/testing/consistent_channels_test.py +2 -0
- cirq/testing/consistent_controlled_gate_op.py +2 -0
- cirq/testing/consistent_decomposition.py +2 -0
- cirq/testing/consistent_decomposition_test.py +2 -0
- cirq/testing/consistent_pauli_expansion.py +2 -0
- cirq/testing/consistent_pauli_expansion_test.py +2 -0
- cirq/testing/consistent_phase_by.py +2 -0
- cirq/testing/consistent_phase_by_test.py +2 -0
- {cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/RECORD +207 -207
- {cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/top_level.txt +0 -0
{cirq_core-1.6.0.dev20250519175318.dist-info → cirq_core-1.6.0.dev20250519190234.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=t51ZXkEuomg1SMI871Ws-5pk68DGBsAf2TGNjVXtZ8I,34755
|
|
|
4
4
|
cirq/_doc.py,sha256=GlE8YPG5aEuA_TNMQMvqS6Pd8654akVJavUnNngtWUg,2915
|
|
5
5
|
cirq/_import.py,sha256=bXzIRteBSrBl6D5KBIMP0uE8T-jjwMAgoF8yTC03tSc,8457
|
|
6
6
|
cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=CPDAGf4sSExwkKezeCgGhcE1PmmxkFNS6B7P916q8Aw,1206
|
|
8
|
+
cirq/_version_test.py,sha256=G8Q3eIweDxQzfp5AF0jUZchApt7hzYwf5In-g93oUGg,155
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -161,281 +161,281 @@ cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1
|
|
|
161
161
|
cirq/devices/grid_device_metadata.py,sha256=V2OWWw0BK6NsfhdoViA9DRnPf92zWa0wUJBRcbhzFeM,8639
|
|
162
162
|
cirq/devices/grid_device_metadata_test.py,sha256=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
|
|
163
163
|
cirq/devices/grid_qubit.py,sha256=51BohF1G-CnKFgLy792zfAE_bwH1cRwWK4jnAvevtZk,18819
|
|
164
|
-
cirq/devices/grid_qubit_test.py,sha256=
|
|
164
|
+
cirq/devices/grid_qubit_test.py,sha256=aRSoRL-L-LaXCgBOzaMvVDwdP0kGN0Oc1yIYaRlNYk0,15048
|
|
165
165
|
cirq/devices/insertion_noise_model.py,sha256=9MIkrRcnXoCBOoVflHHex6Z_4TxVkwj02UPd-Bjjr18,3626
|
|
166
|
-
cirq/devices/insertion_noise_model_test.py,sha256=
|
|
166
|
+
cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
|
|
167
167
|
cirq/devices/line_qubit.py,sha256=nZOtTehJq2JuKP4evGQkR-ktMWNizkDPtUQhU1A4u-s,11829
|
|
168
|
-
cirq/devices/line_qubit_test.py,sha256=
|
|
168
|
+
cirq/devices/line_qubit_test.py,sha256=ZJjt3iWXxmFqpBypDvFKQhTFb_lvVp8aokbFG5iNfDc,10323
|
|
169
169
|
cirq/devices/named_topologies.py,sha256=GbyG54LM_-hTprfT7085z32eoLrFe_stC2mhSlC1Zuo,15818
|
|
170
|
-
cirq/devices/named_topologies_test.py,sha256=
|
|
170
|
+
cirq/devices/named_topologies_test.py,sha256=opABh1NgkfubHF4sCCTAxmFHLZXVZIgdKrZLQefd-AE,4854
|
|
171
171
|
cirq/devices/noise_model.py,sha256=lwyF5OkplbEbIBj5_dOY21RqIfTC_SIAQt9oL26g6N0,11245
|
|
172
172
|
cirq/devices/noise_model_test.py,sha256=QvgpP__Eecojm1DkCbRgDyu7xrbyPbvg7POS4xFktK4,9276
|
|
173
173
|
cirq/devices/noise_properties.py,sha256=0VzM0_rmV1JumKQccj9_GEGPE0jNkuwIqXEaZfmEjcU,5111
|
|
174
|
-
cirq/devices/noise_properties_test.py,sha256=
|
|
174
|
+
cirq/devices/noise_properties_test.py,sha256=mThe9jXkw_TDWSnBozTBTy6u5GtGiwQnoYpUbWWczD0,2385
|
|
175
175
|
cirq/devices/noise_utils.py,sha256=N6zxBAmhbK3UGiu9FTQH_3GFB_0668B3x5NyAUKlIvI,7187
|
|
176
|
-
cirq/devices/noise_utils_test.py,sha256=
|
|
176
|
+
cirq/devices/noise_utils_test.py,sha256=Pn_BO0c5Ky9FJk384FXh_BkXXYe1V7GWIBgxsaoB9as,2099
|
|
177
177
|
cirq/devices/superconducting_qubits_noise_properties.py,sha256=3FWn3Kwgkq3qVyMffHNdmFdqUtv5JwNr7dzfFI7srNY,8164
|
|
178
|
-
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=
|
|
178
|
+
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=9EJqa69H6aFexNqadH-bPTqtIF2kr53PmwJAG-XtnKE,12243
|
|
179
179
|
cirq/devices/thermal_noise_model.py,sha256=Moob5RD0b0kdVpssp1Y8aXdPtqmlNR35DITFIautquc,11603
|
|
180
|
-
cirq/devices/thermal_noise_model_test.py,sha256=
|
|
180
|
+
cirq/devices/thermal_noise_model_test.py,sha256=vgloNkmkNes_pn0D50-LD2RUcsMJey7EN8Wm6Nc-d5U,12282
|
|
181
181
|
cirq/devices/unconstrained_device.py,sha256=R3vHBELHhDYgvvwhLgtlLASNL7er2jBmKJilgzbed8o,1557
|
|
182
|
-
cirq/devices/unconstrained_device_test.py,sha256=
|
|
182
|
+
cirq/devices/unconstrained_device_test.py,sha256=J8vABVWWywQuX6Jlo5Y0pWTh6VZRatdmjdBL6u0kZKk,1083
|
|
183
183
|
cirq/experiments/__init__.py,sha256=Sx2sW3Uj0p7W-E_HkZ21YpHVUvKlp_zc5WWtago4rlo,3667
|
|
184
184
|
cirq/experiments/fidelity_estimation.py,sha256=Z6BjqAKMzyMGRMnUyy5YN3o0fpAOMtnmtQ6b_dGhT8E,9283
|
|
185
|
-
cirq/experiments/fidelity_estimation_test.py,sha256=
|
|
185
|
+
cirq/experiments/fidelity_estimation_test.py,sha256=On0O1StB6Fo85xuK6BWo-zZWb2at-GqhAgpSrNRBn3I,4955
|
|
186
186
|
cirq/experiments/n_qubit_tomography.py,sha256=T4Q8GkcESrraFfnSnDEaMh_-7X7U3ufpdHwrjprBr4M,8482
|
|
187
|
-
cirq/experiments/n_qubit_tomography_test.py,sha256=
|
|
188
|
-
cirq/experiments/purity_estimation.py,sha256=
|
|
189
|
-
cirq/experiments/purity_estimation_test.py,sha256=
|
|
187
|
+
cirq/experiments/n_qubit_tomography_test.py,sha256=8wIgs0O8DtlCGOyC0MZA_d3tLNoURX1ARcqnnp1360g,4439
|
|
188
|
+
cirq/experiments/purity_estimation.py,sha256=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWWVsdpEA7k,2503
|
|
189
|
+
cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
|
|
190
190
|
cirq/experiments/qubit_characterizations.py,sha256=HQwpoxI3z2InRy33ETqp1yCukJ4eEzMXi4pZ49FmsRs,36716
|
|
191
|
-
cirq/experiments/qubit_characterizations_test.py,sha256=
|
|
191
|
+
cirq/experiments/qubit_characterizations_test.py,sha256=db5dp9I3wRYLR-WZs9jVrPZvAPO5uRVjP5R1u1pPbDQ,9752
|
|
192
192
|
cirq/experiments/random_quantum_circuit_generation.py,sha256=P3LcrAQSAioyGfpbtZsAuf5uSRYOxXJKHIJh41oRPB4,28153
|
|
193
193
|
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=hWiW31iNzheaU2M82G4CDsAhSW8kQ1-DWm8FgDpxvU4,16549
|
|
194
194
|
cirq/experiments/readout_confusion_matrix.py,sha256=Im2X1MWD2zIlxHynH0TGBalZRA6PpPvk1kjEI1NfgPo,20729
|
|
195
|
-
cirq/experiments/readout_confusion_matrix_test.py,sha256=
|
|
195
|
+
cirq/experiments/readout_confusion_matrix_test.py,sha256=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
|
|
196
196
|
cirq/experiments/single_qubit_readout_calibration.py,sha256=K9IZQINYwDVxF3OT15Zd40JnQhKtGc9z5UNALMIIu4w,14749
|
|
197
197
|
cirq/experiments/single_qubit_readout_calibration_test.py,sha256=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
|
|
198
198
|
cirq/experiments/t1_decay_experiment.py,sha256=IA108IQ9KEcZilEwu_famESZmdMaxJAUKyHKJNhBjz4,7112
|
|
199
|
-
cirq/experiments/t1_decay_experiment_test.py,sha256=
|
|
199
|
+
cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
|
|
200
200
|
cirq/experiments/t2_decay_experiment.py,sha256=RM8KbXmEWfLu865QksIZPCL9h37VQLUKoSTb1Uq_QnI,19176
|
|
201
|
-
cirq/experiments/t2_decay_experiment_test.py,sha256=
|
|
201
|
+
cirq/experiments/t2_decay_experiment_test.py,sha256=b2ikIWTctvAp66GZftmVJ1z0mgS-eN0FsUU7bErG7Cg,15066
|
|
202
202
|
cirq/experiments/two_qubit_xeb.py,sha256=loImf3M7UDPyAhWsVwYn7xNSumBCXZ5LRsgCy6IaaWE,22840
|
|
203
|
-
cirq/experiments/two_qubit_xeb_test.py,sha256=
|
|
203
|
+
cirq/experiments/two_qubit_xeb_test.py,sha256=CO-3ceb9p-ZK9Xqr6GQOlpU02zYY_LZt4yg8U5HgNTI,10714
|
|
204
204
|
cirq/experiments/xeb_fitting.py,sha256=UEPNyjpjoGUNTdQfdRUnPe_Yvdc18GewYN1FdJjWoYg,30401
|
|
205
205
|
cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
|
|
206
206
|
cirq/experiments/xeb_sampling.py,sha256=7va7Rq_BpKtj-ip3Tnx6doqAoVWRQi4-g10kX03EEVo,14995
|
|
207
|
-
cirq/experiments/xeb_sampling_test.py,sha256=
|
|
207
|
+
cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
|
|
208
208
|
cirq/experiments/xeb_simulation.py,sha256=w-4TI8KexpI6zJTS8PHmcWWWHfyRcbJYC4Ifin-bHts,5101
|
|
209
209
|
cirq/experiments/xeb_simulation_test.py,sha256=2ETf99fb0b76w9NjH8pGHTVLLmQE6CIv0yzlCB6WbQ8,5646
|
|
210
210
|
cirq/experiments/z_phase_calibration.py,sha256=NBn40t-w-PVorGVyEn_b16IiOkc7-wHY0KjWJMpovwY,15102
|
|
211
|
-
cirq/experiments/z_phase_calibration_test.py,sha256=
|
|
211
|
+
cirq/experiments/z_phase_calibration_test.py,sha256=F5ePCPHukDolucMPDfMbyeDSHMF3hEzW-EBEQHKrCyI,9048
|
|
212
212
|
cirq/experiments/benchmarking/__init__.py,sha256=2jMiP2dmQrH9Z2eKC8koaQqZcOi_-ziuer-aHkLm_bU,709
|
|
213
213
|
cirq/experiments/benchmarking/parallel_xeb.py,sha256=3RyTTnHpqV-8B-TmDS7jBnaLu6GFLKPUFDtOOnMUlwQ,26015
|
|
214
|
-
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=
|
|
214
|
+
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=tT_iyG9_ZU933-t2altuugOy8ekqzxtjkmGn1rdF-ak,15867
|
|
215
215
|
cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
|
|
216
216
|
cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
|
|
217
217
|
cirq/interop/quirk/url_to_circuit.py,sha256=VYFm_QSkpgug568oyF6LerZbFDkes3e5dR6YSREvuSQ,14226
|
|
218
|
-
cirq/interop/quirk/url_to_circuit_test.py,sha256=
|
|
218
|
+
cirq/interop/quirk/url_to_circuit_test.py,sha256=A5mb66WkPAK37nO5RZRxJ_n5rvls2XzNaiCKch3lwLQ,26319
|
|
219
219
|
cirq/interop/quirk/cells/__init__.py,sha256=whHeo2FI2h19CUYzUzzdrRqEz-LE0AswzQdmklbuFdE,1483
|
|
220
|
-
cirq/interop/quirk/cells/all_cells.py,sha256=
|
|
220
|
+
cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
|
|
221
221
|
cirq/interop/quirk/cells/arithmetic_cells.py,sha256=8H1YmrJi_I_eHfw-5icbKDFSeaFBFntTOBrMKvalb7A,13149
|
|
222
|
-
cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=
|
|
222
|
+
cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
|
|
223
223
|
cirq/interop/quirk/cells/cell.py,sha256=q325wair37CfRl-ipWtuy7bhf3r83pODTtw6cf9RyBQ,8452
|
|
224
|
-
cirq/interop/quirk/cells/cell_test.py,sha256
|
|
224
|
+
cirq/interop/quirk/cells/cell_test.py,sha256=ymhh6BN3kTCfsmki2I72KUxmZSP5GStszoBmQZAgj7M,2313
|
|
225
225
|
cirq/interop/quirk/cells/composite_cell.py,sha256=-4UFAW0GWYELbRksIg8T1bfJq5Q5I6jxoe6SzUyc6H4,5356
|
|
226
|
-
cirq/interop/quirk/cells/composite_cell_test.py,sha256=
|
|
226
|
+
cirq/interop/quirk/cells/composite_cell_test.py,sha256=aVikfJkju5niIiA2DmTqXPQ8Lr2AnqHtBp1QT0KtNRI,5344
|
|
227
227
|
cirq/interop/quirk/cells/control_cells.py,sha256=nKQ-5wZUgywVMmXbFcqScF9VBj-R8hRGeXXelc20duQ,5573
|
|
228
|
-
cirq/interop/quirk/cells/control_cells_test.py,sha256=
|
|
228
|
+
cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
|
|
229
229
|
cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
|
|
230
|
-
cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=
|
|
231
|
-
cirq/interop/quirk/cells/ignored_cells.py,sha256=
|
|
232
|
-
cirq/interop/quirk/cells/ignored_cells_test.py,sha256=
|
|
230
|
+
cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
|
|
231
|
+
cirq/interop/quirk/cells/ignored_cells.py,sha256=AEZ7O4kQZgCkd_Uvn2TbQkofp2IHM3GdY9c-9E2wSpw,1415
|
|
232
|
+
cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
|
|
233
233
|
cirq/interop/quirk/cells/input_cells.py,sha256=hR8zQQOCgbeRLK2f31mwRcAS5lGPi1AO83Uz1KuVDdQ,2951
|
|
234
|
-
cirq/interop/quirk/cells/input_cells_test.py,sha256=
|
|
234
|
+
cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
|
|
235
235
|
cirq/interop/quirk/cells/input_rotation_cells.py,sha256=HF_KFnfcFMCJ88XZF0BiOy1TsoCzD_qw2DAbeSV8qjI,7377
|
|
236
|
-
cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=
|
|
236
|
+
cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
|
|
237
237
|
cirq/interop/quirk/cells/measurement_cells.py,sha256=_6a6jm-EP9khPm2eZZu2ArlTdvfLzo1bW7LZ9GFaXVg,1539
|
|
238
|
-
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=
|
|
239
|
-
cirq/interop/quirk/cells/parse.py,sha256=
|
|
240
|
-
cirq/interop/quirk/cells/parse_test.py,sha256=
|
|
238
|
+
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
|
|
239
|
+
cirq/interop/quirk/cells/parse.py,sha256=uRlUzgcAVX5QDr7ALMQ5nWf-RcCW6l4VKChexKDMi4c,11909
|
|
240
|
+
cirq/interop/quirk/cells/parse_test.py,sha256=w3Vp13EBAcMvpCgWK9fzYwfBpVF4ax6JAqASLmFrYWg,7625
|
|
241
241
|
cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=swv_ovLaqO073j-uo6JtII_Sw_Nh51e53tSq-8JREoM,3424
|
|
242
|
-
cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=
|
|
242
|
+
cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=HEg156HfRnTSciiYEr_H3oIBtvF0GNafKwb2Gy53k5U,4552
|
|
243
243
|
cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
|
|
244
|
-
cirq/interop/quirk/cells/scalar_cells_test.py,sha256=
|
|
244
|
+
cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
|
|
245
245
|
cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
|
|
246
|
-
cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=
|
|
246
|
+
cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
|
|
247
247
|
cirq/interop/quirk/cells/swap_cell.py,sha256=7WxDTBPu4gGKTkJYxtnNK5E3L3gmrzyCdi50fJuScFw,2443
|
|
248
|
-
cirq/interop/quirk/cells/swap_cell_test.py,sha256=
|
|
249
|
-
cirq/interop/quirk/cells/testing.py,sha256=
|
|
250
|
-
cirq/interop/quirk/cells/testing_test.py,sha256=
|
|
251
|
-
cirq/interop/quirk/cells/unsupported_cells.py,sha256=
|
|
252
|
-
cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=
|
|
248
|
+
cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
|
|
249
|
+
cirq/interop/quirk/cells/testing.py,sha256=L_77LEtJLXAKRsMREMbRf9pP43l-0JB_avl7UTb0u4g,3352
|
|
250
|
+
cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
|
|
251
|
+
cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
|
|
252
|
+
cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
|
|
253
253
|
cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
|
|
254
254
|
cirq/linalg/__init__.py,sha256=0dSlIBy-TVzf7b_-rLLlrS8ZFkgCfYg0pJjWs72xYOk,4045
|
|
255
255
|
cirq/linalg/combinators.py,sha256=eFblS-EO45W0uqOm4rPmPj85_3w6Y3y7wnOTTLIiSK8,5366
|
|
256
|
-
cirq/linalg/combinators_test.py,sha256=
|
|
256
|
+
cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
|
|
257
257
|
cirq/linalg/decompositions.py,sha256=bKwdrDSMQtnZgGhowVFrxfpuQbLR-s-xWwVF23h88Ms,38675
|
|
258
|
-
cirq/linalg/decompositions_test.py,sha256=
|
|
259
|
-
cirq/linalg/diagonalize.py,sha256=
|
|
260
|
-
cirq/linalg/diagonalize_test.py,sha256=
|
|
258
|
+
cirq/linalg/decompositions_test.py,sha256=b61HGNDPhykEazp48lHk8Kgw08cKCMW4ZHtVDN8yDFA,25472
|
|
259
|
+
cirq/linalg/diagonalize.py,sha256=2ZUWd5QDngwi8lJejTUbqe16p0aqbpDUxnfurvdxFmw,10087
|
|
260
|
+
cirq/linalg/diagonalize_test.py,sha256=3wvNB0lxi2L1-gTPsJ3poSfMAtzFvdedB-EL-pjKI18,9205
|
|
261
261
|
cirq/linalg/operator_spaces.py,sha256=zoqUpa_cCvhycqe2y7FikhLSB2tOV7wtuqRiYRXtcJo,4145
|
|
262
|
-
cirq/linalg/operator_spaces_test.py,sha256=
|
|
262
|
+
cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
|
|
263
263
|
cirq/linalg/predicates.py,sha256=WyMHG_X_nGrPAqAN7Z-QIEfOxeBaaBqesHuJg2jz-MY,12147
|
|
264
|
-
cirq/linalg/predicates_test.py,sha256=
|
|
264
|
+
cirq/linalg/predicates_test.py,sha256=lNtaVVbPhDFD1yXWZb2Ncz5ZsgSdkVxv-prBBXsvk0k,21540
|
|
265
265
|
cirq/linalg/tolerance.py,sha256=EOP8s53270gw3wCPsnuuuhLENBhdUffxEDygwVLOvzY,1905
|
|
266
|
-
cirq/linalg/tolerance_test.py,sha256=
|
|
267
|
-
cirq/linalg/transformations.py,sha256=
|
|
268
|
-
cirq/linalg/transformations_test.py,sha256=
|
|
266
|
+
cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
|
|
267
|
+
cirq/linalg/transformations.py,sha256=iDv2wGqhBzJdFEfm8ZGFubF-wq4fPodAZbrZ_IWmlCo,32588
|
|
268
|
+
cirq/linalg/transformations_test.py,sha256=KcBgeNwiNms30qT5nAHhtASHbD0wIQDMaPEoXZVlxag,25672
|
|
269
269
|
cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
|
|
270
270
|
cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
|
|
271
|
-
cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=
|
|
272
|
-
cirq/neutral_atoms/neutral_atom_devices.py,sha256=
|
|
271
|
+
cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
|
|
272
|
+
cirq/neutral_atoms/neutral_atom_devices.py,sha256=2q7sPeQIb9UbseTPyRSaHeo4dZKF_EcNUDH5u6eIb98,1394
|
|
273
273
|
cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
|
|
274
274
|
cirq/ops/arithmetic_operation.py,sha256=j1RkP2gDX3n7xzEKNAoTQSmzfXBIAdov07AUlhdtVQw,10157
|
|
275
|
-
cirq/ops/arithmetic_operation_test.py,sha256=
|
|
275
|
+
cirq/ops/arithmetic_operation_test.py,sha256=m2dzaaqbbL5GZYRKNhoRVo_eGb1NPaEZjfHImCwqxO0,4982
|
|
276
276
|
cirq/ops/boolean_hamiltonian.py,sha256=2Z5iqrxHxMmFjRgY72uqedK2C6sfFtIFSGs8TGwyhKg,14946
|
|
277
|
-
cirq/ops/boolean_hamiltonian_test.py,sha256=
|
|
277
|
+
cirq/ops/boolean_hamiltonian_test.py,sha256=g99wUCiC_fap2UCkO7StpwKzR3GomESwbLXLL785VOY,8577
|
|
278
278
|
cirq/ops/classically_controlled_operation.py,sha256=lRP-agJZBgGO5CL9OML3oZKaOZJAuAMqnHe4XRAC6Gk,10369
|
|
279
|
-
cirq/ops/classically_controlled_operation_test.py,sha256=
|
|
279
|
+
cirq/ops/classically_controlled_operation_test.py,sha256=GexXZ4aWrWL-okRRaDUlAnMXarydNCP-7fv2xZTxlqo,50245
|
|
280
280
|
cirq/ops/clifford_gate.py,sha256=N2obL0540tkuIHOvfyEPuXavYm29kymieXqxKcKJ24M,40293
|
|
281
281
|
cirq/ops/clifford_gate_test.py,sha256=iLzN-zca-wIbjbNng8gwlHGh7KZlg5zcoH_BV-KAuQ4,40810
|
|
282
282
|
cirq/ops/common_channels.py,sha256=aTxfQ7F4ewv2h_XfUgfdGk2DbU7Lian-Jp_2muMNXlg,37130
|
|
283
|
-
cirq/ops/common_channels_test.py,sha256=
|
|
284
|
-
cirq/ops/common_gate_families.py,sha256=
|
|
285
|
-
cirq/ops/common_gate_families_test.py,sha256=
|
|
283
|
+
cirq/ops/common_channels_test.py,sha256=Qzw7nDrWgO1GDB7qkN2YUZi3NDswvvBJ9TEnSNakJX4,30755
|
|
284
|
+
cirq/ops/common_gate_families.py,sha256=4Si257eQ_snyEbxpr6rzOkMdT-CjgQq304XgDTrkfNo,8647
|
|
285
|
+
cirq/ops/common_gate_families_test.py,sha256=uePsNHQJG7zr28P5KYBBiRQHtl5nYl3tYPVjl5jH4mM,5312
|
|
286
286
|
cirq/ops/common_gates.py,sha256=ITW2Vvpw8VzypGn99yawjf1u8tW1arg51kRzvaNHWUE,58256
|
|
287
|
-
cirq/ops/common_gates_test.py,sha256=
|
|
287
|
+
cirq/ops/common_gates_test.py,sha256=0q09MBVhYuLpfi1xejTrmzgyP4QaeCS-oW_aHOLKje8,46909
|
|
288
288
|
cirq/ops/control_values.py,sha256=J674mKNnncydB2n_F2ZhqIs1EZQBFPDprdHilRKfUsk,13397
|
|
289
|
-
cirq/ops/control_values_test.py,sha256=
|
|
289
|
+
cirq/ops/control_values_test.py,sha256=JYaFLJSIqZSaQ94y0kyWRRVzcQ9mgc6-s1ws2q4EiAg,12943
|
|
290
290
|
cirq/ops/controlled_gate.py,sha256=w6llkldlz_ap8rvtXCF7NIPFkMKbJJQgJXe2tFY8LBg,15208
|
|
291
|
-
cirq/ops/controlled_gate_test.py,sha256=
|
|
291
|
+
cirq/ops/controlled_gate_test.py,sha256=KINUJ2GXXFe7lfhLFEl01ec3LpcslSsZfA0hGRFqbHw,25564
|
|
292
292
|
cirq/ops/controlled_operation.py,sha256=Xzp8Yove9Ix0u4jkXHWxfQGXoqEzfNb6LtWvi92dGoY,14126
|
|
293
|
-
cirq/ops/controlled_operation_test.py,sha256=
|
|
293
|
+
cirq/ops/controlled_operation_test.py,sha256=jzdM719Gjl4JKLnwbpj2PxbScJQmAT_EkESp3Y5kQww,16577
|
|
294
294
|
cirq/ops/dense_pauli_string.py,sha256=-cnQs2z9qf45KRqWC_ppqsCfJFdtpjbaw5kQio8-XMc,24435
|
|
295
|
-
cirq/ops/dense_pauli_string_test.py,sha256=
|
|
295
|
+
cirq/ops/dense_pauli_string_test.py,sha256=NsI_-UlpCue3jxjHrgrjstSJsWoUdMDhCFn6Vzp2K_k,21541
|
|
296
296
|
cirq/ops/diagonal_gate.py,sha256=dUoaiQe86crB1STyzlL5k9W6R_3JRlOrOTvxUm-Dymc,8999
|
|
297
|
-
cirq/ops/diagonal_gate_test.py,sha256=
|
|
297
|
+
cirq/ops/diagonal_gate_test.py,sha256=3ZJVH3BWiP_v7mkrbbaNcqq4T_h6mpbm_xtFva9LcbU,6260
|
|
298
298
|
cirq/ops/eigen_gate.py,sha256=ZQWJqUR-aX_5plVnQpjPrpdSIu3I8PE-gE1Rn2BL07s,17519
|
|
299
|
-
cirq/ops/eigen_gate_test.py,sha256=
|
|
299
|
+
cirq/ops/eigen_gate_test.py,sha256=da1K4Mm2ArFGroSNR-7D65oyrixWbt7w2VCqksYFspk,16175
|
|
300
300
|
cirq/ops/fourier_transform.py,sha256=My5E49ox7sXTEXYP6QXSWIgsloOtX3rnAu1f1eFSHx0,7497
|
|
301
|
-
cirq/ops/fourier_transform_test.py,sha256=
|
|
301
|
+
cirq/ops/fourier_transform_test.py,sha256=F4n0zcV0cH7enbLyx6bd35cu0fJ_WDm9Z1FILO0cNE0,6262
|
|
302
302
|
cirq/ops/fsim_gate.py,sha256=pZiUI7GrLKSUtQs-U2sA0efPFfyILLS8BWddSfhZQCc,20073
|
|
303
|
-
cirq/ops/fsim_gate_test.py,sha256=
|
|
304
|
-
cirq/ops/gate_features.py,sha256=
|
|
305
|
-
cirq/ops/gate_features_test.py,sha256=
|
|
303
|
+
cirq/ops/fsim_gate_test.py,sha256=EBeiEhS5C99Zn60V1PbxZQdI8262KgCwFkHQBruK9Sk,25915
|
|
304
|
+
cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
|
|
305
|
+
cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
|
|
306
306
|
cirq/ops/gate_operation.py,sha256=_JbRX0FkDK8HzAwE9RY6b5YVaRbpZwJnNV9BrWJ2kTY,13680
|
|
307
|
-
cirq/ops/gate_operation_test.py,sha256=
|
|
307
|
+
cirq/ops/gate_operation_test.py,sha256=s7c50LCIMEaMWxFqmLcTpLzz1vJYFdDBQi_2uGky_hg,17554
|
|
308
308
|
cirq/ops/gateset.py,sha256=GqBz0R7sMUJaW9Pe7UCdhuM4lLE8RzrRkb8F97ePWnA,21660
|
|
309
|
-
cirq/ops/gateset_test.py,sha256=
|
|
309
|
+
cirq/ops/gateset_test.py,sha256=pPz3JD0d0aM0AMuzNrC8F5Fa38K5V2hXXVwrWJ4sV3w,16593
|
|
310
310
|
cirq/ops/global_phase_op.py,sha256=hgXUGUEDQTJwdvRrkSZbVQsrjbrfdT6OxTER1jl440Q,4889
|
|
311
|
-
cirq/ops/global_phase_op_test.py,sha256=
|
|
311
|
+
cirq/ops/global_phase_op_test.py,sha256=BBdKpfBWO_o8WalSZPGTIiH6z_XDqz-2CgMcl_lQkC4,9869
|
|
312
312
|
cirq/ops/greedy_qubit_manager.py,sha256=8csh_mmSgIQ5qzWw5xHpZ3mR7Io7vpTeG0n6qazA6jo,4061
|
|
313
|
-
cirq/ops/greedy_qubit_manager_test.py,sha256=
|
|
313
|
+
cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
|
|
314
314
|
cirq/ops/identity.py,sha256=VaIVbO-4rIAxgiud9TQZDtI0EwTG1qyxD_Rg-pBsq6g,5910
|
|
315
|
-
cirq/ops/identity_test.py,sha256=
|
|
315
|
+
cirq/ops/identity_test.py,sha256=8_uQpXvHgHHLO_gfOI4pTVwnZnqrUfinaJz5ULPXMFI,7976
|
|
316
316
|
cirq/ops/kraus_channel.py,sha256=mA8iCmdZIavIc7vcGqSeJ5mYm48nIOTTQu789nfMjGY,5113
|
|
317
|
-
cirq/ops/kraus_channel_test.py,sha256
|
|
317
|
+
cirq/ops/kraus_channel_test.py,sha256=8B0Ql1_93GldwknFCtu54k36a_WGQJIpSKJ65vXxS8I,4857
|
|
318
318
|
cirq/ops/linear_combinations.py,sha256=DshYZRhhmLn1_gCiU1nZdeJ49IM9q46WMCpMniI9fXY,39881
|
|
319
|
-
cirq/ops/linear_combinations_test.py,sha256=
|
|
319
|
+
cirq/ops/linear_combinations_test.py,sha256=0KwC4PE1bV7Z6kbXj6KluXV0jxoWXBXKvw_ajF4QOuI,67253
|
|
320
320
|
cirq/ops/matrix_gates.py,sha256=bVN8u5wPEvalZfM6Y6MICEqQs4gZUnENcktc3r56NHs,10347
|
|
321
|
-
cirq/ops/matrix_gates_test.py,sha256=
|
|
321
|
+
cirq/ops/matrix_gates_test.py,sha256=5ZVdkTODOXKv5fi3xDqJA0gc9cYBMTd-KuKHyK-dxHI,14261
|
|
322
322
|
cirq/ops/measure_util.py,sha256=WOOir3lrj-Icebx-XvZFe0vd74XbQuoCxVb-05qVeDg,7418
|
|
323
|
-
cirq/ops/measure_util_test.py,sha256=
|
|
323
|
+
cirq/ops/measure_util_test.py,sha256=WrbR2jr_bFXxpQe8n3ANLAKYo1hcf-SlgsFOi-ULRXU,5343
|
|
324
324
|
cirq/ops/measurement_gate.py,sha256=0088IVwTUItpY_1I2iskeARSDlyqRV_Kh7QTIACOj-I,11987
|
|
325
|
-
cirq/ops/measurement_gate_test.py,sha256=
|
|
325
|
+
cirq/ops/measurement_gate_test.py,sha256=SPVD8DTc0Kmkazp7jmUIVHfELihkK_SFu3aXSw-uHbc,18335
|
|
326
326
|
cirq/ops/mixed_unitary_channel.py,sha256=GdpKExjLIBrhqpyb21YM0AiNQgxA5TqUgkjam7SVDak,5287
|
|
327
|
-
cirq/ops/mixed_unitary_channel_test.py,sha256=
|
|
327
|
+
cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
|
|
328
328
|
cirq/ops/named_qubit.py,sha256=2vAtNvZNhsjyigRDp2PMp2LCdF2jYAGmC8Zo6_IUVuw,10032
|
|
329
|
-
cirq/ops/named_qubit_test.py,sha256=
|
|
329
|
+
cirq/ops/named_qubit_test.py,sha256=MHjKXSxHCVV3rUYtsQ0_FZVV6Sh--r3zdGc0rmmdaBs,5257
|
|
330
330
|
cirq/ops/op_tree.py,sha256=Voltj5mC0yaN_peWkOsn5RTAfKTkHu4pT_9MGGDdiXc,5308
|
|
331
|
-
cirq/ops/op_tree_test.py,sha256=
|
|
331
|
+
cirq/ops/op_tree_test.py,sha256=1WAIeVkmmEU3wRaEnM9DdGBU0_CVbYMwgunIO2LrBc4,5737
|
|
332
332
|
cirq/ops/parallel_gate.py,sha256=S_Kp9S2gdAa_8RqGSDusjPG00DEikK5tbtL3WCTH6_o,6296
|
|
333
|
-
cirq/ops/parallel_gate_test.py,sha256=
|
|
333
|
+
cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
|
|
334
334
|
cirq/ops/parity_gates.py,sha256=cm3KTku0wBrawbyHCzOuQOpYVbeahaZfIrDkxNBeB4s,14355
|
|
335
|
-
cirq/ops/parity_gates_test.py,sha256
|
|
335
|
+
cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
|
|
336
336
|
cirq/ops/pauli_gates.py,sha256=Wfpa-_7tMGNnHcLxUdC9Zqsp2dzxW1piPgj34UAq1Is,6820
|
|
337
|
-
cirq/ops/pauli_gates_test.py,sha256=
|
|
337
|
+
cirq/ops/pauli_gates_test.py,sha256=fJiB-rqVTu7t9Vxu3QdnvEMJYDgmz5I9xyoFdIhNIco,7949
|
|
338
338
|
cirq/ops/pauli_interaction_gate.py,sha256=hGYmC1i8UCDDJ6e3ML6M8GeW-byq_dLoNv5UvB4ECao,5558
|
|
339
|
-
cirq/ops/pauli_interaction_gate_test.py,sha256=
|
|
339
|
+
cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
|
|
340
340
|
cirq/ops/pauli_measurement_gate.py,sha256=R64b1zbnwecKTkZHXzOcro21OubDu-wibRk5ppwFfLk,7217
|
|
341
|
-
cirq/ops/pauli_measurement_gate_test.py,sha256=
|
|
341
|
+
cirq/ops/pauli_measurement_gate_test.py,sha256=BVTUl5EwLrKwYZmEWmVHYu15tH0L9EkF8SYrm0eL0HI,6814
|
|
342
342
|
cirq/ops/pauli_string.py,sha256=OUqhn_gdf3RkYM3G1amiPaHMU89kOUBCSA3AFaWjGnI,66771
|
|
343
343
|
cirq/ops/pauli_string_phasor.py,sha256=MKCFPfkh-sSANI1yQDniwVohAQqaLkMdIWEiZyhNJl8,18276
|
|
344
|
-
cirq/ops/pauli_string_phasor_test.py,sha256
|
|
344
|
+
cirq/ops/pauli_string_phasor_test.py,sha256=-1mB1WLEFlrKnSfcgR1LabTaeLYf2bvcJQdWxEImGH4,27767
|
|
345
345
|
cirq/ops/pauli_string_raw_types.py,sha256=200Epv_YmR33YVEL8wT198S04GAruyG7I0xVtVk8oqk,2269
|
|
346
|
-
cirq/ops/pauli_string_raw_types_test.py,sha256=
|
|
347
|
-
cirq/ops/pauli_string_test.py,sha256=
|
|
346
|
+
cirq/ops/pauli_string_raw_types_test.py,sha256=jjFEbQxGsazsR8p4y-EK7SaTryRWagR9Hi7YuixXi6A,2684
|
|
347
|
+
cirq/ops/pauli_string_test.py,sha256=jbdGTpRP5MY1Q797JCEKuWcqgTeoNjL9b-YMbZ6LERY,72867
|
|
348
348
|
cirq/ops/pauli_sum_exponential.py,sha256=o-OsJ6SfsYNnMdSTpAaL1uauTKh9SLL3oLLoh7y4IV0,4868
|
|
349
|
-
cirq/ops/pauli_sum_exponential_test.py,sha256=
|
|
349
|
+
cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
|
|
350
350
|
cirq/ops/permutation_gate.py,sha256=uLd0qZgT4eDKO22Me9HGSDD7Hnf1Ol3ddkwJ7ZghL3U,4224
|
|
351
|
-
cirq/ops/permutation_gate_test.py,sha256=
|
|
351
|
+
cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
|
|
352
352
|
cirq/ops/phased_iswap_gate.py,sha256=kXC0V_fIFq-MO6jlA5arse60kqfDb3nqDC_YYfcZ19g,8996
|
|
353
|
-
cirq/ops/phased_iswap_gate_test.py,sha256=
|
|
353
|
+
cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
|
|
354
354
|
cirq/ops/phased_x_gate.py,sha256=OHm4Bv3gF2GcGZfCU71Kj2PXqdjpVk5Ufo9yk_oylVk,9322
|
|
355
|
-
cirq/ops/phased_x_gate_test.py,sha256=
|
|
355
|
+
cirq/ops/phased_x_gate_test.py,sha256=DTWG4gmeNaIX4GLLdSQN8OfZFEDqm192szY_amc_E6w,10857
|
|
356
356
|
cirq/ops/phased_x_z_gate.py,sha256=72_lDbJXEbKYQ1Q6brCc2jEiNcH1B5t8hnN2v_RqjRY,11524
|
|
357
|
-
cirq/ops/phased_x_z_gate_test.py,sha256=
|
|
357
|
+
cirq/ops/phased_x_z_gate_test.py,sha256=pp6e5PeYgg2J0EdQ6L704E5qFdBomJsPcZdnCFB70_c,10727
|
|
358
358
|
cirq/ops/projector.py,sha256=c7Q1pB7KEjiVQV-vD8Yu6jOcpUAG49khge9Bu3MJF7w,5672
|
|
359
|
-
cirq/ops/projector_test.py,sha256=
|
|
359
|
+
cirq/ops/projector_test.py,sha256=i18K2aaj5kOnnBcShB92-66TVYdhZCubPxCXoZ9fAQk,9100
|
|
360
360
|
cirq/ops/qid_util.py,sha256=B2Ilqp4LCDN-Um3lx2GfWq3IelZYicMvFx7hgIQmmhc,2095
|
|
361
|
-
cirq/ops/qid_util_test.py,sha256=
|
|
361
|
+
cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
|
|
362
362
|
cirq/ops/qubit_manager.py,sha256=bMKvI-z018xf0YKfy87XhAseYKKGXNsFAyPR-AMhAC0,3562
|
|
363
|
-
cirq/ops/qubit_manager_test.py,sha256=
|
|
364
|
-
cirq/ops/qubit_order.py,sha256=
|
|
365
|
-
cirq/ops/qubit_order_or_list.py,sha256=
|
|
366
|
-
cirq/ops/qubit_order_test.py,sha256=
|
|
363
|
+
cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
|
|
364
|
+
cirq/ops/qubit_order.py,sha256=CvYVgoZH_IhAI_mOkLCIXLArrLp4tG61yV90b-KncU8,5518
|
|
365
|
+
cirq/ops/qubit_order_or_list.py,sha256=vP5MwFI5pbn8WH6eFzwe_sE3EPixRRWGDj0jlbECNRM,1201
|
|
366
|
+
cirq/ops/qubit_order_test.py,sha256=e8gBGSCHyKu9nJHPwEPVO060uDpJCpO0ok5n6toR0PU,4274
|
|
367
367
|
cirq/ops/random_gate_channel.py,sha256=HqE7wWehH6cNPEcsqNIFj99lL7iNzK-YAyXXJrzQxkk,5141
|
|
368
|
-
cirq/ops/random_gate_channel_test.py,sha256=
|
|
368
|
+
cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
|
|
369
369
|
cirq/ops/raw_types.py,sha256=MfOTIYszz0PuedZss2u9aA3cwqtfyEv30FtwtkJx2io,43937
|
|
370
370
|
cirq/ops/raw_types_test.py,sha256=YyyR1UDyW4Vail8Zsvz-nCLlqRsnjCnuzQEBn2oEZyM,34751
|
|
371
371
|
cirq/ops/state_preparation_channel.py,sha256=ypePZSkI2WiXR4Z0K4PbqZe5pA8YzB0lScFZEHccixA,4794
|
|
372
|
-
cirq/ops/state_preparation_channel_test.py,sha256=
|
|
372
|
+
cirq/ops/state_preparation_channel_test.py,sha256=Seis5RvdCCSgMlED9JYKZIfAElJdtoUHSPgoYTiMEnU,6023
|
|
373
373
|
cirq/ops/swap_gates.py,sha256=dCamFTMhCwi7DDqKsviUpCV-WqsU_tE3Jh4r8R-Oq_k,11784
|
|
374
|
-
cirq/ops/swap_gates_test.py,sha256=
|
|
375
|
-
cirq/ops/tags.py,sha256=
|
|
376
|
-
cirq/ops/tags_test.py,sha256=
|
|
374
|
+
cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
|
|
375
|
+
cirq/ops/tags.py,sha256=sMT7VFRKf3QDZAtF1K9WCT0XMBRNdlegM4VGxl3FK5A,2332
|
|
376
|
+
cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
|
|
377
377
|
cirq/ops/three_qubit_gates.py,sha256=TiK4M9Aed3ILT1-017eJie4T2Ir08RD3_36cbV4sRmc,28440
|
|
378
|
-
cirq/ops/three_qubit_gates_test.py,sha256=
|
|
378
|
+
cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
|
|
379
379
|
cirq/ops/two_qubit_diagonal_gate.py,sha256=cDAQwtynA0i746aBbg3F3uLTxyr0C90mXKQBURjlpM0,5403
|
|
380
|
-
cirq/ops/two_qubit_diagonal_gate_test.py,sha256=
|
|
380
|
+
cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
|
|
381
381
|
cirq/ops/uniform_superposition_gate.py,sha256=WCBHosmq67T23fB3GhNp45l8KdeVgVp4lB4I1kVKh90,4757
|
|
382
|
-
cirq/ops/uniform_superposition_gate_test.py,sha256=
|
|
382
|
+
cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
|
|
383
383
|
cirq/ops/wait_gate.py,sha256=UICm3Yoooffh5B9LsQQiWqBtt0K2i7VfLWZACqQ_EGI,5598
|
|
384
|
-
cirq/ops/wait_gate_test.py,sha256=
|
|
384
|
+
cirq/ops/wait_gate_test.py,sha256=cBYqPQc339lfwXgdUSl0OD0ZlfsqaPvyrmnArD7ERs8,3580
|
|
385
385
|
cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
|
|
386
386
|
cirq/protocols/act_on_protocol.py,sha256=yf8QZwBUG6E2vdkHHZho7-6n2_qtBQJZ9onw6XMAO8w,6912
|
|
387
387
|
cirq/protocols/act_on_protocol_test.py,sha256=wJOZGPjXp89fkxodiPGS_ydlyCwkBq-qSB9459dZyoM,3222
|
|
388
|
-
cirq/protocols/apply_channel_protocol.py,sha256
|
|
389
|
-
cirq/protocols/apply_channel_protocol_test.py,sha256=
|
|
390
|
-
cirq/protocols/apply_mixture_protocol.py,sha256=
|
|
391
|
-
cirq/protocols/apply_mixture_protocol_test.py,sha256=
|
|
388
|
+
cirq/protocols/apply_channel_protocol.py,sha256=-wHBXoX5nCWfeHlVINur4myoGvs6c-XsSejs7utXXNU,15706
|
|
389
|
+
cirq/protocols/apply_channel_protocol_test.py,sha256=THW95ZzW1y8UtBIuzVJ872wEOZqIcFdPbXocBUzAiWw,10618
|
|
390
|
+
cirq/protocols/apply_mixture_protocol.py,sha256=hLYklTjpIr562MpSRn_1U24dDIdPI8MP1ivsth-W14Y,16505
|
|
391
|
+
cirq/protocols/apply_mixture_protocol_test.py,sha256=OYFaw7ITbdYvXzNWD32-LzJNDrl-p4k50NT9w7dSyTY,11166
|
|
392
392
|
cirq/protocols/apply_unitary_protocol.py,sha256=RKVO-1hrjkrCP9OCmtcVSvEM1Vs-EKCcBLgV-JMfp8k,29810
|
|
393
|
-
cirq/protocols/apply_unitary_protocol_test.py,sha256=
|
|
394
|
-
cirq/protocols/approximate_equality_protocol.py,sha256=
|
|
395
|
-
cirq/protocols/approximate_equality_protocol_test.py,sha256=
|
|
393
|
+
cirq/protocols/apply_unitary_protocol_test.py,sha256=po1z7a-r4kbfLg7_7XKgFMrsFIzQCFgceCwn-lyBEOA,26172
|
|
394
|
+
cirq/protocols/approximate_equality_protocol.py,sha256=DZ4eNCSwl_MI1LIo6tosFFqw0Gl9snM51C2vR5X1mdA,6293
|
|
395
|
+
cirq/protocols/approximate_equality_protocol_test.py,sha256=qVw2TzKRTZC7fDg6DK_fVEvJzJGmlzBi6JidlJrR_Fc,9212
|
|
396
396
|
cirq/protocols/circuit_diagram_info_protocol.py,sha256=xb2Eea2pj7Ey8fSXH9IgfiZZHxYraj9L2Lpr_S4Iins,16029
|
|
397
|
-
cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=
|
|
398
|
-
cirq/protocols/commutes_protocol.py,sha256=
|
|
399
|
-
cirq/protocols/commutes_protocol_test.py,sha256=
|
|
397
|
+
cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=sjXD0_EDNhKpDUBC1f-0vu8S4jyFz0Qtb2xRAEozXZg,10774
|
|
398
|
+
cirq/protocols/commutes_protocol.py,sha256=Vy5r_dhUBKO83sdThi5WfHB0qJIJqiSRsohHx1KloOo,7431
|
|
399
|
+
cirq/protocols/commutes_protocol_test.py,sha256=9YhBFYAwc-XpU7HrQp-GarKwmwmbgyadUYqlkiG10A8,5885
|
|
400
400
|
cirq/protocols/control_key_protocol.py,sha256=uVn5r4IUKFBVgHbuAz5teeASOnOex4yzeufVsNqWFCc,2644
|
|
401
|
-
cirq/protocols/control_key_protocol_test.py,sha256=
|
|
401
|
+
cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
|
|
402
402
|
cirq/protocols/decompose_protocol.py,sha256=eI09q0rJ5XQ3dicvVBqwat9NogX-BEa45xmmvoNPQUQ,18940
|
|
403
403
|
cirq/protocols/decompose_protocol_test.py,sha256=UAayIif0i6zwT3gJnzg5UhsUERz6zead5r1B78WrYSM,16175
|
|
404
|
-
cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=
|
|
405
|
-
cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=
|
|
406
|
-
cirq/protocols/has_stabilizer_effect_protocol.py,sha256=
|
|
407
|
-
cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=
|
|
408
|
-
cirq/protocols/has_unitary_protocol.py,sha256=
|
|
409
|
-
cirq/protocols/has_unitary_protocol_test.py,sha256=
|
|
404
|
+
cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=y-GPOImHgdjVqXF-qE3SUmlekF6-zI0tgi0E2nTdW1M,4106
|
|
405
|
+
cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
|
|
406
|
+
cirq/protocols/has_stabilizer_effect_protocol.py,sha256=vUWxIm5_rrgYXqUmHNrCnL_nNu0qVVNX053WkdNfUo4,4331
|
|
407
|
+
cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=T6-vtMO-eBXIMRur1nlmAzi4ty4-F1BP59ZRWR_d0HQ,3955
|
|
408
|
+
cirq/protocols/has_unitary_protocol.py,sha256=yc7IQWd2XxjV6hYMtwTd1R9Gp4F2W907Y-tBVYPFn7E,5408
|
|
409
|
+
cirq/protocols/has_unitary_protocol_test.py,sha256=X78xt3SP-Tx5pflit5X-ZiC5zf9EmuUdwXXApuGNASM,5861
|
|
410
410
|
cirq/protocols/hash_from_pickle_test.py,sha256=ghLwtXySQgya5flt4rSNiuK4nqRfiFlZh7d9o7nmeXc,4642
|
|
411
411
|
cirq/protocols/inverse_protocol.py,sha256=0HZVO8WGOHy0CFaTtDEwq0tSVXWPFoKJ72tA1TIapQU,4119
|
|
412
|
-
cirq/protocols/inverse_protocol_test.py,sha256=
|
|
413
|
-
cirq/protocols/json_serialization.py,sha256=
|
|
414
|
-
cirq/protocols/json_serialization_test.py,sha256=
|
|
415
|
-
cirq/protocols/kraus_protocol.py,sha256=
|
|
416
|
-
cirq/protocols/kraus_protocol_test.py,sha256=
|
|
412
|
+
cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
|
|
413
|
+
cirq/protocols/json_serialization.py,sha256=irqTgt1rs5JUF1nBxI8jGioiBl_36VQaBSua6RuWHyA,24816
|
|
414
|
+
cirq/protocols/json_serialization_test.py,sha256=VVwmNLWf4mxQcjGHL-JqrHwuFi_EH2FeNYgYooBNbXU,28180
|
|
415
|
+
cirq/protocols/kraus_protocol.py,sha256=4yiQaPE5gdADJa-OKg6tde_0nYNoXGCFYCIGxj1RBPo,9336
|
|
416
|
+
cirq/protocols/kraus_protocol_test.py,sha256=Z_E_2evjAzHw1WE974jj6CDCBF7ZmBcZ81PlpSgMK8U,5508
|
|
417
417
|
cirq/protocols/measurement_key_protocol.py,sha256=IDlCVbXe6gk5wfcoUisAoJuhlJnFXhYPcr6Of4xdaH4,13427
|
|
418
|
-
cirq/protocols/measurement_key_protocol_test.py,sha256=
|
|
419
|
-
cirq/protocols/mixture_protocol.py,sha256=
|
|
420
|
-
cirq/protocols/mixture_protocol_test.py,sha256=
|
|
421
|
-
cirq/protocols/mul_protocol.py,sha256=
|
|
422
|
-
cirq/protocols/mul_protocol_test.py,sha256=
|
|
423
|
-
cirq/protocols/pauli_expansion_protocol.py,sha256=
|
|
424
|
-
cirq/protocols/pauli_expansion_protocol_test.py,sha256=
|
|
425
|
-
cirq/protocols/phase_protocol.py,sha256=
|
|
426
|
-
cirq/protocols/phase_protocol_test.py,sha256=
|
|
418
|
+
cirq/protocols/measurement_key_protocol_test.py,sha256=s6X7rP0NA3RBUhz_Z6f1YiGGtpajbC4PYiq-LZ8_uQw,8813
|
|
419
|
+
cirq/protocols/mixture_protocol.py,sha256=vRQkmPqcmWNQSk3KLt3gKCpLJ8cPxnqGsN6lYUCQ_rU,6484
|
|
420
|
+
cirq/protocols/mixture_protocol_test.py,sha256=OtIRulKt6mTwLxLWzfGh6FTwc4CA5CiYoKSAW6bX1Is,3854
|
|
421
|
+
cirq/protocols/mul_protocol.py,sha256=iND491TUKnTedjSvZA3mAT8v_EqgWf3xxOh4otQ5WSY,2806
|
|
422
|
+
cirq/protocols/mul_protocol_test.py,sha256=J2jvKPr4Doy9Fx7RNCXbjvTkyBu1fcsxfRH-I6OzE34,2172
|
|
423
|
+
cirq/protocols/pauli_expansion_protocol.py,sha256=yht9_Gt5i5fyTxNHBj6m9eY3po8E83vJMb7EREbbh_o,3787
|
|
424
|
+
cirq/protocols/pauli_expansion_protocol_test.py,sha256=qKMMeJ7a8cT2xrNDdXtVabd9Hmcc5wLMOXo88_mkBM4,2780
|
|
425
|
+
cirq/protocols/phase_protocol.py,sha256=e_xsYDgs4K5poWcTBipziiz3Asuc7tGiVSBgD__Mooo,3648
|
|
426
|
+
cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
|
|
427
427
|
cirq/protocols/pow_protocol.py,sha256=ovwPBT-BEu1QrNm7S9Gm3n5TRUmyklOjJgwohVX5F2c,3300
|
|
428
|
-
cirq/protocols/pow_protocol_test.py,sha256=
|
|
428
|
+
cirq/protocols/pow_protocol_test.py,sha256=Mf5kn0qhgStR9fEjpRVQrlF96-BJaAAcOcCRAlyFhDs,1662
|
|
429
429
|
cirq/protocols/qasm.py,sha256=uZ3qeCK3HI7k0Aw8WzBmunIhVPj7qCpRvCLt1W6TMcg,7436
|
|
430
|
-
cirq/protocols/qasm_test.py,sha256=
|
|
431
|
-
cirq/protocols/qid_shape_protocol.py,sha256=
|
|
432
|
-
cirq/protocols/qid_shape_protocol_test.py,sha256=
|
|
430
|
+
cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
|
|
431
|
+
cirq/protocols/qid_shape_protocol.py,sha256=9tSspd1JomBnkUJcYKS0lPi-gV8TZkj5D8EHhn1tvj0,7726
|
|
432
|
+
cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
|
|
433
433
|
cirq/protocols/resolve_parameters.py,sha256=KAMkSoctbyl_S775T567_mL0Fb46upElSEzk5u_JA3E,7428
|
|
434
|
-
cirq/protocols/resolve_parameters_test.py,sha256=
|
|
435
|
-
cirq/protocols/trace_distance_bound.py,sha256=
|
|
436
|
-
cirq/protocols/trace_distance_bound_test.py,sha256=
|
|
437
|
-
cirq/protocols/unitary_protocol.py,sha256=
|
|
438
|
-
cirq/protocols/unitary_protocol_test.py,sha256=
|
|
434
|
+
cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
|
|
435
|
+
cirq/protocols/trace_distance_bound.py,sha256=3cEKsQS8wYnjyC5moCyPn3DR2EdJj-AAQaecueSNs98,4208
|
|
436
|
+
cirq/protocols/trace_distance_bound_test.py,sha256=0bI9uYttJj5eayM05kShPh9qkxeKG1egcZ9fXJPZWNU,1980
|
|
437
|
+
cirq/protocols/unitary_protocol.py,sha256=8It6dB1WWHDad1qpr6pDc9GB8IEqzBR4xFnvh6m7TKo,8188
|
|
438
|
+
cirq/protocols/unitary_protocol_test.py,sha256=_NFQRIIrojHunk6rl0LeWHknt82WLD7m7k4ymbYnOmg,10246
|
|
439
439
|
cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
|
|
440
440
|
cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
|
|
441
441
|
cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
|
|
@@ -858,7 +858,7 @@ cirq/protocols/json_test_data/pandas.Index.json_inward,sha256=KENE3PlSxmtMdnikuJ
|
|
|
858
858
|
cirq/protocols/json_test_data/pandas.Index.repr_inward,sha256=2YnQUO58RGFGvuVjmR57v25YIvPAnTgVYh0jeQYhXHo,52
|
|
859
859
|
cirq/protocols/json_test_data/pandas.MultiIndex.json,sha256=pF6YdRE3Qjhsf8CeGEZQvX5AWHAWaMNQF6c661Sqrxg,233
|
|
860
860
|
cirq/protocols/json_test_data/pandas.MultiIndex.repr,sha256=g4q-1zFWYG8T7IAI0anQ5aMHSFlGF2CJsAoYdZzbGa8,80
|
|
861
|
-
cirq/protocols/json_test_data/spec.py,sha256=
|
|
861
|
+
cirq/protocols/json_test_data/spec.py,sha256=DPG_98SJgYX2VZRNKGjm3EOiSppYpKbKIOBebVj1Elw,5651
|
|
862
862
|
cirq/protocols/json_test_data/sympy.Add.json,sha256=fVilRXllnMRnQcXuoU06IlwZOWK9Kwim1t6Q_s6z97g,1000
|
|
863
863
|
cirq/protocols/json_test_data/sympy.Add.repr,sha256=9L_05ZlcrFpo8QoExFAAO_kEEpc7SSqGyp0vudkRlsU,228
|
|
864
864
|
cirq/protocols/json_test_data/sympy.And.json,sha256=eaM07ihBPjZbn44gRIy6TbXeEwblF-QN32Jb1ATAQ5Q,178
|
|
@@ -904,88 +904,88 @@ cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPW
|
|
|
904
904
|
cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
|
|
905
905
|
cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
|
|
906
906
|
cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
|
|
907
|
-
cirq/qis/channels.py,sha256=
|
|
908
|
-
cirq/qis/channels_test.py,sha256=
|
|
907
|
+
cirq/qis/channels.py,sha256=yAEedYhgmzu-0mI2QZqH221m8p4d8lnKZBiR4XZp1Xc,12832
|
|
908
|
+
cirq/qis/channels_test.py,sha256=YuHrW-UeXn792u7XQcbhKPI7Ucqa6e5QUGfZv9uxuuk,14258
|
|
909
909
|
cirq/qis/clifford_tableau.py,sha256=jz5CS1lmwh1Adkq5lZ6qUmABGiebcyYUTTFqGf26H_A,26248
|
|
910
|
-
cirq/qis/clifford_tableau_test.py,sha256
|
|
911
|
-
cirq/qis/entropy.py,sha256=
|
|
912
|
-
cirq/qis/entropy_test.py,sha256=
|
|
910
|
+
cirq/qis/clifford_tableau_test.py,sha256=-DxgKr37dmpQqw8bbA3veXCTZ_-f6G_aVFUpvKZcRwY,18476
|
|
911
|
+
cirq/qis/entropy.py,sha256=HlaTUSmefysjqMjcAuKa4PtCpg0p0QyhaQxq8DGn0PA,4255
|
|
912
|
+
cirq/qis/entropy_test.py,sha256=PlgipJeqnHzG7rmL3g5llIHa9vA2b_X0ukyL38b3_Y4,1709
|
|
913
913
|
cirq/qis/measures.py,sha256=ymbCgIzKZ9o4nUOt6UYrbQe6lUUUgyKFe80fpcIXExg,12277
|
|
914
|
-
cirq/qis/measures_test.py,sha256=
|
|
915
|
-
cirq/qis/noise_utils.py,sha256=
|
|
916
|
-
cirq/qis/noise_utils_test.py,sha256=
|
|
914
|
+
cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
|
|
915
|
+
cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
|
|
916
|
+
cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
|
|
917
917
|
cirq/qis/quantum_state_representation.py,sha256=n9YiXnTnCp0SAP3RYosNl1XXA4kLvF1mcnZ-13ef_h8,3245
|
|
918
918
|
cirq/qis/states.py,sha256=Qi7ItwAl4Q_9ZDVS0KXAxEyvgUj-yAsvZg3pG0TIlKc,41910
|
|
919
|
-
cirq/qis/states_test.py,sha256=
|
|
919
|
+
cirq/qis/states_test.py,sha256=vTvZE0Y-WL7gD7g5gy0HendmrHfbh-qPZ6KsDJH7aAg,31849
|
|
920
920
|
cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
|
|
921
921
|
cirq/sim/classical_simulator.py,sha256=1Cm9tOZW4U1Jaj78slxX3pgiiHTE4kdBijwOWCq2O-s,9342
|
|
922
|
-
cirq/sim/classical_simulator_test.py,sha256=
|
|
922
|
+
cirq/sim/classical_simulator_test.py,sha256=aopFirhrKt1hy1bmWomXdKJ30zEpd0Cxug8b-myCmbI,12739
|
|
923
923
|
cirq/sim/density_matrix_simulation_state.py,sha256=5-p09Xq70pl2SthSFgtijfl2dN75rgZ1tpxlBlBQkV4,14040
|
|
924
|
-
cirq/sim/density_matrix_simulation_state_test.py,sha256=
|
|
924
|
+
cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
|
|
925
925
|
cirq/sim/density_matrix_simulator.py,sha256=cN-yd0I2PzCSy0ZyoG0seMxnxU92v9KGUBwtZXNfvEQ,17542
|
|
926
|
-
cirq/sim/density_matrix_simulator_test.py,sha256=
|
|
926
|
+
cirq/sim/density_matrix_simulator_test.py,sha256=gCUpVMudVpmzzS4lPVygXrQsqr7AIw7hhx9dilaZQCo,61385
|
|
927
927
|
cirq/sim/density_matrix_utils.py,sha256=g4TOPDO5DM0DE5LO_h7mx9prZLfJNcvkbnVs5D9PM4g,10305
|
|
928
|
-
cirq/sim/density_matrix_utils_test.py,sha256=
|
|
928
|
+
cirq/sim/density_matrix_utils_test.py,sha256=9UQO6pHnWOpTJ0JobeM1vmVJc1EIwS7zmM9y6MKdXg8,14549
|
|
929
929
|
cirq/sim/mux.py,sha256=dUbfoLP41PuYVeJiy5xifmuuImCUs4SskymYjJ_RjC8,12497
|
|
930
|
-
cirq/sim/mux_test.py,sha256=
|
|
930
|
+
cirq/sim/mux_test.py,sha256=VKwMk5r4iX3tNY-Af-pZwhUVF9qxq8yT03YxhV2DmME,13717
|
|
931
931
|
cirq/sim/simulation_product_state.py,sha256=oUJ9xjiwrjRNmldjBGts5bxn2g1tojj_rM1cS_1uvl4,7054
|
|
932
|
-
cirq/sim/simulation_product_state_test.py,sha256=
|
|
932
|
+
cirq/sim/simulation_product_state_test.py,sha256=yYCNQ17126Sia5Zz0ISHIC2rA4g6VQJcr8YVrDvlWm4,9112
|
|
933
933
|
cirq/sim/simulation_state.py,sha256=z-4s4WWO9L2zRZHpBsDvqaBsIZyOgT4uEp3bookXVSw,12653
|
|
934
934
|
cirq/sim/simulation_state_base.py,sha256=pi4M2h4H23rBGSLLzrxbjL6RvN17hP6zQYQg7Mj-Scg,4194
|
|
935
|
-
cirq/sim/simulation_state_test.py,sha256=
|
|
936
|
-
cirq/sim/simulation_utils.py,sha256=
|
|
937
|
-
cirq/sim/simulation_utils_test.py,sha256=
|
|
935
|
+
cirq/sim/simulation_state_test.py,sha256=wIoyeGPeUZNkKbfpo7GS6z7VcsKHIDamqImUZ5JJ4SY,7560
|
|
936
|
+
cirq/sim/simulation_utils.py,sha256=9--cBDL3_VltZj_vLVTCpnx0ec40LHY44ql0cQ3HFTI,2684
|
|
937
|
+
cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
|
|
938
938
|
cirq/sim/simulator.py,sha256=Cc_jkQp4IQQjB1jjqtC1I3Penr3SrYrL8dfjyCGg0K4,41899
|
|
939
939
|
cirq/sim/simulator_base.py,sha256=KPTuU1SgQqynZ5IPDY50hlgh--jPn5Wl_5WJiYtJhVU,18153
|
|
940
940
|
cirq/sim/simulator_base_test.py,sha256=U8HqxdUwKOpzVde74Zwdmazz_SJEiDV2bQVV-maoST4,14970
|
|
941
941
|
cirq/sim/simulator_test.py,sha256=8AYIC9aiwlm176nKnzw1SoZjVouMczoAUV5c1e7xNpU,18629
|
|
942
942
|
cirq/sim/sparse_simulator.py,sha256=omR3BS37J6RIDXXa6xcweRJ836tXOBPdoaEDVAS2oKs,12966
|
|
943
|
-
cirq/sim/sparse_simulator_test.py,sha256=
|
|
943
|
+
cirq/sim/sparse_simulator_test.py,sha256=iN2DQB6M8m-QXyrdmXAnD-i8YKNaQtvh7TpdcTyRQHg,53843
|
|
944
944
|
cirq/sim/state_vector.py,sha256=WyipINIrn17YrE9g09HG5yhTbIDJsZZhLkz6eBluePE,13453
|
|
945
945
|
cirq/sim/state_vector_simulation_state.py,sha256=X0nNcr7YxN_NbvKDgYF2wtnRqtumts_nz3cYcA8lifw,17584
|
|
946
|
-
cirq/sim/state_vector_simulation_state_test.py,sha256=
|
|
946
|
+
cirq/sim/state_vector_simulation_state_test.py,sha256=8KqVNxyCOS1ji_ZHUFsXlSkeJuPNFOIcQomIfoETczU,9993
|
|
947
947
|
cirq/sim/state_vector_simulator.py,sha256=6y9MGiBlhH_zykkEtu1UcnpFHjpVCAFV5m60u8g7svw,8218
|
|
948
|
-
cirq/sim/state_vector_simulator_test.py,sha256=
|
|
949
|
-
cirq/sim/state_vector_test.py,sha256=
|
|
948
|
+
cirq/sim/state_vector_simulator_test.py,sha256=u_ncoSDuA31BWOSWN6dWamt15CKE9rRFPw9cBMRs3WM,7900
|
|
949
|
+
cirq/sim/state_vector_test.py,sha256=y1A7bcA8TUeu_DpmgBsUcCn43bEvNxwYe8YWJCrCrXc,16623
|
|
950
950
|
cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
|
|
951
951
|
cirq/sim/clifford/clifford_simulator.py,sha256=zstXmvObhCelDKACqKNb-A-WTNTAMRgbF1om8MFMpyM,9859
|
|
952
|
-
cirq/sim/clifford/clifford_simulator_test.py,sha256=
|
|
952
|
+
cirq/sim/clifford/clifford_simulator_test.py,sha256=szpXWjuwgAN6O4DJ13MeF-Df3C2yZxqqjr32ve5eUpU,21418
|
|
953
953
|
cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=wuiiE9RSfZL0AlLwYEVe4tCQqCRuZ7QYosJY0jGHp9M,2188
|
|
954
|
-
cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=
|
|
954
|
+
cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=3HiZn8ekEC7EhF4AjNheSf-123QUHRgcakljlJw0Gho,3244
|
|
955
955
|
cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=yqYecfc-7TC9Rtks38OCIeAdBIehx6qfCFMGeIkZ1vc,3058
|
|
956
|
-
cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=
|
|
956
|
+
cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=KNWsT5MbwULzARrtLtAYzJpwv09Ld8uy0cu1DU4pMx0,3958
|
|
957
957
|
cirq/sim/clifford/stabilizer_sampler.py,sha256=DQ2kpMwo9xZnAZbHgHbYS3-s4IyRpXTt__qVqq-lepU,2566
|
|
958
|
-
cirq/sim/clifford/stabilizer_sampler_test.py,sha256=
|
|
958
|
+
cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
|
|
959
959
|
cirq/sim/clifford/stabilizer_simulation_state.py,sha256=MdcnqiB4V38b_rbpgtN5SNpQ0j5hVWBd-BiciWjMTds,6731
|
|
960
|
-
cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=
|
|
960
|
+
cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
|
|
961
961
|
cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=PlQVIvcg0myibqZZ0ziLWJXA0_y4ci7UcRAuoF4Dr7g,14167
|
|
962
|
-
cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=
|
|
962
|
+
cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=UuvgpwexGB5LzMfaa3Gws2vHhC9pyHrqW_gDtx_pAYM,3201
|
|
963
963
|
cirq/study/__init__.py,sha256=OyJhZjBiEkNbtSuSZaOwHGwwnOIGgnn-W8ec0xHhHBI,1647
|
|
964
964
|
cirq/study/flatten_expressions.py,sha256=j-aqhvHbAW764M7VVKB_AI_nLeqSWFs6HNCIic_9XCg,15607
|
|
965
|
-
cirq/study/flatten_expressions_test.py,sha256=
|
|
965
|
+
cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f90-2uNj1c,6202
|
|
966
966
|
cirq/study/resolver.py,sha256=EUi1Z86O_bozgJZIXWmxgILeHawuiJ0IQRQ3jhhN4ss,11801
|
|
967
|
-
cirq/study/resolver_test.py,sha256=
|
|
967
|
+
cirq/study/resolver_test.py,sha256=LY1h8RCPY4d_8O5hprRcIf3HFhzODQrMbUrmwmt1fbM,10727
|
|
968
968
|
cirq/study/result.py,sha256=U4bsSZ0D78p4DJOkcpiJk-Ow0U4pi90Z-sPXSv6x0bI,19314
|
|
969
|
-
cirq/study/result_test.py,sha256=
|
|
970
|
-
cirq/study/sweepable.py,sha256=
|
|
971
|
-
cirq/study/sweepable_test.py,sha256=
|
|
969
|
+
cirq/study/result_test.py,sha256=Safhg93E1x7NA--bxvkMwOnTPAlT0VkfF6hdsEKvhEM,15627
|
|
970
|
+
cirq/study/sweepable.py,sha256=HYG-8mDxUdeGLaQmBWGdcqg11xBMmQ5xlAtHv94PO_E,4388
|
|
971
|
+
cirq/study/sweepable_test.py,sha256=gMKkCoy8JxaCDeMTiDLdmcbBrioWs-teYOnqrri_2rI,5539
|
|
972
972
|
cirq/study/sweeps.py,sha256=FB5qqkf6M_AAc0jw-PdvOMuq_gt5h5iF3m4ZtZDMILU,21759
|
|
973
|
-
cirq/study/sweeps_test.py,sha256=
|
|
973
|
+
cirq/study/sweeps_test.py,sha256=o__dMwDQZl4R0KpK6MwqKHowWBEqopOhAfLk6BYB1V4,16336
|
|
974
974
|
cirq/testing/__init__.py,sha256=m_HUdHcJ3HcKpGQBKCwZ6E6QSkKpIN-dUGr4e75o4tY,6217
|
|
975
|
-
cirq/testing/circuit_compare.py,sha256=
|
|
976
|
-
cirq/testing/circuit_compare_test.py,sha256=
|
|
977
|
-
cirq/testing/consistent_act_on.py,sha256=
|
|
978
|
-
cirq/testing/consistent_act_on_test.py,sha256=
|
|
979
|
-
cirq/testing/consistent_channels.py,sha256=
|
|
980
|
-
cirq/testing/consistent_channels_test.py,sha256=
|
|
981
|
-
cirq/testing/consistent_controlled_gate_op.py,sha256=
|
|
975
|
+
cirq/testing/circuit_compare.py,sha256=cuq3WeLNotM4Gj1dJ_v4qjI2-cUZQk8frGBlilyHkk0,19211
|
|
976
|
+
cirq/testing/circuit_compare_test.py,sha256=4ov58dOiez9HSQUJDP5hW1Li2tL75Gkevts2PiyyfSU,19738
|
|
977
|
+
cirq/testing/consistent_act_on.py,sha256=ooD1Dgt3BQ5CrylPFCf9lQ3yQDLk2ZCTdOTK6eS7Mt0,7773
|
|
978
|
+
cirq/testing/consistent_act_on_test.py,sha256=UR-1RMhF88wlG3cFnbR0i8khrWFEuWg75WF5lnoXWWM,3571
|
|
979
|
+
cirq/testing/consistent_channels.py,sha256=dieJ_yjx20p8_UNBzJJHv3vquP5NmuIfGikOPOuM14Y,1773
|
|
980
|
+
cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
|
|
981
|
+
cirq/testing/consistent_controlled_gate_op.py,sha256=r3xPx17jnotk5kUlYOWSBDdux2SlJsQCeNCZ5Xcdl40,2712
|
|
982
982
|
cirq/testing/consistent_controlled_gate_op_test.py,sha256=E8YLn_gsNSyKf5R_S2-Guky0oui6Th8QQnRxa4pJgfs,3331
|
|
983
|
-
cirq/testing/consistent_decomposition.py,sha256=
|
|
984
|
-
cirq/testing/consistent_decomposition_test.py,sha256=
|
|
985
|
-
cirq/testing/consistent_pauli_expansion.py,sha256=
|
|
986
|
-
cirq/testing/consistent_pauli_expansion_test.py,sha256=
|
|
987
|
-
cirq/testing/consistent_phase_by.py,sha256=
|
|
988
|
-
cirq/testing/consistent_phase_by_test.py,sha256=
|
|
983
|
+
cirq/testing/consistent_decomposition.py,sha256=AawvIbU38fbRfopmB25beOqnygW319G4VK0l9jp7rfw,3740
|
|
984
|
+
cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
|
|
985
|
+
cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
|
|
986
|
+
cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
|
|
987
|
+
cirq/testing/consistent_phase_by.py,sha256=HCh17ryX_N7Sw-YhUOVX11ceOjSeli9lI7tayc814oE,2121
|
|
988
|
+
cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
|
|
989
989
|
cirq/testing/consistent_protocols.py,sha256=xf9F41rUENCj6wARpmhWG_-xg0kH5P2tfxwNNAiH2b4,7754
|
|
990
990
|
cirq/testing/consistent_protocols_test.py,sha256=1lizbN-A19lY0Ii9T2ulySbM4SMAp_rl2RrGC2sT5vA,10003
|
|
991
991
|
cirq/testing/consistent_qasm.py,sha256=oXd20Hfkjkdl9n5i4tgxIwuE5wx1-2GF8XHXj8uCpG8,5041
|
|
@@ -1220,8 +1220,8 @@ cirq/work/sampler.py,sha256=b7O3B8bc77KQb8ReLx7qeF8owP1Qwb5_I-RwC6-M_C8,19118
|
|
|
1220
1220
|
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1221
1221
|
cirq/work/zeros_sampler.py,sha256=vHCfqkXmUcPkaDuKHlY-UQ71dUHVroEtm_XW51mZpHs,2390
|
|
1222
1222
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1223
|
-
cirq_core-1.6.0.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1226
|
-
cirq_core-1.6.0.
|
|
1227
|
-
cirq_core-1.6.0.
|
|
1223
|
+
cirq_core-1.6.0.dev20250519190234.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1224
|
+
cirq_core-1.6.0.dev20250519190234.dist-info/METADATA,sha256=vfwWlV8Gjs37YskRBGuezaMTppV7jXkyoaYMuFcjDNQ,4857
|
|
1225
|
+
cirq_core-1.6.0.dev20250519190234.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
1226
|
+
cirq_core-1.6.0.dev20250519190234.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1227
|
+
cirq_core-1.6.0.dev20250519190234.dist-info/RECORD,,
|