├── .azure ├── lint_docs-linux.yml ├── test-linux.yml ├── test-macos.yml └── test-windows.yml ├── .binder ├── environment.yml └── postBuild ├── .cargo └── config.toml ├── .clang-format ├── .clippy.toml ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yaml │ ├── FEATURE_REQUEST.yaml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── backport.yml │ ├── coverage.yml │ ├── ctests.yml │ ├── docs_deploy.yml │ ├── miri.yml │ ├── neko.yml │ ├── qpy.yml │ ├── randomized_tests.yml │ ├── slow.yml │ ├── tests.yml │ ├── wheels-build.yml │ ├── wheels-pr.yml │ └── wheels.yml ├── .gitignore ├── .local-spellings ├── .mailmap ├── .mergify.yml ├── .stestr.conf ├── CITATION.bib ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── DEPRECATION.md ├── LICENSE.txt ├── MAINTAINING.md ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── asv.conf.json ├── azure-pipelines.yml ├── constraints.txt ├── crates ├── README.md ├── accelerate │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── barrier_before_final_measurement.rs │ │ ├── basis │ │ ├── basis_translator │ │ │ ├── basis_search.rs │ │ │ ├── compose_transforms.rs │ │ │ └── mod.rs │ │ └── mod.rs │ │ ├── check_map.rs │ │ ├── circuit_duration.rs │ │ ├── circuit_library │ │ ├── blocks.rs │ │ ├── entanglement.rs │ │ ├── iqp.rs │ │ ├── mod.rs │ │ ├── multi_local.rs │ │ ├── parameter_ledger.rs │ │ ├── pauli_evolution.rs │ │ ├── pauli_feature_map.rs │ │ └── quantum_volume.rs │ │ ├── commutation_analysis.rs │ │ ├── commutation_cancellation.rs │ │ ├── commutation_checker.rs │ │ ├── consolidate_blocks.rs │ │ ├── convert_2q_block_matrix.rs │ │ ├── dense_layout.rs │ │ ├── elide_permutations.rs │ │ ├── equivalence.rs │ │ ├── error_map.rs │ │ ├── euler_one_qubit_decomposer.rs │ │ ├── filter_op_nodes.rs │ │ ├── gate_direction.rs │ │ ├── gate_metrics.rs │ │ ├── gates_in_basis.rs │ │ ├── high_level_synthesis.rs │ │ ├── inverse_cancellation.rs │ │ ├── isometry.rs │ │ ├── lib.rs │ │ ├── nlayout.rs │ │ ├── optimize_1q_gates.rs │ │ ├── pauli_exp_val.rs │ │ ├── quantum_info │ │ ├── mod.rs │ │ └── versor_u2.rs │ │ ├── rayon_ext.rs │ │ ├── remove_diagonal_gates_before_measure.rs │ │ ├── remove_identity_equiv.rs │ │ ├── results │ │ ├── converters.rs │ │ ├── marginalization.rs │ │ └── mod.rs │ │ ├── sabre │ │ ├── heuristic.rs │ │ ├── layer.rs │ │ ├── layout.rs │ │ ├── mod.rs │ │ ├── neighbor_table.rs │ │ ├── route.rs │ │ ├── sabre_dag.rs │ │ └── swap_map.rs │ │ ├── sampled_exp_val.rs │ │ ├── sparse_observable │ │ ├── lookup.rs │ │ └── mod.rs │ │ ├── sparse_pauli_op.rs │ │ ├── split_2q_unitaries.rs │ │ ├── star_prerouting.rs │ │ ├── synthesis │ │ ├── clifford │ │ │ ├── bm_synthesis.rs │ │ │ ├── greedy_synthesis.rs │ │ │ ├── mod.rs │ │ │ ├── random_clifford.rs │ │ │ └── utils.rs │ │ ├── evolution │ │ │ ├── mod.rs │ │ │ └── pauli_network.rs │ │ ├── linear │ │ │ ├── lnn.rs │ │ │ ├── mod.rs │ │ │ ├── pmh.rs │ │ │ └── utils.rs │ │ ├── linear_phase │ │ │ ├── cx_cz_depth_lnn.rs │ │ │ ├── cz_depth_lnn.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── multi_controlled │ │ │ ├── mcmt.rs │ │ │ └── mod.rs │ │ └── permutation │ │ │ ├── mod.rs │ │ │ └── utils.rs │ │ ├── target_transpiler │ │ ├── errors.rs │ │ ├── instruction_properties.rs │ │ ├── mod.rs │ │ └── qargs.rs │ │ ├── test.rs │ │ ├── twirling.rs │ │ ├── two_qubit_decompose.rs │ │ ├── uc_gate.rs │ │ ├── unitary_compose.rs │ │ ├── unitary_synthesis.rs │ │ └── vf2_layout.rs ├── cext │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── cbindgen.toml │ └── src │ │ ├── circuit.rs │ │ ├── exit_codes.rs │ │ ├── lib.rs │ │ ├── pointers.rs │ │ └── sparse_observable.rs ├── circuit │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── bit.rs │ │ ├── bit_locator.rs │ │ ├── circuit_data.rs │ │ ├── circuit_instruction.rs │ │ ├── classical │ │ ├── expr │ │ │ ├── binary.rs │ │ │ ├── cast.rs │ │ │ ├── expr.rs │ │ │ ├── index.rs │ │ │ ├── mod.rs │ │ │ ├── stretch.rs │ │ │ ├── unary.rs │ │ │ ├── value.rs │ │ │ └── var.rs │ │ ├── mod.rs │ │ └── types.rs │ │ ├── converters.rs │ │ ├── dag_circuit.rs │ │ ├── dag_node.rs │ │ ├── dot_utils.rs │ │ ├── duration.rs │ │ ├── error.rs │ │ ├── gate_matrix.rs │ │ ├── imports.rs │ │ ├── interner.rs │ │ ├── lib.rs │ │ ├── object_registry.rs │ │ ├── operations.rs │ │ ├── packed_instruction.rs │ │ ├── parameter_table.rs │ │ ├── register_data.rs │ │ ├── rustworkx_core_vnext.rs │ │ ├── slice.rs │ │ └── util.rs ├── pyext │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs ├── qasm2 │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── bytecode.rs │ │ ├── error.rs │ │ ├── expr.rs │ │ ├── lex.rs │ │ ├── lib.rs │ │ └── parse.rs └── qasm3 │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── build.rs │ ├── circuit.rs │ ├── error.rs │ ├── expr.rs │ └── lib.rs ├── docs ├── Doxyfile ├── Makefile ├── _templates │ └── autosummary │ │ ├── class.rst │ │ └── class_no_inherited_members.rst ├── apidoc │ ├── circuit.rst │ ├── circuit_classical.rst │ ├── circuit_library.rst │ ├── circuit_random.rst │ ├── circuit_singleton.rst │ ├── compiler.rst │ ├── converters.rst │ ├── dagcircuit.rst │ ├── exceptions.rst │ ├── index.rst │ ├── passmanager.rst │ ├── primitives.rst │ ├── providers.rst │ ├── providers_basic_provider.rst │ ├── providers_fake_provider.rst │ ├── qasm2.rst │ ├── qasm3.rst │ ├── qiskit.circuit.QuantumCircuit.rst │ ├── qiskit.synthesis.unitary.aqc.rst │ ├── qpy.rst │ ├── quantum_info.rst │ ├── result.rst │ ├── synthesis.rst │ ├── transpiler.rst │ ├── transpiler_passes.rst │ ├── transpiler_plugins.rst │ ├── transpiler_preset.rst │ ├── transpiler_synthesis_plugins.rst │ ├── utils.rst │ └── visualization.rst ├── cdoc │ ├── index.h │ ├── index.rst │ ├── qk-bit-term.rst │ ├── qk-exit-code.rst │ ├── qk-obs-term.rst │ └── qk-obs.rst ├── conf.py ├── index.rst ├── release_notes.rst └── source_images │ ├── mapping.png │ └── transpiling_core_steps.png ├── pyproject.toml ├── qiskit ├── VERSION.txt ├── __init__.py ├── _numpy_compat.py ├── circuit │ ├── __init__.py │ ├── _add_control.py │ ├── _classical_resource_map.py │ ├── _standard_gates_commutations.py │ ├── _utils.py │ ├── annotated_operation.py │ ├── barrier.py │ ├── classical │ │ ├── __init__.py │ │ ├── expr │ │ │ ├── __init__.py │ │ │ ├── constructors.py │ │ │ ├── expr.py │ │ │ └── visitors.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── ordering.py │ │ │ └── types.py │ ├── commutation_checker.py │ ├── commutation_library.py │ ├── controlflow │ │ ├── __init__.py │ │ ├── _builder_utils.py │ │ ├── box.py │ │ ├── break_loop.py │ │ ├── builder.py │ │ ├── continue_loop.py │ │ ├── control_flow.py │ │ ├── for_loop.py │ │ ├── if_else.py │ │ ├── switch_case.py │ │ └── while_loop.py │ ├── controlledgate.py │ ├── delay.py │ ├── duration.py │ ├── equivalence.py │ ├── equivalence_library.py │ ├── exceptions.py │ ├── gate.py │ ├── instruction.py │ ├── instructionset.py │ ├── library │ │ ├── __init__.py │ │ ├── arithmetic │ │ │ ├── __init__.py │ │ │ ├── adders │ │ │ │ ├── __init__.py │ │ │ │ ├── adder.py │ │ │ │ ├── cdkm_ripple_carry_adder.py │ │ │ │ ├── draper_qft_adder.py │ │ │ │ └── vbe_ripple_carry_adder.py │ │ │ ├── exact_reciprocal.py │ │ │ ├── functional_pauli_rotations.py │ │ │ ├── integer_comparator.py │ │ │ ├── linear_amplitude_function.py │ │ │ ├── linear_pauli_rotations.py │ │ │ ├── multipliers │ │ │ │ ├── __init__.py │ │ │ │ ├── hrs_cumulative_multiplier.py │ │ │ │ ├── multiplier.py │ │ │ │ └── rg_qft_multiplier.py │ │ │ ├── piecewise_chebyshev.py │ │ │ ├── piecewise_linear_pauli_rotations.py │ │ │ ├── piecewise_polynomial_pauli_rotations.py │ │ │ ├── polynomial_pauli_rotations.py │ │ │ ├── quadratic_form.py │ │ │ └── weighted_adder.py │ │ ├── basis_change │ │ │ ├── __init__.py │ │ │ └── qft.py │ │ ├── bit_flip_oracle.py │ │ ├── blueprintcircuit.py │ │ ├── boolean_logic │ │ │ ├── __init__.py │ │ │ ├── inner_product.py │ │ │ ├── quantum_and.py │ │ │ ├── quantum_or.py │ │ │ └── quantum_xor.py │ │ ├── data_preparation │ │ │ ├── __init__.py │ │ │ ├── _z_feature_map.py │ │ │ ├── _zz_feature_map.py │ │ │ ├── initializer.py │ │ │ ├── pauli_feature_map.py │ │ │ └── state_preparation.py │ │ ├── fourier_checking.py │ │ ├── generalized_gates │ │ │ ├── __init__.py │ │ │ ├── diagonal.py │ │ │ ├── gms.py │ │ │ ├── gr.py │ │ │ ├── isometry.py │ │ │ ├── linear_function.py │ │ │ ├── mcg_up_to_diagonal.py │ │ │ ├── mcmt.py │ │ │ ├── pauli.py │ │ │ ├── permutation.py │ │ │ ├── rv.py │ │ │ ├── uc.py │ │ │ ├── uc_pauli_rot.py │ │ │ ├── ucrx.py │ │ │ ├── ucry.py │ │ │ ├── ucrz.py │ │ │ └── unitary.py │ │ ├── graph_state.py │ │ ├── grover_operator.py │ │ ├── hamiltonian_gate.py │ │ ├── hidden_linear_function.py │ │ ├── iqp.py │ │ ├── n_local │ │ │ ├── __init__.py │ │ │ ├── efficient_su2.py │ │ │ ├── evolved_operator_ansatz.py │ │ │ ├── excitation_preserving.py │ │ │ ├── n_local.py │ │ │ ├── pauli_two_design.py │ │ │ ├── qaoa_ansatz.py │ │ │ ├── real_amplitudes.py │ │ │ └── two_local.py │ │ ├── overlap.py │ │ ├── pauli_evolution.py │ │ ├── phase_estimation.py │ │ ├── phase_oracle.py │ │ ├── quantum_volume.py │ │ ├── standard_gates │ │ │ ├── __init__.py │ │ │ ├── dcx.py │ │ │ ├── ecr.py │ │ │ ├── equivalence_library.py │ │ │ ├── global_phase.py │ │ │ ├── h.py │ │ │ ├── i.py │ │ │ ├── iswap.py │ │ │ ├── p.py │ │ │ ├── r.py │ │ │ ├── rx.py │ │ │ ├── rxx.py │ │ │ ├── ry.py │ │ │ ├── ryy.py │ │ │ ├── rz.py │ │ │ ├── rzx.py │ │ │ ├── rzz.py │ │ │ ├── s.py │ │ │ ├── swap.py │ │ │ ├── sx.py │ │ │ ├── t.py │ │ │ ├── u.py │ │ │ ├── u1.py │ │ │ ├── u2.py │ │ │ ├── u3.py │ │ │ ├── x.py │ │ │ ├── xx_minus_yy.py │ │ │ ├── xx_plus_yy.py │ │ │ ├── y.py │ │ │ └── z.py │ │ └── templates │ │ │ ├── __init__.py │ │ │ ├── clifford │ │ │ ├── __init__.py │ │ │ ├── clifford_2_1.py │ │ │ ├── clifford_2_2.py │ │ │ ├── clifford_2_3.py │ │ │ ├── clifford_2_4.py │ │ │ ├── clifford_3_1.py │ │ │ ├── clifford_4_1.py │ │ │ ├── clifford_4_2.py │ │ │ ├── clifford_4_3.py │ │ │ ├── clifford_4_4.py │ │ │ ├── clifford_5_1.py │ │ │ ├── clifford_6_1.py │ │ │ ├── clifford_6_2.py │ │ │ ├── clifford_6_3.py │ │ │ ├── clifford_6_4.py │ │ │ ├── clifford_6_5.py │ │ │ ├── clifford_8_1.py │ │ │ ├── clifford_8_2.py │ │ │ └── clifford_8_3.py │ │ │ ├── nct │ │ │ ├── __init__.py │ │ │ ├── template_nct_2a_1.py │ │ │ ├── template_nct_2a_2.py │ │ │ ├── template_nct_2a_3.py │ │ │ ├── template_nct_4a_1.py │ │ │ ├── template_nct_4a_2.py │ │ │ ├── template_nct_4a_3.py │ │ │ ├── template_nct_4b_1.py │ │ │ ├── template_nct_4b_2.py │ │ │ ├── template_nct_5a_1.py │ │ │ ├── template_nct_5a_2.py │ │ │ ├── template_nct_5a_3.py │ │ │ ├── template_nct_5a_4.py │ │ │ ├── template_nct_6a_1.py │ │ │ ├── template_nct_6a_2.py │ │ │ ├── template_nct_6a_3.py │ │ │ ├── template_nct_6a_4.py │ │ │ ├── template_nct_6b_1.py │ │ │ ├── template_nct_6b_2.py │ │ │ ├── template_nct_6c_1.py │ │ │ ├── template_nct_7a_1.py │ │ │ ├── template_nct_7b_1.py │ │ │ ├── template_nct_7c_1.py │ │ │ ├── template_nct_7d_1.py │ │ │ ├── template_nct_7e_1.py │ │ │ ├── template_nct_9a_1.py │ │ │ ├── template_nct_9c_1.py │ │ │ ├── template_nct_9c_10.py │ │ │ ├── template_nct_9c_11.py │ │ │ ├── template_nct_9c_12.py │ │ │ ├── template_nct_9c_2.py │ │ │ ├── template_nct_9c_3.py │ │ │ ├── template_nct_9c_4.py │ │ │ ├── template_nct_9c_5.py │ │ │ ├── template_nct_9c_6.py │ │ │ ├── template_nct_9c_7.py │ │ │ ├── template_nct_9c_8.py │ │ │ ├── template_nct_9c_9.py │ │ │ ├── template_nct_9d_1.py │ │ │ ├── template_nct_9d_10.py │ │ │ ├── template_nct_9d_2.py │ │ │ ├── template_nct_9d_3.py │ │ │ ├── template_nct_9d_4.py │ │ │ ├── template_nct_9d_5.py │ │ │ ├── template_nct_9d_6.py │ │ │ ├── template_nct_9d_7.py │ │ │ ├── template_nct_9d_8.py │ │ │ └── template_nct_9d_9.py │ │ │ └── rzx │ │ │ ├── __init__.py │ │ │ ├── rzx_cy.py │ │ │ ├── rzx_xz.py │ │ │ ├── rzx_yz.py │ │ │ ├── rzx_zz1.py │ │ │ ├── rzx_zz2.py │ │ │ └── rzx_zz3.py │ ├── measure.py │ ├── operation.py │ ├── parameter.py │ ├── parameterexpression.py │ ├── parametertable.py │ ├── parametervector.py │ ├── quantumcircuit.py │ ├── quantumcircuitdata.py │ ├── random │ │ ├── __init__.py │ │ └── utils.py │ ├── reset.py │ ├── singleton.py │ ├── store.py │ ├── tools │ │ ├── __init__.py │ │ └── pi_check.py │ └── twirling.py ├── compiler │ ├── __init__.py │ └── transpiler.py ├── converters │ ├── __init__.py │ ├── circuit_to_dag.py │ ├── circuit_to_dagdependency.py │ ├── circuit_to_dagdependency_v2.py │ ├── circuit_to_gate.py │ ├── circuit_to_instruction.py │ ├── dag_to_circuit.py │ ├── dag_to_dagdependency.py │ ├── dag_to_dagdependency_v2.py │ ├── dagdependency_to_circuit.py │ └── dagdependency_to_dag.py ├── dagcircuit │ ├── __init__.py │ ├── collect_blocks.py │ ├── dagcircuit.py │ ├── dagdependency.py │ ├── dagdependency_v2.py │ ├── dagdepnode.py │ ├── dagnode.py │ └── exceptions.py ├── exceptions.py ├── passmanager │ ├── __init__.py │ ├── base_tasks.py │ ├── compilation_status.py │ ├── exceptions.py │ ├── flow_controllers.py │ └── passmanager.py ├── primitives │ ├── __init__.py │ ├── backend_estimator_v2.py │ ├── backend_sampler_v2.py │ ├── base │ │ ├── __init__.py │ │ ├── base_estimator.py │ │ ├── base_primitive_job.py │ │ ├── base_primitive_v1.py │ │ ├── base_result_v1.py │ │ ├── base_sampler.py │ │ ├── estimator_result_v1.py │ │ ├── sampler_result_v1.py │ │ └── validation_v1.py │ ├── containers │ │ ├── __init__.py │ │ ├── bindings_array.py │ │ ├── bit_array.py │ │ ├── data_bin.py │ │ ├── estimator_pub.py │ │ ├── object_array.py │ │ ├── observables_array.py │ │ ├── primitive_result.py │ │ ├── pub_result.py │ │ ├── sampler_pub.py │ │ ├── sampler_pub_result.py │ │ └── shape.py │ ├── primitive_job.py │ ├── statevector_estimator.py │ ├── statevector_sampler.py │ └── utils.py ├── providers │ ├── __init__.py │ ├── backend.py │ ├── basic_provider │ │ ├── __init__.py │ │ ├── basic_provider.py │ │ ├── basic_provider_job.py │ │ ├── basic_provider_tools.py │ │ ├── basic_simulator.py │ │ └── exceptions.py │ ├── exceptions.py │ ├── fake_provider │ │ ├── __init__.py │ │ ├── generic_backend_v2.py │ │ └── utils │ │ │ └── __init__.py │ ├── job.py │ ├── jobstatus.py │ ├── options.py │ └── providerutils.py ├── qasm │ └── libs │ │ ├── dummy │ │ └── stdgates.inc │ │ ├── qelib1.inc │ │ └── stdgates.inc ├── qasm2 │ ├── __init__.py │ ├── exceptions.py │ ├── export.py │ └── parse.py ├── qasm3 │ ├── __init__.py │ ├── ast.py │ ├── exceptions.py │ ├── experimental.py │ ├── exporter.py │ └── printer.py ├── qpy │ ├── __init__.py │ ├── binary_io │ │ ├── __init__.py │ │ ├── circuits.py │ │ ├── parse_sympy_repr.py │ │ ├── schedules.py │ │ └── value.py │ ├── common.py │ ├── exceptions.py │ ├── formats.py │ ├── interface.py │ └── type_keys.py ├── quantum_info │ ├── __init__.py │ ├── analysis │ │ ├── __init__.py │ │ ├── average.py │ │ ├── distance.py │ │ ├── make_observable.py │ │ └── z2_symmetries.py │ ├── operators │ │ ├── __init__.py │ │ ├── base_operator.py │ │ ├── channel │ │ │ ├── __init__.py │ │ │ ├── chi.py │ │ │ ├── choi.py │ │ │ ├── kraus.py │ │ │ ├── ptm.py │ │ │ ├── quantum_channel.py │ │ │ ├── stinespring.py │ │ │ ├── superop.py │ │ │ └── transformations.py │ │ ├── custom_iterator.py │ │ ├── dihedral │ │ │ ├── __init__.py │ │ │ ├── dihedral.py │ │ │ ├── dihedral_circuits.py │ │ │ ├── polynomial.py │ │ │ └── random.py │ │ ├── linear_op.py │ │ ├── measures.py │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ ├── adjoint.py │ │ │ ├── group.py │ │ │ ├── linear.py │ │ │ ├── multiply.py │ │ │ └── tolerances.py │ │ ├── op_shape.py │ │ ├── operator.py │ │ ├── operator_utils.py │ │ ├── predicates.py │ │ ├── random.py │ │ ├── scalar_op.py │ │ ├── symplectic │ │ │ ├── __init__.py │ │ │ ├── base_pauli.py │ │ │ ├── clifford.py │ │ │ ├── clifford_circuits.py │ │ │ ├── pauli.py │ │ │ ├── pauli_list.py │ │ │ ├── pauli_utils.py │ │ │ ├── random.py │ │ │ └── sparse_pauli_op.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── anti_commutator.py │ │ │ ├── commutator.py │ │ │ └── double_commutator.py │ ├── quaternion.py │ ├── random.py │ └── states │ │ ├── __init__.py │ │ ├── densitymatrix.py │ │ ├── measures.py │ │ ├── quantum_state.py │ │ ├── random.py │ │ ├── stabilizerstate.py │ │ ├── statevector.py │ │ └── utils.py ├── result │ ├── __init__.py │ ├── counts.py │ ├── distributions │ │ ├── __init__.py │ │ ├── probability.py │ │ └── quasi.py │ ├── exceptions.py │ ├── models.py │ ├── postprocess.py │ ├── result.py │ ├── sampled_expval.py │ └── utils.py ├── synthesis │ ├── __init__.py │ ├── arithmetic │ │ ├── __init__.py │ │ ├── adders │ │ │ ├── __init__.py │ │ │ ├── cdkm_ripple_carry_adder.py │ │ │ ├── draper_qft_adder.py │ │ │ └── vbe_ripple_carry_adder.py │ │ ├── comparators │ │ │ ├── __init__.py │ │ │ ├── compare_2s.py │ │ │ └── compare_greedy.py │ │ ├── multipliers │ │ │ ├── __init__.py │ │ │ ├── hrs_cumulative_multiplier.py │ │ │ └── rg_qft_multiplier.py │ │ └── weighted_sum.py │ ├── boolean │ │ ├── __init__.py │ │ ├── boolean_expression.py │ │ ├── boolean_expression_synth.py │ │ └── boolean_expression_visitor.py │ ├── clifford │ │ ├── __init__.py │ │ ├── clifford_decompose_ag.py │ │ ├── clifford_decompose_bm.py │ │ ├── clifford_decompose_full.py │ │ ├── clifford_decompose_greedy.py │ │ └── clifford_decompose_layers.py │ ├── cnotdihedral │ │ ├── __init__.py │ │ ├── cnotdihedral_decompose_full.py │ │ ├── cnotdihedral_decompose_general.py │ │ └── cnotdihedral_decompose_two_qubits.py │ ├── discrete_basis │ │ ├── __init__.py │ │ ├── commutator_decompose.py │ │ ├── gate_sequence.py │ │ ├── generate_basis_approximations.py │ │ └── solovay_kitaev.py │ ├── evolution │ │ ├── __init__.py │ │ ├── evolution_synthesis.py │ │ ├── lie_trotter.py │ │ ├── matrix_synthesis.py │ │ ├── pauli_network.py │ │ ├── product_formula.py │ │ ├── qdrift.py │ │ └── suzuki_trotter.py │ ├── linear │ │ ├── __init__.py │ │ ├── cnot_synth.py │ │ ├── linear_circuits_utils.py │ │ ├── linear_depth_lnn.py │ │ └── linear_matrix_utils.py │ ├── linear_phase │ │ ├── __init__.py │ │ ├── cnot_phase_synth.py │ │ ├── cx_cz_depth_lnn.py │ │ └── cz_depth_lnn.py │ ├── multi_controlled │ │ ├── __init__.py │ │ ├── mcmt_vchain.py │ │ ├── mcx_synthesis.py │ │ └── multi_control_rotation_gates.py │ ├── one_qubit │ │ ├── __init__.py │ │ └── one_qubit_decompose.py │ ├── permutation │ │ ├── __init__.py │ │ ├── permutation_full.py │ │ ├── permutation_lnn.py │ │ ├── permutation_reverse_lnn.py │ │ └── permutation_utils.py │ ├── qft │ │ ├── __init__.py │ │ ├── qft_decompose_full.py │ │ └── qft_decompose_lnn.py │ ├── stabilizer │ │ ├── __init__.py │ │ ├── stabilizer_circuit.py │ │ └── stabilizer_decompose.py │ ├── two_qubit │ │ ├── __init__.py │ │ ├── local_invariance.py │ │ ├── two_qubit_decompose.py │ │ └── xx_decompose │ │ │ ├── __init__.py │ │ │ ├── circuits.py │ │ │ ├── decomposer.py │ │ │ ├── embodiments.py │ │ │ ├── paths.py │ │ │ ├── polytopes.py │ │ │ ├── utilities.py │ │ │ └── weyl.py │ └── unitary │ │ ├── __init__.py │ │ ├── aqc │ │ ├── __init__.py │ │ ├── approximate.py │ │ ├── aqc.py │ │ ├── cnot_structures.py │ │ ├── cnot_unit_circuit.py │ │ ├── cnot_unit_objective.py │ │ ├── elementary_operations.py │ │ └── fast_gradient │ │ │ ├── __init__.py │ │ │ ├── fast_grad_utils.py │ │ │ ├── fast_gradient.py │ │ │ ├── layer.py │ │ │ └── pmatrix.py │ │ └── qsd.py ├── transpiler │ ├── __init__.py │ ├── basepasses.py │ ├── coupling.py │ ├── exceptions.py │ ├── instruction_durations.py │ ├── layout.py │ ├── passes │ │ ├── __init__.py │ │ ├── analysis │ │ │ ├── __init__.py │ │ │ ├── count_ops.py │ │ │ ├── count_ops_longest_path.py │ │ │ ├── dag_longest_path.py │ │ │ ├── depth.py │ │ │ ├── num_qubits.py │ │ │ ├── num_tensor_factors.py │ │ │ ├── resource_estimation.py │ │ │ ├── size.py │ │ │ └── width.py │ │ ├── basis │ │ │ ├── __init__.py │ │ │ ├── basis_translator.py │ │ │ ├── decompose.py │ │ │ ├── translate_parameterized.py │ │ │ ├── unroll_3q_or_more.py │ │ │ └── unroll_custom_definitions.py │ │ ├── layout │ │ │ ├── __init__.py │ │ │ ├── _csp_custom_solver.py │ │ │ ├── apply_layout.py │ │ │ ├── csp_layout.py │ │ │ ├── dense_layout.py │ │ │ ├── disjoint_utils.py │ │ │ ├── enlarge_with_ancilla.py │ │ │ ├── full_ancilla_allocation.py │ │ │ ├── layout_2q_distance.py │ │ │ ├── sabre_layout.py │ │ │ ├── sabre_pre_layout.py │ │ │ ├── set_layout.py │ │ │ ├── trivial_layout.py │ │ │ ├── vf2_layout.py │ │ │ ├── vf2_post_layout.py │ │ │ └── vf2_utils.py │ │ ├── optimization │ │ │ ├── __init__.py │ │ │ ├── _gate_extension.py │ │ │ ├── collect_1q_runs.py │ │ │ ├── collect_2q_blocks.py │ │ │ ├── collect_and_collapse.py │ │ │ ├── collect_cliffords.py │ │ │ ├── collect_linear_functions.py │ │ │ ├── collect_multiqubit_blocks.py │ │ │ ├── commutation_analysis.py │ │ │ ├── commutative_cancellation.py │ │ │ ├── commutative_inverse_cancellation.py │ │ │ ├── consolidate_blocks.py │ │ │ ├── contract_idle_wires_in_control_flow.py │ │ │ ├── elide_permutations.py │ │ │ ├── hoare_opt.py │ │ │ ├── inverse_cancellation.py │ │ │ ├── light_cone.py │ │ │ ├── optimize_1q_commutation.py │ │ │ ├── optimize_1q_decomposition.py │ │ │ ├── optimize_1q_gates.py │ │ │ ├── optimize_annotated.py │ │ │ ├── optimize_cliffords.py │ │ │ ├── optimize_swap_before_measure.py │ │ │ ├── remove_diagonal_gates_before_measure.py │ │ │ ├── remove_final_reset.py │ │ │ ├── remove_identity_equiv.py │ │ │ ├── remove_reset_in_zero_state.py │ │ │ ├── reset_after_measure_simplification.py │ │ │ ├── split_2q_unitaries.py │ │ │ ├── template_matching │ │ │ │ ├── __init__.py │ │ │ │ ├── backward_match.py │ │ │ │ ├── forward_match.py │ │ │ │ ├── maximal_matches.py │ │ │ │ ├── template_matching.py │ │ │ │ └── template_substitution.py │ │ │ └── template_optimization.py │ │ ├── routing │ │ │ ├── __init__.py │ │ │ ├── algorithms │ │ │ │ ├── __init__.py │ │ │ │ ├── token_swapper.py │ │ │ │ ├── types.py │ │ │ │ └── util.py │ │ │ ├── basic_swap.py │ │ │ ├── commuting_2q_gate_routing │ │ │ │ ├── __init__.py │ │ │ │ ├── commuting_2q_block.py │ │ │ │ ├── commuting_2q_gate_router.py │ │ │ │ ├── pauli_2q_evolution_commutation.py │ │ │ │ └── swap_strategy.py │ │ │ ├── layout_transformation.py │ │ │ ├── lookahead_swap.py │ │ │ ├── sabre_swap.py │ │ │ ├── star_prerouting.py │ │ │ └── utils.py │ │ ├── scheduling │ │ │ ├── __init__.py │ │ │ ├── alignments │ │ │ │ ├── __init__.py │ │ │ │ ├── check_durations.py │ │ │ │ └── reschedule.py │ │ │ ├── padding │ │ │ │ ├── __init__.py │ │ │ │ ├── base_padding.py │ │ │ │ ├── dynamical_decoupling.py │ │ │ │ └── pad_delay.py │ │ │ ├── scheduling │ │ │ │ ├── __init__.py │ │ │ │ ├── alap.py │ │ │ │ ├── asap.py │ │ │ │ ├── base_scheduler.py │ │ │ │ └── set_io_latency.py │ │ │ └── time_unit_conversion.py │ │ ├── synthesis │ │ │ ├── __init__.py │ │ │ ├── aqc_plugin.py │ │ │ ├── default_unitary_synth_plugin.py │ │ │ ├── high_level_synthesis.py │ │ │ ├── hls_plugins.py │ │ │ ├── linear_functions_synthesis.py │ │ │ ├── plugin.py │ │ │ ├── solovay_kitaev_synthesis.py │ │ │ └── unitary_synthesis.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── barrier_before_final_measurements.py │ │ │ ├── check_gate_direction.py │ │ │ ├── check_map.py │ │ │ ├── contains_instruction.py │ │ │ ├── control_flow.py │ │ │ ├── dag_fixed_point.py │ │ │ ├── error.py │ │ │ ├── filter_op_nodes.py │ │ │ ├── fixed_point.py │ │ │ ├── gate_direction.py │ │ │ ├── gates_basis.py │ │ │ ├── merge_adjacent_barriers.py │ │ │ ├── minimum_point.py │ │ │ ├── remove_barriers.py │ │ │ ├── remove_final_measurements.py │ │ │ └── unroll_forloops.py │ ├── passmanager.py │ ├── passmanager_config.py │ ├── preset_passmanagers │ │ ├── __init__.py │ │ ├── builtin_plugins.py │ │ ├── common.py │ │ ├── generate_preset_pass_manager.py │ │ ├── level0.py │ │ ├── level1.py │ │ ├── level2.py │ │ ├── level3.py │ │ └── plugin.py │ ├── target.py │ └── timing_constraints.py ├── user_config.py ├── utils │ ├── __init__.py │ ├── classtools.py │ ├── deprecation.py │ ├── lazy_tester.py │ ├── optionals.py │ ├── parallel.py │ └── units.py ├── version.py └── visualization │ ├── __init__.py │ ├── array.py │ ├── bloch.py │ ├── circuit │ ├── __init__.py │ ├── _utils.py │ ├── circuit_visualization.py │ ├── latex.py │ ├── matplotlib.py │ ├── qcstyle.py │ ├── styles │ │ ├── __init__.py │ │ ├── bw.json │ │ ├── clifford.json │ │ ├── iqp-dark.json │ │ ├── iqp.json │ │ └── textbook.json │ └── text.py │ ├── circuit_visualization.py │ ├── counts_visualization.py │ ├── dag_visualization.py │ ├── exceptions.py │ ├── gate_map.py │ ├── library.py │ ├── pass_manager_visualization.py │ ├── state_visualization.py │ ├── timeline │ ├── __init__.py │ ├── core.py │ ├── drawings.py │ ├── generators.py │ ├── interface.py │ ├── layouts.py │ ├── plotters │ │ ├── __init__.py │ │ ├── base_plotter.py │ │ └── matplotlib.py │ ├── stylesheet.py │ └── types.py │ ├── transition_visualization.py │ └── utils.py ├── qiskit_bot.yaml ├── releasenotes ├── config.yaml └── notes │ ├── 0.10 │ ├── 0.10.0-release-e18d6519d92d8ef3.yaml │ ├── Instruction-layering-for-circuit-drawing-has-changed-f62ce5aaeb8ce221.yaml │ ├── add-memory-slots-to-pulse-qobj-exp-header-c21c795d761ab5a3.yaml │ ├── add-methods-to-add-and-remove-final-measurements-bcdd9977eacf8380.yaml │ ├── circuit-data-modification-validation-52f02f955ecf90a1.yaml │ ├── dense_noise_aware-46489df2439aab05.yaml │ ├── deprecate-instruction-control-a363a15b3f0f0d72.yaml │ ├── deprecate-qasm-ast-node-params-3cc930ea2c677a96.yaml │ ├── deprecate_bit_eq_tuple-e751168412b09702.yaml │ ├── deprecate_unknown_styles-93f84aedd1887c44.yaml │ ├── initial-ion-trap-support-33686980aa9ec3ae.yaml │ ├── matplotlib-close-306c5a9ea2d118bf.yaml │ ├── mock-backend-properties-a369bb6efdbae602.yaml │ ├── partialresults-44d0ce37b1c09413.yaml │ ├── pass-mpl-ax-kwarg-069f793f01cd61a7.yaml │ ├── passmanager_replace-d89e2cc46517d917.yaml │ ├── remove-deprecated-device-specs-2d1aeab5f09b5a68.yaml │ ├── remove-deprecated-schedule-ops-f57b3c2477312cbb.yaml │ ├── rzz-visualization-5ade105ae6cae0eb.yaml │ └── schedule-pad-method-a56c952fcfdfbf08.yaml │ ├── 0.11 │ ├── 0.11.0-release-95f15c71d993bfcd.yaml │ ├── 3281-parameterized-circuits-raise-exception-at-optimization_level-c6e25be56b1f5eb8.yaml │ ├── Added-new-methods-added-to-BackendProperties-71e60b610cc4bcc7.yaml │ ├── Added_method_Instruction_is_parameterized-7a690119642f1dc1.yaml │ ├── Layout2qDistance-84fccae5eb89699c.yaml │ ├── add-cnot-alias-d4e4c8a409c85ad2.yaml │ ├── add-latex-passthrough-cbdacd24d9db9918.yaml │ ├── add_ControlledGate_class-010c5c90f8f95e78.yaml │ ├── change-meas-level-and-meas-return-to-enum-879f57199e5fa83a.yaml │ ├── csplayout-fb9deb7fc133acfd.yaml │ ├── deprecate-cmd-def-097d6a692ade8056.yaml │ ├── deprecate-pulse-channel-spec-c33de7335eaa1a4f.yaml │ ├── deprecate-qx_color_scheme-e6b50093a979b69d.yaml │ ├── deprecation_0.9-0163a90875b53832.yaml │ ├── extend-backend-configuration-129d7292471fe331.yaml │ ├── extend-backend-defaults-4370f983d599a26b.yaml │ ├── fix-bug-in-align_acquires-b0736bf9d520967f.yaml │ ├── fix-numpy.random.seed-after-effects-74630974e79b1b7f.yaml │ ├── ignore-framechange-draw-arg-574c06472a576146.yaml │ ├── job_queue_position_None-da3e6c2a203bc795.yaml │ ├── marginal-counts-51108f216cc684d1.yaml │ ├── memory_True_validated-586709f0b670b791.yaml │ ├── parallel_passmanager_run-1d2173d33854e288.yaml │ ├── passmanager_slicing-57ad2824b43ed75a.yaml │ ├── pulse-scheduler-8b259e2329baa21c.yaml │ ├── remove-TranspilerAccessError-af8b91abfb7ba920.yaml │ ├── remove-UBase-e5ffc69cd9311191.yaml │ ├── remove-pulse-buffers-6f1e0849a881f9f8.yaml │ ├── remove-sympy-3305fa6a5664365b.yaml │ ├── remove_CXBase-4c23c33386140a64.yaml │ ├── remove_implicit_conversion_snapshot_label-f3082561ede0bed5.yaml │ ├── remove_u0-6514a8ddcf51f609.yaml │ └── transpile_1q-43c36f31cb3b71e7.yaml │ ├── 0.12 │ ├── 0.12.0-release-d787c88f1d8815d4.yaml │ ├── 2482-decompose-does-not-propagate-bound-parameters-71fb409de3416255.yaml │ ├── 3215-ConsolidateBlocks-drops-classical-conditional-c5ed03f9a6d15284.yaml │ ├── 3399-Change-QuantumCircuit-method-input-arg-names-8422b6abfdfff081.yaml │ ├── CSPLayout_limit-e0643857e866d1ee.yaml │ ├── acquire-single-channel-ea83cef8d991f945.yaml │ ├── add-couplingmap-draw-45b8750065719e2c.yaml │ ├── add-parametric-pulses-51184457faf31053.yaml │ ├── add-utility-function-measure-4b951766cdfe5cd6.yaml │ ├── better-pulse-repr-9e5ba50649322b6b.yaml │ ├── better_support_for_controlled_gates_in_text_drawer-b18cff47d64271ef.yaml │ ├── change-rep-time-unit-48533d8fe474a035.yaml │ ├── circuit_instruction_map-rename-d011d5cc34d16b7b.yaml │ ├── controlled-gate-api-changes-da5781ef1ae5e971.yaml │ ├── copy-measure-methods-562f0c1096f93145.yaml │ ├── coupling-map-constructors-d9f66ac45f4ceb1b.yaml │ ├── crosstalk-adaptive-scheduling-2e08f213053c8f17.yaml │ ├── deprecate-persistent-value-command-4ec516a314197887.yaml │ ├── deprecate-python-3.5-5bc0aadebc79d6b5.yaml │ ├── fix3400_quantum_methods-e822a1247329f927.yaml │ ├── fix3640-70e912031815d09a.yaml │ ├── level1_trivial_dense_layout-7b6be7221b18af0c.yaml │ ├── operator-dot-fd90e7e5ad99ff9b.yaml │ ├── opertor-measures-33682f22a4c58d68.yaml │ ├── output-first-arg-drawer-9b162196da72cb8f.yaml │ ├── partial-trace-87fd0ef50196a308.yaml │ ├── physical-qubits-as-integers-86b999bcfe0098dd.yaml │ ├── reorganization-of-transpiler-passes-8758ad4130638534.yaml │ ├── respect-max-shots-a6f8ac0d88040f42.yaml │ ├── state-measures-f662a847d0db42b8.yaml │ ├── update-scaling-draw-option-7f28e83ff3e3939f.yaml │ └── zxz-decomposition-6f0c2a31c552584f.yaml │ ├── 0.13 │ ├── 0.13.0-release-a92553cf72c203aa.yaml │ ├── 3937-transpiler-pushes-gates-behind-measurements-3799753c21878237.yaml │ ├── add-base-job-status-methods-3ab9646c5f5470a6.yaml │ ├── add-open-controls-bb21111b866ada43.yaml │ ├── add-pygments-dfe2cd949c237deb.yaml │ ├── add-set-frequency-instruction-18a43ad97a5c6f7f.yaml │ ├── bind-parameters-mixed-values-and-in-place-48a68c882a03070b.yaml │ ├── channel-module-deprecations-in-pulse-ffc384b325b077f1.yaml │ ├── circuit-num-nonlocal-gates-e957432b1e6acc91.yaml │ ├── consistent-gate-naming-efa669c7a8d3a654.yaml │ ├── continuous-waves-defined-by-frequency-a86b4cc623a2e43b.yaml │ ├── copy-rhs-on-extending-qc-9e65804b6b0ab4da.yaml │ ├── coupling-map-name-b3bde705196bfe15.yaml │ ├── csplayout_level_2and3-df6b06d05a34263f.yaml │ ├── dag_compose-3847f210c6624f88.yaml │ ├── default-schedule-name-51ba198cf08978cd.yaml │ ├── defaults_TranspileConfig-4109a90c278d46df.yaml │ ├── fake-backend-run-37d48dbf0e9de6f3.yaml │ ├── fix-propagation-of-substituted-parameters-78bc9ece47013dbb.yaml │ ├── fix3684-69e230f98546deb6.yaml │ ├── from_qasm_str_custom_gates-e3013f958def70e8.yaml │ ├── get_counts-returns-also-dict_list-fcd23da8f3757105.yaml │ ├── initial_state_draw_parameter-f360ac4e998ee944.yaml │ ├── inst-map-functions-84b176b4a14df449.yaml │ ├── iswap-dcx-gates-3e4b424aed0114d8.yaml │ ├── job-wait-for-final-state-b9951d21aad5d3c2.yaml │ ├── list-params-1fa4c3f8b67ff57d.yaml │ ├── lookahead-swap-choose-depth-width-c265b261cb82b76d.yaml │ ├── num-qubits-streamlining-01a9f58684ca4609.yaml │ ├── one-qubit-synthesis-c5e323717b8dfe4d.yaml │ ├── operator-qargs-aeb2254b5a643013.yaml │ ├── parameter-propagation-for-rebound-composite-gates-6cbd15bb69a9c85b.yaml │ ├── parameter_conflict_in_transpile-fc67d76288b480c4.yaml │ ├── passmanager_parameter_in_transpile-9768d95afbe9127e.yaml │ ├── qinfo-operators-0193871295190bad.yaml │ ├── qinfo-random-970923d446d10471.yaml │ ├── qinfo-states-7f67e2432cf0c12c.yaml │ ├── qobj-no-marshmallow-3f2b3c7b10584b02.yaml │ ├── quibit-transition-visualization-a62d0d119569fa05.yaml │ ├── remove-deprecated-code-e48bbdd7cb0d61db.yaml │ ├── remove-sympy-instruction-e05f08e511397305.yaml │ ├── remove-warnings-about-config-units-66e8525bd829db81.yaml │ ├── retworkx-ccd3019aae7cfb7d.yaml │ ├── support-scheduler-in-execute-42a1ebe9e3a67bbb.yaml │ ├── suppress-packaging-warnings-396b38feb6b3d52f.yaml │ ├── transpile-method-selectors-1c426457743a6fa7.yaml │ └── unify-instructions-and-commands-aaa6d8724b8a29d3.yaml │ ├── 0.14 │ ├── 0.14.0-release-19557dcd9d5af6e3.yaml │ ├── 4235-to_instruction-call-throws-error-on-parametrized-inverted-circuit-acf38e3ddd111900.yaml │ ├── add-equivalence_library.has_entry-b58a6aa3f0b05d40.yaml │ ├── add-title-to-pulse-drawer-69db1ddb2f696367.yaml │ ├── added-to-circuit-library-iqp-circuits-c193be67dae6ea48.yaml │ ├── circuit-compose-c320c4057cd2bb8f.yaml │ ├── circuit-lib-diagonal-a4cdeafce1edd0c6.yaml │ ├── clifford-from-label-4ac8a987109916ef.yaml │ ├── compress-indentical-pulses-cd20e82e1525b9f8.yaml │ ├── deprecate-combine-from-edge-b2884a5d124d36af.yaml │ ├── fix-control-channel-logic-cdb45b7adae394d8.yaml │ ├── fix-ctrl-state-std-gate-75a7a361dcc66001.yaml │ ├── fix-random-clifford-cff2b266c8ad7e2d.yaml │ ├── instruction.is_parameterized-to-check-if-fully-bound-f1004abf10f15930.yaml │ ├── introduce-hamiltonian-gate-5c51bb576706cee9.yaml │ ├── logical-and-or-circuits-edcffef0b4b8ee62.yaml │ ├── new-fake-backends-a98331b0fe37e085.yaml │ ├── parameterexpression.subs-not-detecting-name-conflicts-1c8e5a791f1acb36.yaml │ ├── properties-last-update-date-3d09884ff8634a2f.yaml │ ├── quantum-state-from-int-20a91dc5d4c62dbb.yaml │ ├── remove-marshmallow-providers-d257d12c0bedcc12.yaml │ ├── rename-constant-pulse-dd5e5843df379ae2.yaml │ ├── statevector-init-91805b2f81f8e8c1.yaml │ ├── stop-monkeypatching-circuit-gates-e0a9fc1e78f54ebe.yaml │ └── transpiling_basis_none-b2f1abdb3c080eca.yaml │ ├── 0.15 │ ├── 0.15.0-release-c7d85921f85f0b4d.yaml │ ├── 4500-barrier-counted-as-non-local-gate-6cb31d63a9052632.yaml │ ├── 4524-MCXVChain-gate-being-incorrectly-assembled-as-MCX-gate-df73b216e9777ecf.yaml │ ├── 4573-Open-ControlledGates-not-marked-equivalent-729bc971c897ede3.yaml │ ├── Add-canonical-form-47e0466ed57640f3.yaml │ ├── add-basistranslator-pass-d5e7de69ab9f20a1.yaml │ ├── add-basistranslator-to-default-levels-1c0de250f8ca4a59.yaml │ ├── add-counts-class-7c75bd94d12a161a.yaml │ ├── add-dagcircuit-from-networkx-7815b9c575232b14.yaml │ ├── add-deprecate-rho-state-viz-7bcd3f4112f32823.yaml │ ├── add-init-qubits-option-ea1844f88fcddcf6.yaml │ ├── add-rep-delay-c97d5aa8fc9696da.yaml │ ├── add_quantumcircuit_phase-5006d1e930348d2e.yaml │ ├── allowIntegerforQuantumRegisterSize-2e9a6cc033bc962e.yaml │ ├── ancilla-qubit-cdf5fb28373b8553.yaml │ ├── broadcasting-discriminators-and-kernels-5e0f7083054b01a2.yaml │ ├── bugfix-set-frequency-29608d213a8cbece.yaml │ ├── change-pulse_lib-to-library-f8e76ff3136128ec.yaml │ ├── circuit-control-8734da01db4f92e5.yaml │ ├── circuit-repeat-8db21ef8d8c21cda.yaml │ ├── circuit-reverse-bits-ce1873a89b06e3df.yaml │ ├── combine-into-edge-map-279441b53ed4e790.yaml │ ├── configurable-backend-af0623b43bdcc35e.yaml │ ├── converters-equivalence-library-registration-optional-266758d497d82ce3.yaml │ ├── cregbundle-8c0ae7bd7875dd0f.yaml │ ├── defective_qubits-d826ccbd049603b9.yaml │ ├── deprecate-dag-qubits-method-0a61b37fa4a5bcd5.yaml │ ├── deprecate-get_sample_pulse-b97028b14317996c.yaml │ ├── deprecate-optional-condition-arg-7645c645c738e290.yaml │ ├── disable-default-plot-table-330705e3118fac6a.yaml │ ├── disallow_num_ctrl_qubits_zero-eb102aa087f30250.yaml │ ├── equiv-lib-draw-8f3c4bd897a2fa6c.yaml │ ├── fix-unrolling-open-ctrl-gate-4a72116526afb1fd.yaml │ ├── fix-zz-feature-map-barriers-ab1a2d930a6b5af1.yaml │ ├── implement-set-phase-b5581ad6085b3cec.yaml │ ├── implement-shift-frequency-46d4ea16d8be2f58.yaml │ ├── large_gate_bugfix-cbf0b6f1dcfbd5dd.yaml │ ├── level0_RemoveResetInZeroState-942c0fb19cb6c087.yaml │ ├── line_length_remove_0.10-d13e5a15524e67c0.yaml │ ├── mpl-scaling-fix-823c3e3d3cb2d9d1.yaml │ ├── op_tolerance_dep-d0d931f029e27a44.yaml │ ├── parameter-conjugate-a16fd7ae0dc18ede.yaml │ ├── phase-estimation-circuit-c22d71d88873aa77.yaml │ ├── pylatexenc-matplotlib-428f285f4cfd2d7c.yaml │ ├── qasm_remove_0.9-7150d53da8eebfd8.yaml │ ├── qsphere-state-display-819cc1e3e61314a2.yaml │ ├── quadratic-form-circuit-f0ddb1694960cbc1.yaml │ ├── quantum_state_expval-18359552aab42343.yaml │ ├── quantum_volume_rng-2e6f46e3821aebeb.yaml │ ├── quantumcircuit-compose-without-dag-b19e518a8f2fbeb0.yaml │ ├── remove-channels-to-plot-argument-388c6b33ed00b0d6.yaml │ ├── remove-circuit-instruction-map-37fb34c3b5fe033c.yaml │ ├── remove-deprecated-pulse-code-9ec2dba175058c5f.yaml │ ├── remove-deprecated-pulse-commands-18381c59264090dd.yaml │ ├── remove-deprecated-qi-b7d5a8ca00849b02.yaml │ ├── remove-iplot-150c97e5a4d399e4.yaml │ ├── remove-marshmallow-validation-283fa62b3acc51e4.yaml │ ├── remove-multi-acquires-747701103ddd816c.yaml │ ├── remove-use_networkx-e1c846a9f8f2ff6a.yaml │ ├── rename-rescheduler-d4210a234714ed5d.yaml │ ├── rename-samplepulse-to-waveform-add2c0482623f752.yaml │ ├── sabre-2a3bba505e48ee82.yaml │ ├── schedule-replace-2c5634a6133db237.yaml │ ├── sqrt-x-gates-3aba219f0efd8900.yaml │ ├── statevector-reset-3c819d1e2d598cc4.yaml │ ├── support-substituting-parameterexpression-5f140ba243ba126a.yaml │ ├── to_gate_label-d825a2997a504604.yaml │ ├── transformationpass_propertyset-3d1d9aedad9860be.yaml │ ├── transpiler_fails_with_condition-9b4b4d66406548f0.yaml │ ├── u-and-phase-gate-e308fb4bb009014f.yaml │ ├── updated_mpl_drawer-1498741fc64ac42a.yaml │ └── zero-param-pulse-ends-c3ad82eae66f9252.yaml │ ├── 0.16 │ ├── 0.16.0-release-a06d0e1c3b705bda.yaml │ ├── 3207-Results-object-should-inform-user-if-multiple-results-of-same-name-5757be483b0979c3.yaml │ ├── 3927-0d94adeac9299540.yaml │ ├── 4697-append-method-d4dc03b70257e99b.yaml │ ├── 5037-e73ce50c4ae23445.yaml │ ├── add-globalR-gates-13dd2860618e5c3f.yaml │ ├── add-iqx-color-scheme-0de42f0d004fad31.yaml │ ├── add-pulse-builder-alignment-326f2d20dde5e658.yaml │ ├── add-rep-delay-to-qasm-cf815b367034fc5d.yaml │ ├── add-template-optimization-pass-9194135706fef1d9.yaml │ ├── add-v2-interface-a993d673fd77e02e.yaml │ ├── added-inplace-arg-8b7daf3abbd913cb.yaml │ ├── allow-integer-qarg-in-QuantumCircuit-unitary-a6b95154c36bef0d.yaml │ ├── ancillas-in-functional-pauli-rots-7b7760dfe9933d76.yaml │ ├── build-blueprintcircuit-before-inverse-8ef85f6389588fe0.yaml │ ├── classical_funciton_compliation-c5d75e0aaf04c8f1.yaml │ ├── delay-in-circuit-33f0d81783ac12ea.yaml │ ├── deprecate-MSGate-class-40495351761c202f.yaml │ ├── deprecate-class-MSBasisDecomposer-22671ff6a67e147c.yaml │ ├── deprecate-u123-c7646ddf73bf5e47.yaml │ ├── drop-py3.5-86a65daa49903d46.yaml │ ├── empty-counts-00438f695cac2438.yaml │ ├── fix-bug-in-controlled-unitary-when-setting-ctrl_state-2f9af3b9f0f7903f.yaml │ ├── fix-controlledgate-inverse-4f87ffd362127186.yaml │ ├── fix-mpl-json-load-failure-0da2a36351b13f5a.yaml │ ├── groverop-d721325a0e948a8d.yaml │ ├── hamiltonian-vars-to-hz-fbe74c4fd4803d0e.yaml │ ├── instr-sched-map-params-9e8825134fe0b5c4.yaml │ ├── linear-amplitude-function-811901627fa8e57f.yaml │ ├── monospaced_magic-4716fbc6aec82f5f.yaml │ ├── optimize-1q-decomposition-53c78d7430b07c0c.yaml │ ├── parse-qasm-sx-u-phase-2b69e3b66ed39721.yaml │ ├── passmanager_remove-c8f8c0b44ce89756.yaml │ ├── preserve-qreg-order-when-unrolling-and-decomposing-3d1789cd2eb4a8f9.yaml │ ├── probability-distribution-circuits-d65c8e974001ca8c.yaml │ ├── pulse-gate-calibrations-78fd3fa5a5328761.yaml │ ├── pulse-schedule-disassembler-5315a00bd5d17dfd.yaml │ ├── remove-dagnode-dict-32fa35479c0a8331.yaml │ ├── remove-deprecated-gate-args-b29ba17badcb77ca.yaml │ ├── removing-deprecated-gates-ecb7d0fc37617078.yaml │ ├── spherical-coord-bloch-295beddb37ef16a6.yaml │ ├── support-parameterexpressions-in-schedules-cbd0ac54cb01f617.yaml │ └── timeline-drawer-1c5e9b4a7f50f8c8.yaml │ ├── 0.17 │ ├── 1q_euler_decomp_u3_to_u1_u2-ca3bea2ca55ca961.yaml │ ├── 5405-Slow-transpilation-of-ExcitationPreserving-297f3afd4a987cac.yaml │ ├── DAGNode.semantic_eq-to-use-qcarg-circuit-index-for-arg-equality-07cb556ec9fda5f2.yaml │ ├── ParameterVectors-aren't-unrolled-by-execute-c8bd393818e926b0.yaml │ ├── add-call-instruction-6f4fc37994090c2f.yaml │ ├── add-config-processor-type-field-916f98f2eebf7e72.yaml │ ├── add-parameters-and-is_parameterized-to-pulse-d5695dd14e407537.yaml │ ├── add-parametric-pulse-label-e74e5c614c446d66.yaml │ ├── add-piecewise-polynomial-chebyshev-66c82ffe1d749dd6.yaml │ ├── add-readout-length-4858fe8b40249681.yaml │ ├── add-schedule-block-c37527f3205b7b62.yaml │ ├── add_array_to_latex-0b5f655a47f132c0.yaml │ ├── add_state_ipython-6fd6305f3db04a23.yaml │ ├── allow-parametric-instruction-duration-b4c6677544ed28c1.yaml │ ├── basicaer-new-provider-ea7cf756df231c2b.yaml │ ├── basis_aware_commutative_cancellation-9f3b4924b0fa478d.yaml │ ├── bind-global-phase-a7248943488f4010.yaml │ ├── bit-classes-register-index-optional-9aa6feff4fce3524.yaml │ ├── bit-register-immutable-7a06a212400b3b60.yaml │ ├── bool_expression_phaseoracle-1802be3016c83fa8.yaml │ ├── calibrations-add-iadd-265b92f42ffce92a.yaml │ ├── calling_a_pass-4148f285ea717c74.yaml │ ├── check-name-string-in-setter-openqasm-valid-0fe1d7c42e37b679.yaml │ ├── circuit-meas-level-one-147399217ce0b34b.yaml │ ├── circuit-tensor-f432dcd9302ded9f.yaml │ ├── circuit_metadata-3157879d02cfd722.yaml │ ├── cnot-dihedral-op-518a51b2827cd291.yaml │ ├── conditional-displays-after-measure-3f53a86800b2c459.yaml │ ├── csplayout-refactor+randomize-ad5ee25943ba1f56.yaml │ ├── dagcircuit-fix-substitute-node-global-phase-usage-ee05476a7d0b24c6.yaml │ ├── dagcircuit-remove-deprecated-bit-methods-8fb2d97ac4abdf4a.yaml │ ├── deprecate-3.6-d48643e1b778d70c.yaml │ ├── deprecate-circuit-combine-extend-ffc6a073ed114890.yaml │ ├── deprecate-instructionduration-get-with-qubit-instance-64a9a428bb3bdbbd.yaml │ ├── deprecate-matmul-f6e2faa7f82439fb.yaml │ ├── deprecate-parameterized-schedule-b917c6692dff518d.yaml │ ├── deprecate-schedule-component-e7ab3654fe4fb8bf.yaml │ ├── deprecate-schemas-424c29fbd35c90de.yaml │ ├── deprecate_qiskit_utils-242f1b9700dd4cb8.yaml │ ├── ecr-gate-45cfda1b84ac792c.yaml │ ├── enable-windows-parallel-map-b33122a2122a95d7.yaml │ ├── fix-configuration-channels-dumping-189df07a7aaf0742.yaml │ ├── fix-nlocal-circular-entanglement-0acf0195138b6aa2.yaml │ ├── fix-piecewise-breakpoints-21db5a7823fdfbed.yaml │ ├── fix_hellinger_fidelity_def-7f60d53e3577fdaf.yaml │ ├── fix_permutation_circuit-3e336899efa6da98.yaml │ ├── fix_qasm_open_control_gates-7ec026cb0f7be642.yaml │ ├── fix_unique_circuit_naming-3072ba931bd30c43.yaml │ ├── fixissue5304-e9cf33c977ee38ee.yaml │ ├── fixissue5533-b519ea28b1b3a3e2.yaml │ ├── idle-time-visualization-b5404ad875cbdae4.yaml │ ├── if_layout_method_no_csplayout-a63d8e419e7f94e0.yaml │ ├── improve-clifford-synthesis-6bddeefa78a2cac1.yaml │ ├── initial_layout_cp_none-8753d058743eeb79.yaml │ ├── initialize_from_int-800e4db98b502baa.yaml │ ├── initialize_from_labels-0f18f37188031d83.yaml │ ├── interactive_visualization-f3186e43f58ac7c6.yaml │ ├── issue-5232-995e0d1a57c7187e.yaml │ ├── issue-5549-0b4e71d44dc13ce5.yaml │ ├── issue-5751-1b6249f6263c9c30.yaml │ ├── lazy-load-provider-factory-bdfb3925a2514ef7.yaml │ ├── load-user-style-json-files-823590b03f015e4b.yaml │ ├── marginal_counts_format-dc20b15d6c04ec94.yaml │ ├── missing-condition-transpile-e2bfb51aa2d3aa00.yaml │ ├── must_pass_integer_num_bits-98d509c2ccfc53da.yaml │ ├── nx-optional-6b8ad63529fe32ca.yaml │ ├── optimize-arithmetic-circuits-qubits-allocation-8ee9a9316f387b1f.yaml │ ├── optimize_pauli_expval-afb9833d60bf417e.yaml │ ├── paralle-config-options-97c1ad44ab76e052.yaml │ ├── parameter_expression_gradients-87db1ebad153025f.yaml │ ├── parameterexpression-eq-compares-bounded-expr-to-val-ba7588cac6e53b5d.yaml │ ├── paul_feature_alpha-1fdba69c577c6b4d.yaml │ ├── pauli-instruction-6e91f534ff19036c.yaml │ ├── pauli-operator-76ae910a340a4ad4.yaml │ ├── piecewise-polynomial-and-inverse-chebyshev-e3c4e0765b628c9f.yaml │ ├── pm_cb_remove_5522-30358587a8db2701.yaml │ ├── prepare-0.17-2ab9429b69e1d25c.yaml │ ├── prevent-instantiation-base-channels-662dba1c144ef9b3.yaml │ ├── process-fidelity-target-5bac750390aa3306.yaml │ ├── pulse-builder-macro-ba0d71dd353e0135.yaml │ ├── qft-little-endian-d232c93e044f0063.yaml │ ├── qiskit-version-wrapper-90cb7fcffeaafd6a.yaml │ ├── quantumcircuit-optional-registers-60f0b2832ec95239.yaml │ ├── quaternion-906f490b42fc034c.yaml │ ├── randompauli-76928cc17c840aea.yaml │ ├── remove-circuit-mcmt-87fe50eb32006f7f.yaml │ ├── remove-deprecated-circuit-methods-afc22d0ba59ac853.yaml │ ├── remove-deprecated-pulse-code-d98fc32cf385221a.yaml │ ├── remove-name-attribute-from-dagcircuit-wires-b54cd6abfce95da4.yaml │ ├── replace-pulse-drawer-f9f667c8f71e1e02.yaml │ ├── reverse_qargs-f2f3c9a3e1c3aaa0.yaml │ ├── revise_latex_drawer-43ac082445a8611d.yaml │ ├── routing_method_none-d548ae4426db7412.yaml │ ├── rv-vector-rotation-gate-eb3311771ff7899b.yaml │ ├── sorted-circuit-parameters-7607dd7ef4e6cc0e.yaml │ ├── statevector-equiv-ad588688fa260940.yaml │ ├── subcircuits-misorder-classical-4f075dfa694c55c3.yaml │ ├── transpile-convert-delay-units-07d7dc8e2956a52b.yaml │ ├── transpile-delay-units-to-dt-538aa4b89f4ee94c.yaml │ ├── update-meas-map-interpretation-53795a9bc7d42857.yaml │ └── update-old-backend-defaults-edf97dbbb5184ba9.yaml │ ├── 0.18 │ ├── QiskitIndexError-d75510dc0d626c93.yaml │ ├── TensoredMeasFitter-d327f0e2d736efdd.yaml │ ├── ZSXX-decomposition-90fead72778e410e.yaml │ ├── add-alignment-management-passes-650b8172e1426a73.yaml │ ├── add-bip-mapper-f729f2c5672d7f3e.yaml │ ├── add-initialize-from-method-to-schedules-ce86083b5bd39e6b.yaml │ ├── add-line_discipline-to-job_monitor-dc9b66a9d819dbfa.yaml │ ├── add-option-to-disable-waveform-amplitude-limit-c58e2ec61f6789e6.yaml │ ├── add-pauli-list-5644d695f91de808.yaml │ ├── add-remove-barriers-pass-dab69660f61e9d75.yaml │ ├── add-scipy-optimizer-d1b6e9b9dcb20356.yaml │ ├── bugfix-gate-inverse-name-3401093a18813ace.yaml │ ├── bugfix-hoare-optimizer-273950d8f966090f.yaml │ ├── bugfix-pauli-expectation-warning-bdba193ace0f012e.yaml │ ├── bugfix-proper-exception-twolocal-4a348f45f5e2ad75.yaml │ ├── bugfix-supports-numpy-integers-03c60659fe4cc0c5.yaml │ ├── bump-retworkx-59c7ab59ad02c3c0.yaml │ ├── calibration-builder-no-echo-fdc1a0cac05c1905.yaml │ ├── compose-can-wrap-e839c29e426051e8.yaml │ ├── control-channels-config-8928d33de782d777.yaml │ ├── custom-isometry-tolerance-ee6dcb4cafce9ad4.yaml │ ├── delay_from_qasm-a6ad4f1fe3f49041.yaml │ ├── deprecate-legacy-providers-383bf4142153297a.yaml │ ├── disable-39-multirpc-8618c89aeaa620f9.yaml │ ├── dynamical-decoupling-3ce6e882954f6d3b.yaml │ ├── encoding-qasm-6c61415cd92108e3.yaml │ ├── evolved-op-ansatz-9165704a9e57dc13.yaml │ ├── fake-backend-updates-3ba923834ed8a124.yaml │ ├── fix-addition-parameterised-paulisumop-e9b859bca1e58ddd.yaml │ ├── fix-amplification-problem-init-04ebfe3ade07e910.yaml │ ├── fix-control-of-open-controlled-gate-7a036e42ef5c1b72.yaml │ ├── fix-expectation-for-non-hermitian-op-880a3b9b13320574.yaml │ ├── fix-inline-bug-6b9461fa213b0aae.yaml │ ├── fix-instmap-add-partial-bind-604b74158e5a56e3.yaml │ ├── fix-issue-6198-0d439de830f80c65.yaml │ ├── fix-num-connected-components-ccbee4aa486dbd2c.yaml │ ├── fix-opflow-coeff-bug-5557c50cc2f47401.yaml │ ├── fix-pauli-op-to-circuit-2ace141cac0dd97a.yaml │ ├── fix-qasm-output-for-composite-gates-cc847103eec26c85.yaml │ ├── fix-reverse-bits-conditional-measure-33389d5fd23ffd61.yaml │ ├── fix_initializer_global_phase-977eea9d416c9918.yaml │ ├── fix_phaseoracle_evaluate-52be05221d2761aa.yaml │ ├── fixed-bug-in-Optimize1qGatesDecomposition-skipping-short-sequences-044a64740bf414a7.yaml │ ├── grad_wrapper_expectation-5214882ba482c62f.yaml │ ├── gradient-descent-optimizer-96a7a0eeb9502cef.yaml │ ├── higher-order-spsa-f2eddb44b00b82e0.yaml │ ├── improve-error-in-pauli-944a71008789fbaa.yaml │ ├── issue3201-c0c942d4eb79cf61.yaml │ ├── latex_style_user_math_text-266f9b411317ae6b.yaml │ ├── library-adders-748dfdcc951dfd22.yaml │ ├── mczgate-visualization-mpl-4681de9d41cc8ddc.yaml │ ├── multipliers-8c7477859508ca58.yaml │ ├── optimize-swap-condition-a8ac54e6cb3d9ba4.yaml │ ├── parameterized-delay-3d55448e5cbc5269.yaml │ ├── phase_fix_fix-e6bff434a4b1e88d.yaml │ ├── prepare-0.18-9a0fb87005e314fd.yaml │ ├── pulse_optimal_synthesis_cx_sx_rz-95156cc79231ffea.yaml │ ├── remove-node-condition-d46579359703a027.yaml │ ├── remove-parameter-deprecation-2568271bf2d19911.yaml │ ├── replace-builder-program-ecfc438b1cb19339.yaml │ ├── requirements-updates-6059950dfde3cef6.yaml │ ├── result-distributions-ea0760ac6efc7237.yaml │ ├── serializable-optimizers-642402828b0c733b.yaml │ ├── set_config-c96a56d1b860386c.yaml │ ├── stabilizer_state-396fb754dc68ca13.yaml │ ├── support-gradient-for-lbfgsb-87a7261ca79c3ef0.yaml │ ├── symengine-2fa0479fa7d9aa80.yaml │ ├── value-sort-histogram-1b7033bdfe612f94.yaml │ └── wrap-library-circuits-9b7f7398f3fce8a8.yaml │ ├── 0.19 │ ├── 0.19-prelude-65c295aa9497ed48.yaml │ ├── 7156-df1a60c608b93184.yaml │ ├── 7274-6f57628a7995a461.yaml │ ├── QuantumCircuit.decompose-takes-which-gate-to-decompose-d857da5d0c41fb66.yaml │ ├── SPSA-termination-callback-a1ec14892f553982.yaml │ ├── add-backend-v2-ce84c976fb13b038.yaml │ ├── add-circuit-calibrations-to-diassambler-2e68437a815cc729.yaml │ ├── add-contains_instruction-pass-dcad5f1978ee1e24.yaml │ ├── add-detach-prefix-088e96b88ba29927.yaml │ ├── add-gate-error-objective-00a96f75055d1526.yaml │ ├── add-getters-and-setters-for-vqe-edc753591b368980.yaml │ ├── add-group-qubit-wise-commuting-pauli-list-7b96834068a36928.yaml │ ├── add-hexagonal-lattice-couplingmap-d3b65b146b6cd1d1.yaml │ ├── add-new-fake-backends-3376682dc5c63557.yaml │ ├── add-opflow-is-hermitian-method-6a461549e3c6b32c.yaml │ ├── add-passmanager-config-from-backend-af5dd7d99ec053ef.yaml │ ├── add-pulse-gate-pass-dc347177ed541bcc.yaml │ ├── add-qubit-subset-to-bip-mapper-e1c6234d04484d58.yaml │ ├── add-sparsepauliop-fast-path-228065a05fca4387.yaml │ ├── add-sparsepauliop-sum-d55fc817c9fded82.yaml │ ├── add-support-to-disable-amplitude-limit-in-parametric-pulses-ef88b77db8c1b06c.yaml │ ├── added-multiformat-support-b5d3c7c7c1536951.yaml │ ├── added-snapshot-tests-for-backend-mapping-functions-5961300e09f05be0.yaml │ ├── approxiamte-quantum-compiler-3c74652d4c5e9fa6.yaml │ ├── bugfix-6918-4b3cc4056df39e48.yaml │ ├── bump-retworkx-0.10.1-1fcf4fc746bd754a.yaml │ ├── calibration_results-ac2f9f75479e8d64.yaml │ ├── circuit-size-depth-filter-function-2177a8a71588f915.yaml │ ├── collect-block-pass-b15031aa9749d735.yaml │ ├── control-flow-builder-interface-63910843f8bea5e0.yaml │ ├── cx-cancellation-pass-generalization-538fb7cfe49b3fd5.yaml │ ├── dag_node_to_op_in_out_node-af2cf9c3e7686285.yaml │ ├── deprecate-backend-rzx-cal-build-8eda1526725d7e7d.yaml │ ├── deprecate-mcmt-label-12865e041ce67658.yaml │ ├── deprecate-subgraph-coupling_map-93af284f5410e4b0.yaml │ ├── deprecation-cleanup-3d3e203e2d6e6f31.yaml │ ├── draw-statevector-in-ket-notation-0726959d1f6ea3ce.yaml │ ├── echo-rzx-weyl-decomposition-ef72345a58bea9e0.yaml │ ├── ensure-qnspsa-batching-e48f7ec72412c071.yaml │ ├── execute-fix-108e835dc4f4593d.yaml │ ├── expr_free_symbols_deprecation-72e4db5c178efcff.yaml │ ├── feature-rzx-decomposition-c3b5a36b88303c1f.yaml │ ├── feature_optimize_1q_commutation-28530970f58fb21e.yaml │ ├── fix-ax-figwidth-scaling-mpl-drawer-dc480ccf82dc1007.yaml │ ├── fix-bit-failures-circuit-drawers-cc502c9cb7f90e2b.yaml │ ├── fix-c3sxgate-7138e004a2b05ca8.yaml │ ├── fix-circuit-conversion-loose-qubits-8d190426e4e892f1.yaml │ ├── fix-configurable-fake-backend-6a07ca5a6159baf5.yaml │ ├── fix-control-flow-builder-parameter-copy-b1f6efcc6bc283e7.yaml │ ├── fix-decompose-empty-gate-71455847dcaaea26.yaml │ ├── fix-display-measure-condition-139ddbb8c7ae4071.yaml │ ├── fix-hoare-optimizer-0ef5ac330fc80cc4.yaml │ ├── fix-infinite-job-submissions-d6f6a583535ca798.yaml │ ├── fix-instruction-c_if-3334bc8bcc38a327.yaml │ ├── fix-latex-drawer-bit-cond-d629c04a08e81d6d.yaml │ ├── fix-matplotlib-3.5-40f6d1a109ae06fe.yaml │ ├── fix-mpl-drawer-bit-condition-90c4dac2defdd8c6.yaml │ ├── fix-nlocal-add_layer-c3cb0b5a49c2b04e.yaml │ ├── fix-pickle-support-instmap-9f90cbcb4078f988.yaml │ ├── fix-pulse-parameter-formatter-c9ff103f1a7181e0.yaml │ ├── fix-qaoa-construct-da37faf75f29fc35.yaml │ ├── fix-qasm-invalid-names-04a935a3a14e045c.yaml │ ├── fix-registerless-one-bit-displays-4deb8f7cecf3f602.yaml │ ├── fix-registerless-qasm-output-7a497dd8e9a0706b.yaml │ ├── fix-scheduling-circuits-with-clbits-operations-e5d8bfa90e9a3ae1.yaml │ ├── fix-text-drawer-bit-cond-a3b02f0b0b6e3ec2.yaml │ ├── fix-transpile-empty-list-c93a41d4145a01c3.yaml │ ├── fix_pwchebysev_constant_fx-93e8a3d2880f68ac.yaml │ ├── full_prec_sympy-aeee8210091ef20f.yaml │ ├── gates-in-basis-pass-337f6637e61919db.yaml │ ├── heavy-hex-heavy-square-coupling-map-29f459b93cd18518.yaml │ ├── hhl-negative-eigenvalues-ef11d231181e8043.yaml │ ├── hhl_qi_fix-d0ada86abaa2dba5.yaml │ ├── ignis-mitigators-70492690cbcf99ca.yaml │ ├── listops-coeffs-1e04a34b46b2fd23.yaml │ ├── make-statevector-subscriptable-and-add-inner-product_method-a0337393d9a5b666.yaml │ ├── measure_all-add_bits-8525317935197b90.yaml │ ├── modify-copy-instruction-in-qasm-abd5c9767f2a7f38.yaml │ ├── more-forgiving-numeric-conversions-in-ParameterExpression-6cd7316c32c67c55.yaml │ ├── mpl-bump-33a1240266e66508.yaml │ ├── optimizer-minimize-5a5a1e9d67db441a.yaml │ ├── pauli-evolution-gate-ad767a3e43714fa7.yaml │ ├── pauli-op-permute-fix-d244a1145093369d.yaml │ ├── plot_coupling_map-new-function-deb973b1bf0ad92f.yaml │ ├── qaoa-parameters-49e4524ed2d3e875.yaml │ ├── qasm3-limitations-ebfdedab3f4ab6e1.yaml │ ├── qasm3_dumps-7475de655e1acb24.yaml │ ├── qdrift-as-product-formula-044a37a106a45a47.yaml │ ├── qiskit.util-louder-deprecation-135d9e9ead7ab396.yaml │ ├── qpy-v2-f1c380b40936cccf.yaml │ ├── quantumcircuit-consolidate-bit_indices-c4ee90e831f1aed2.yaml │ ├── quantumcircuit-dynamic-instructions-a69db25665739004.yaml │ ├── random-shift-38532a7321cd8313.yaml │ ├── readout-mitigation-classes-2ef175e232d791ae.yaml │ ├── refactor-grover-isgoodstate-check-54fdb61f899e5158.yaml │ ├── remove-deprecated-assign-parameters-args-9712d7d01e82c390.yaml │ ├── remove-deprecated-ops-2fbd27abaee98c68.yaml │ ├── remove-deprecated-pulse-code-57ec531224e45b5f.yaml │ ├── remove-final-measure-rewrite-37d26dbba7385ebc.yaml │ ├── remove-manual-warning-filters-028646b73bb86860.yaml │ ├── remove-schemas-ca9f3f2e0f08bca8.yaml │ ├── replace-block-with-op-e0d387f6d860d586.yaml │ ├── retworkx-substitute_node_with_dag-speedup-d7d1f0d33716131d.yaml │ ├── sabre-opt-lvl3-default-550924470d683112.yaml │ ├── sparse-pauli-internal-8226b4f57a61b982.yaml │ ├── squ-gate-name-785b7896300a92ef.yaml │ ├── support-dict-for-aux-operators-c3c9ad380c208afd.yaml │ ├── symengine-bump-20dedd5204870e7a.yaml │ ├── taper_empty_operator_fix-53ce20e5d2b68fd6.yaml │ ├── target-in-transpiler-c0a97bd33ad9417d.yaml │ ├── two-step-transpile-f20d709a7a0c42dd.yaml │ ├── unitary-synthesis-plugin-a5ec21a1906149fa.yaml │ ├── user-config-mpl-style-a9ae4eb7ce072fcd.yaml │ └── vf2layout-4cea88087c355769.yaml │ ├── 0.20 │ ├── Operator-from_circuit-25b20d4b3ad5c398.yaml │ ├── _copy_circuit_metadata-a9d03e699118dba2.yaml │ ├── access-backends-from-mock-d3897ecb8490219a.yaml │ ├── add-cx-equivalence-to-cp-and-crz-448c76d5b33516c8.yaml │ ├── add-linear-functions-904c8403ef7ab464.yaml │ ├── add-nested-conditionals-pass-manager-db7b8b9874018d0d.yaml │ ├── add-parameter-prefix-support-to-ZFeatureMap-ZZFeatureMap-ba13832b9a832e88.yaml │ ├── add-parameters-to-template-substitution-a1379cdbfcc10b5c.yaml │ ├── add-repr-for-dag-nodes-2d0a95fecd3dd3db.yaml │ ├── add-sparsepauliop-equiv-7a8a1420117dba21.yaml │ ├── add-v2-backend-support-in-transpiler-parse-inst-map-a617801850178d05.yaml │ ├── add-v2-mocked-backend-4ca2e4cfdf077c60.yaml │ ├── add-xxminusyy-gate-63e6530c23500de9.yaml │ ├── add-xy-gate-e3ac32084273136a.yaml │ ├── bit-slots-17d6649872da0440.yaml │ ├── bogota-manila-rome-santiago-as-fakepulsebackends-2907dec149997a27.yaml │ ├── bump-retworkx-0.11.0-97db170ae39cacf8.yaml │ ├── bump-symengine-8ca362f5b9fef199.yaml │ ├── cleanup-deprecated-circuitmeth-89edb244f572b754.yaml │ ├── consolidate-blocks-target-aware-6482e65d6ee2d18c.yaml │ ├── csp-layout-extra-b62a5e53f136534a.yaml │ ├── custom-serializers-qpy-0097ab79f239fcfc.yaml │ ├── dense-layout-target-aware-2b330ccee948d31a.yaml │ ├── deprecate-max-credits-56a404050a655a04.yaml │ ├── deprecate_odd_suzuki-091178b1bdc8b172.yaml │ ├── drop-python3.6-support-45ecc9e1832934cd.yaml │ ├── dynamical-decoupling-with-alignment-9c1e5ee909eab0f7.yaml │ ├── expose-tolerances-z2symmetries-9c444a7b1237252e.yaml │ ├── fix-algorithms-7f1b969e5b2447f9.yaml │ ├── fix-conditions-fold-mpl-1890dae334f7fbc4.yaml │ ├── fix-hhl_construct_circuit-nl-size-03cbfba9ed50a57a.yaml │ ├── fix-mitigator-endian-ead88499eb7e12ea.yaml │ ├── fix-partial_trace-no-systems-0dc2df3007942eb6.yaml │ ├── fix-phase-gate-condition-text-display-3e1595ad508d225c.yaml │ ├── fix-registerless-bits-reverse-display-ee5efba0eff645a8.yaml │ ├── fix_local_readout_mitigator_assignment_matrix-8bd4229a5159a7fe.yaml │ ├── fix_stabilizerstate_expval-2556c5ee916f5327.yaml │ ├── gates_in_basis_target_aware-9bcd698adc3ecc28.yaml │ ├── ibm-cpu-arch-support-3289377f3834f29e.yaml │ ├── imag_gradients-3dabcd11343062a8.yaml │ ├── instruction-durations-8d98369f89b48279.yaml │ ├── iqx-dark-3dd0a500e1801673.yaml │ ├── lazy-dependency-checkers-d1f3ce7a14383484.yaml │ ├── manylinux2014-e33268fda54e12b1.yaml │ ├── marginal_counts_act_on_memory-0a9b58d0b95046dd.yaml │ ├── multithreaded-stochastic-swap-6c2f13d7bd566284.yaml │ ├── new-fake-backends-04ea9cb26374e385.yaml │ ├── new-state-preparation-class-f8c0617a0c988f12.yaml │ ├── opflow-igate-97df9a8b809116f1.yaml │ ├── optimization-u2-gates-with-parameters-322b6c523251108c.yaml │ ├── pauli_evolve_clifford-3885e8d7d8e8b424.yaml │ ├── paulievo-classname-c0f002d519c45e42.yaml │ ├── paulisumop-may-equal-pauliop-af86de94020fba22.yaml │ ├── prepare-0.20-79918ed0fc5b496e.yaml │ ├── primitives-fb4515ec0f4cbd8e.yaml │ ├── qasm-lexer-bugfix-1779525b3738902c.yaml │ ├── qasm3-escape-reserved-keywords-60d463db36d96319.yaml │ ├── qpy-module-c2ff2cc086b52fc6.yaml │ ├── qubit-properties-target-6b1fb155a46cb942.yaml │ ├── refactor-aux-operators-79d790f8a693a7c0.yaml │ ├── remove-deprecated-algo-methods-eb101adf17a2b920.yaml │ ├── remove-deprecated-pass-manager-dc1dddbd7dcd866f.yaml │ ├── remove-parametrized-schedule-fc4b31a8180db9d9.yaml │ ├── remove_probability_distributions-d30bd77f0f2b9570.yaml │ ├── rename-fake-mumbai-v2-2a4b4ead7360eab5.yaml │ ├── rework-basis-translator-a83dc46cbc71c3b1.yaml │ ├── rework-circuit-argument-resolver-780091cd6f97f872.yaml │ ├── rust-denselayout-bc0f08874ad778d6.yaml │ ├── rust-pauli-expval-f2aa06c5bab85768.yaml │ ├── sparsepauliop-from-index-list-4660fdaa492cd8b2.yaml │ ├── unitary-synth-target-aware-eac86b1faa2d71fd.yaml │ ├── update-instruction-alignment-passes-ef0f20d4f89f95f3.yaml │ ├── update-plot-gate-map-9ed6ad5490bafbbf.yaml │ ├── upgrade-alap-asap-passes-bcacc0f1053c9828.yaml │ ├── upgrade-convert-scheduling-passes-to-analysis-04333b6fef524d21.yaml │ ├── vf2layout-preset-passmanager-db46513a24e79aa9.yaml │ ├── vf2layout-target-51cc8f77fdfcde67.yaml │ └── vqe-optimizer-callables-1aa14d78c855d383.yaml │ ├── 0.21 │ ├── 3842-14af3f8d922a7253.yaml │ ├── add-full-passmanager-5a377f1b71480f72.yaml │ ├── add-group-commuting-method-in-PauliList-and-SparsePauliOp-5dec2877c4a97861.yaml │ ├── add-marginal-distribution-21060de506ed9cfc.yaml │ ├── add-overloading@-3fedb7bc2fd4d7f7.yaml │ ├── add-parameters-to-decompose-5a541d1b5afe2c68.yaml │ ├── add-serializable-parametric-pulse-31490c4d2cc49ec6.yaml │ ├── add-sparsepauliop-methods-00a7e6cc7055e1d0.yaml │ ├── add-support-non-hermitian-op-aerpauliexpectation-653d8e16de4eca07.yaml │ ├── add-textbook-circuit-style-98600038608c8f75.yaml │ ├── add_check_from_sparse_list-97f13fde87c7bcb6.yaml │ ├── change-instruction-data-scalar-81f2066ca2435933.yaml │ ├── cleanup-timeline-drawer-a6287bdab4459e6e.yaml │ ├── clear-circuit-b8edd4126f47d75a.yaml │ ├── consistent-validation-for-gaussian-square-pulse-461087a09ff339a4.yaml │ ├── constraint-optional-b6a2b2ee21211ccd.yaml │ ├── delay-fake-backends-3f68c074e85d531f.yaml │ ├── deprecate-nx-dag-f8a8d947186222c2.yaml │ ├── deprecate-old-optional-paths-982466a6336e4794.yaml │ ├── expand-instruction-supported-c3c9a02b2faa9785.yaml │ ├── feature-trotter-qrte-f7b28c4fd4b361d2.yaml │ ├── fix-eigs_bounds-function-in-TridiagonalToeplitz-class-52cfad8f72ae7341.yaml │ ├── fix-latex-ket-max-size-f11c3a89215a49e7.yaml │ ├── fix-marginal_counts-on-pulse-backend.yaml │ ├── fix-pm-config-backend_v2-ac8b83267105a47d.yaml │ ├── fix-qpy-controlled-gates-e653cbeee067f90b.yaml │ ├── fix-reverse_bits-with-registerless-bits-6d17597b99640fb0.yaml │ ├── fix-t2-configurablefakebackend-8660ab3d7a57a824.yaml │ ├── fix-target-dt-4d306f1e9b07f819.yaml │ ├── fix_plot_histogram_number-a0a4a023dfad3c70.yaml │ ├── generate_pass_manager_preset-1e6c9641accd5d60.yaml │ ├── marginal-memory-29d9d6586ae78590.yaml │ ├── move-qiskit.test.mock-to-qiskit.providers.fake_provider-7f36ff80a05f9a9a.yaml │ ├── msrv-0b626e1cfb415abf.yaml │ ├── parallelize-circuit-scheduling-972d4616eabb2ccb.yaml │ ├── param-table-perf-72cd1c40533b3882.yaml │ ├── primitive-interface-408b91ed338a5bc4.yaml │ ├── qasm3-exporter-delay-ef3003e01412c97e.yaml │ ├── qasm3-fix-basis-gates-c96a0b357dfdcb47.yaml │ ├── qiskit-toqm-41bd0f3b6760df6f.yaml │ ├── quantum_shannon_decomp-facaa362a3ca8ba3.yaml │ ├── remove-basebackend-7beac0abd17144fe.yaml │ ├── remove-basicaer-shot-limit-b7cd4e6f6739885c.yaml │ ├── remove-dagnode-deprecations-30703a2156d52b8a.yaml │ ├── remove-deprecate-calsses-methods-7bd69606cc4ad61f.yaml │ ├── remove-deprecated-optimizer-methods-d580a07112ccaa2d.yaml │ ├── remove-hard-time-limit-vf2-be83830ecc71f72c.yaml │ ├── result-fix-e4eaa021f49b5f99.yaml │ ├── scaler-multiplication-left-side-7bea0d73f9afabe2.yaml │ ├── shared-memory-dependency-1e32e1c55902216f.yaml │ ├── speedup-lookahead-swap-4dd162fee2d25d10.yaml │ ├── swap-strategies-3ab013ca60f02b36.yaml │ ├── time-evo-framework-9d58827bdbbebd62.yaml │ ├── type-check-instruction-labels-on-creation-8399dd8b5d72f272.yaml │ ├── umda-optimizer-9ddcda3d25cd8d9a.yaml │ ├── unroll3q-target-bf57cc4365808862.yaml │ ├── upgrade-qpy-schedule-f28f6a48a3abb4de.yaml │ ├── vf2-post-layout-f0213e2c7ebb645c.yaml │ ├── vqd-implementation-details-09b0ead8b42cacda.yaml │ └── xxplusyy-convention-e181e74271a9e9e1.yaml │ ├── 0.22 │ ├── adapt-vqe-0f71234cb6ec92f8.yaml │ ├── add-backend-custom-passes-cddfd05c8704a4b1.yaml │ ├── add-barrier-label-8e677979cb37461e.yaml │ ├── add-ccz-cs-and-csdg-gates-4ad05e323f1dec4d.yaml │ ├── add-eigensolvers-with-primitives-8b3a9f55f5fd285f.yaml │ ├── add-fidelity-interface-primitives-dc543d079ecaa8dd.yaml │ ├── add-gradients-with-primitives-561cf9cf75a7ccb8.yaml │ ├── add-grover-primitives-10f81efdba93703d.yaml │ ├── add-pulse-drawer-option-936b6d943de9a270.yaml │ ├── add-reset-simplification-pass-82377d80dd0081fd.yaml │ ├── add-reverse-linear-entanglement-nlocal-38581e4ffb7a7c68.yaml │ ├── add-sampler-error-check-38426fb186db44d4.yaml │ ├── add-schedule-block-reference-mechanism-8a7811e17b4fead3.yaml │ ├── add-sparsepauliop-methods-00a7e6cc7055e1d0.yaml │ ├── add-wire-order-to-drawers-657cb54e365c621a.yaml │ ├── add_cnot_dihedral_class_cs_ccz_gates-6bd567daf3a467bd.yaml │ ├── ae-algorithms-primitives-497bae1b2b04f877.yaml │ ├── backend-converter-05360f12f9042829.yaml │ ├── base-operators-sums-d331e78a9fa4b5d8.yaml │ ├── begin-tweedledum-removal-25bb68fc72804f00.yaml │ ├── c_if-to-if_else-converter-2d48046de31814a8.yaml │ ├── circuit-initialize-and-prepare-single-qubit-e25dacc8f873bc01.yaml │ ├── commutative-inverse-cancellation-a10e72d8e42ac74b.yaml │ ├── compose-meas-no-meas-492ce91167d54154.yaml │ ├── condition-in-while-loop-d6be0d6d6a1429da.yaml │ ├── control-flow-depth-size-b598a4eb9d8888eb.yaml │ ├── dag_dependency_speedup-f6298348cb3d8746.yaml │ ├── denselayout-loose-bits-3e66011432bc6232.yaml │ ├── deprecate-linear-solvers-factorizers-bbf5302484cb6831.yaml │ ├── deprecate-stabilizer-table-9efd08c7de1a5b4d.yaml │ ├── deprecated-pulse-deprecator-394ec75079441cda.yaml │ ├── edge-coloring-e55700fcf8902c79.yaml │ ├── evolution-framework-primitives-c86779b5d0dffd25.yaml │ ├── fake_auckland-deadbeef.yaml │ ├── fix-Opertor.from_circuit-transpile-5c056968ee40025e.yaml │ ├── fix-decomp-1q-1c-84f369f9a897a5b7.yaml │ ├── fix-empty-string-pauli-list-init-4d978fb0eaf1bc70.yaml │ ├── fix-flipping-cz-gate-fd08305ca12d9a79.yaml │ ├── fix-gradient-wrapper-2f9ab45941739044.yaml │ ├── fix-idle-wires-display-de0ecc60d4000ca0.yaml │ ├── fix-latex-split-filesystem-0c38a1ade2f36e85.yaml │ ├── fix-nested-flow-controllers-a2a5f03eed482fa2.yaml │ ├── fix-nondeterministic-dagcircuit-eq-7caa9041093c6e4c.yaml │ ├── fix-qasm2-identity-as-unitary-aa2feeb05707a597.yaml │ ├── fix-target-control-flow-representation-09520e2838f0657e.yaml │ ├── fix-text-drawer-compression-a80a5636957e8eec.yaml │ ├── fix-unitary-synth-1q-circuit-756ad4ed209a313f.yaml │ ├── fix_8438-159e67ecb6765d08.yaml │ ├── gate-direction-target-a9f0acd0cf30ed66.yaml │ ├── implements_two_step_tapering-f481a8cac3990cd5.yaml │ ├── improve-basepauli-evolve-clifford-d714b2eee475334b.yaml │ ├── improve-error-message-snobfit-missing-bounds-748943a87e682d82.yaml │ ├── introduce-classical-io-channel-0a616e6ca75b7687.yaml │ ├── make-use-of-callback-in-vqd-99e3c85f03181298.yaml │ ├── multiple-parallel-rusty-sabres-32bc93f79ae48a1f.yaml │ ├── no_warning_with_reverse_bits-b47cb1e357201593.yaml │ ├── observable-eval-primitives-e1fd989e15c7760c.yaml │ ├── operation-abstract-base-class-c5efe020aa9caf46.yaml │ ├── operator-parameters-c81b7c05bffb740b.yaml │ ├── plot-hist-797bfaeea2156c53.yaml │ ├── pluggable-high-level-synthesis-3af9976b22e012d9.yaml │ ├── prepare-0.22-118e15de86d36072.yaml │ ├── primitive-run-5d1afab3655330a6.yaml │ ├── primitive-shots-option-ed320872d048483e.yaml │ ├── primitives-run_options-eb4a360c3f1e197d.yaml │ ├── project-dynamics-primitives-6003336d0866ca19.yaml │ ├── qasm3-fix-conditional-measurement-2d938cad74a9024a.yaml │ ├── qiskit-nature-797-8f1b0975309b8756.yaml │ ├── qiskit.pulse.builder-ddefe88dca5765b9.yaml │ ├── qnspsa-primitification-29a9dcae055bf2b4.yaml │ ├── qpe-algorithms-primitives-3605bdfa5ab1bfef.yaml │ ├── rabre-rwap-ae51631bec7450df.yaml │ ├── register-add-fix-e29fa2ee47aa6d05.yaml │ ├── remove-deprecated-methods-in-pauli-c874d463ba1f7a0e.yaml │ ├── remove-pulse-defs-old-20q-4ed46085b4a15678.yaml │ ├── remove-symbolic-pulse-subclasses-77314a1654521852.yaml │ ├── remove_QiskitIndexError-098fa04f0afe440b.yaml │ ├── remove_optimizers_L_BFGS_B_epsilon-03f997aff50c394c.yaml │ ├── rh1_state_to_latex_fix-e36e47cbdb25033e.yaml │ ├── sabres-for-everyone-3148ccf2064ccb0d.yaml │ ├── sampled_expval-85e300e0fb5fa5ea.yaml │ ├── sampling-vqe-and-qaoa-ecfb36a0a300f69b.yaml │ ├── sparse-pauli-equiv-atol-58f5dfe7f39b70ee.yaml │ ├── stage-plugin-interface-47daae40f7d0ad3c.yaml │ ├── state_to_latex_for_none-da834de3811640ce.yaml │ ├── steppable-optimizers-9d9b48ba78bd58bb.yaml │ ├── switched-to-StandardScaler-43d24a7918e96c14.yaml │ ├── tensored-subset-fitter-bd28e6e6ec5bdaae.yaml │ ├── transpiler-control-flow-708896bfdb51961d.yaml │ ├── trotter-qrte-primitives-8b3e495738b57fc3.yaml │ ├── turn-off-approx-degree-df3d39eb69f7f09f.yaml │ ├── update-DAGCircuit.substitute_node_with_dag-3a44d16b1a82df41.yaml │ ├── update-bfgs-optimizer-29b4ffa6724fbf38.yaml │ ├── update-prob-quasi-2044285a46219d14.yaml │ ├── upgrade_rzx_builder_skip_direct_cx-d0beff9b2b86ab8d.yaml │ ├── visualization-reorganisation-9e302239705c7842.yaml │ └── vqe-with-estimator-primitive-7cbcc462ad4dc593.yaml │ ├── 0.23 │ ├── Symbolic-Pulses-conversion-to-amp-angle-0c6bcf742eac8945.yaml │ ├── adapt-vqe-improvements-8617aaa94a6e6621.yaml │ ├── adapt-vqe-supports-aux-operators-1383103839a338c6.yaml │ ├── add-collect-and-collapse-pass-d4411b682bd03294.yaml │ ├── add-linear-synthesis-lnn-depth-5n-36c1aeda02b8bc6f.yaml │ ├── add-new-node-return-f2574c1593cbb57b.yaml │ ├── add-permutation-lnn-synthesis-46dca864cebe0af3.yaml │ ├── add-permutation-synthesis-plugins-9ab9409bc852f5de.yaml │ ├── add-qfi-with-primitive-86d935d19dfff1a1.yaml │ ├── add-reverse-bits-to-user-config-options-0e465e6e92d5b49f.yaml │ ├── add-singledispatchmethod-78ff14b1ef25ef99.yaml │ ├── add-sparsepauliop-based-z2symetries-1811e956c232f664.yaml │ ├── add-timeblockade-instruction-9469a5e9e0218adc.yaml │ ├── add-varqte-primitives-3f0ae76bc281e909.yaml │ ├── add-xxyy-equivalence-a941c9b9bc60747b.yaml │ ├── add_fake_prague-79f82b83c2e2329c.yaml │ ├── allow-unknown-parameters-eca32e2cfebe8c5a.yaml │ ├── backend-sampler-shots-c233d5a3965e0c11.yaml │ ├── base-estimator-observable-validation-3addb17a2a8c9d97.yaml │ ├── change-qasm-float-output-d69d0c2896f8ecbb.yaml │ ├── circuit-from-instructions-832b43bfd2bfd921.yaml │ ├── circuit-key-supports-controlflow-a956ebd2fcebaece.yaml │ ├── clifford-compose-performance-96808ba11327e7dd.yaml │ ├── clifford_layered_synthesis-1a6b1038458ae8c3.yaml │ ├── deprecate-3.7-1040fe5988ba914a.yaml │ ├── deprecate-linear-functions-synthesis-a62c41171cf396dc.yaml │ ├── deprecate-list-args-transpile-f92e5b3d411f361f.yaml │ ├── deprecate-old-pulse-visualization-b62d28f7c53b9c4c.yaml │ ├── deprecate-old-qpy-d39c754d82655400.yaml │ ├── deprecate-qiskit-ibmq-f0dc372526fe0c57.yaml │ ├── drop-ms-basis-pass-19721ea1fdfee713.yaml │ ├── efficient-gate-power-effa21e3ee4581ee.yaml │ ├── equivalence-to-graph-3b52912ecb542db8.yaml │ ├── final_layout-8178327a57b8b96a.yaml │ ├── fix-Identity-PauliOp-matmul-5e28c9207ed61e90.yaml │ ├── fix-aqc-check-if-su-matrix.yaml │ ├── fix-backend-primitive-no-max-experiments-e2ca41ec61de353e.yaml │ ├── fix-backend-sampler-890cbcf913667b08.yaml │ ├── fix-barrier-before-final-measurements-loose-1849282c11fc5eb0.yaml │ ├── fix-circuit-condition-compare-d8d85e5ca47c1416.yaml │ ├── fix-clbit-handling-stochasticswap-controlflow-fbb9d8fab5040643.yaml │ ├── fix-complex-gradient-sign-25f153b5a53ae259.yaml │ ├── fix-compose-35d2fdbe5b052bca.yaml │ ├── fix-composedop-08e14db184c637c8.yaml │ ├── fix-cregbundle-warning-d3c991bb6276761d.yaml │ ├── fix-global-inst-qarg-method-target-a9188e172ea7f325.yaml │ ├── fix-hinton-bug-1141a297050f55bb.yaml │ ├── fix-identity-simplification-no-target-62cd8614044a0fe9.yaml │ ├── fix-libcomb-sampler-gradient-d759d6b0e2659abe.yaml │ ├── fix-max_circuits-backend-primitives-c70590bca557001f.yaml │ ├── fix-mixed-ideal-target-coupling-map-7fca04f9c5139a49.yaml │ ├── fix-numpy-eigensolver-sparse-pauli-op-b09a9ac8fb93fe4a.yaml │ ├── fix-pauli-basis-dep-27c0a4506ad38d2c.yaml │ ├── fix-primitives-metadata-1e79604126e26b53.yaml │ ├── fix-primitives-numpy-parameters-1589d997864dfb37.yaml │ ├── fix-pulse-qobj-converter-name-collision-0b225af630f4a6c6.yaml │ ├── fix-pvqd-loss-cb1ebe0258f225de.yaml │ ├── fix-qnspsa-max-evals-grouped-52eb462fa6c82079.yaml │ ├── fix-qpy-custom-controlled-gate-a9355df1a88a83a5.yaml │ ├── fix-qpy-loose-bits-5283dc4ad3823ce3.yaml │ ├── fix-qpy-register-57ed7cf2f3f67e78.yaml │ ├── fix-sabre-swap-random-seed-dcf3dace63042791.yaml │ ├── fix-sampling-vqe-aggregation-107e3983147c57bc.yaml │ ├── fix-sampling-vqe-performance-b5bfe92c2d3e10ab.yaml │ ├── fix-serialization-primitives-c1e44a37cfe7a32a.yaml │ ├── fix-sparse-pauli-real-63c31d87801671b1.yaml │ ├── fix-styles-manifest-b8c852a07fb86966.yaml │ ├── fix-target-transpile-parallel-772f943a08d0570b.yaml │ ├── fix-transpile-ideal-measurement-c37e04533e196ded.yaml │ ├── fix-trivial-gate-inversions-1e39293d59bc6027.yaml │ ├── fix-twoqubit-pickle-8628047aa396919a.yaml │ ├── fix-vf2-layout-no-noise-22261601684710c3.yaml │ ├── fix-vf2post-regression-d4b057ea02ce00d3.yaml │ ├── fix-vqd-betas-async-df99ab6e26e9da1e.yaml │ ├── fix-vqd-kgt2-1ed95de3e32102c1.yaml │ ├── fix-vqe-default-batching-eb08e6ce17907da3.yaml │ ├── fix-zero-operand-gates-323510ec8f392f27.yaml │ ├── fix_8897-2a90c4b0857c19c2.yaml │ ├── fix_shots_passing_local_readout_mitigator-603514a4e0d22dc5.yaml │ ├── gate-power-6f97f9db5c36def3.yaml │ ├── gaussian-square-drag-pulse-1e54fe77e59d5247.yaml │ ├── gradient-methods-b2ec34916b83c17b.yaml │ ├── gradients-preserve-unparameterized-8ebff145b6c96fa3.yaml │ ├── improve-collect-cliffords-f57aeafe95460b18.yaml │ ├── initial_state-8e20b04fc2ec2f4b.yaml │ ├── iterable-couplingmap-b8f0cbb1b34a2005.yaml │ ├── latex-refactor-0745471ddecac605.yaml │ ├── linear_function_synthesis_utils-f2f96924ca45e1fb.yaml │ ├── load-backend-fast-9030885adcd9248f.yaml │ ├── new_pulse_subclass-44da774612699312.yaml │ ├── pauli-sum-op-dtype-cd09b4c6521aeb42.yaml │ ├── pickle_weyl-34e16e3aab2f7133.yaml │ ├── probabilities_dict_bug_fix-aac3b3d3853828dc.yaml │ ├── qasm3-import-0e7e01cb75aa6251.yaml │ ├── refactor-gradient-d6d315cb256a17db.yaml │ ├── reinstate-pulse-instruction-draw-7bf4bbabaa1f1862.yaml │ ├── relax-register-naming-0e7d2dba9bf7fb38.yaml │ ├── remove-deprecated-circuit-methods-3e4eb27c4709ba12.yaml │ ├── remove-deprecated-ops-d01b83362c3557ca.yaml │ ├── remove-deprecated-parameterview-cc08100049605b73.yaml │ ├── remove-networkx-converters-0a7eccf6fa847975.yaml │ ├── remove-pulse-deepcopy-9a19aa7f6452248b.yaml │ ├── remove-tweedledum-0f21ca327a782bc3.yaml │ ├── remove-visualization-optionals-e4c3ed415bc1bbbe.yaml │ ├── remove_gates_to_decompose-7099068d2886dce2.yaml │ ├── remove_mcmt_label-cee8a11e0164f8e1.yaml │ ├── rustworkx-not-retworkx-b7c4da600df58701.yaml │ ├── rusty-sabre-layout-2e1ca05d1902dcb5.yaml │ ├── scipy-evolvers-ca92bcb90e90b035.yaml │ ├── solovay-kitaev-transpiler-pass-bc256c2f3aac28c6.yaml │ ├── speedup-random-circuits-8d3b724cce1faaad.yaml │ ├── target-aware-optimize-1q-decomposition-cb9bb4651607b639.yaml │ ├── target-aware-unroll-custom-definitions-a1b839de199ca048.yaml │ ├── toqm-extra-0.1.0-4fedfa1ff0fedfa0.yaml │ ├── transfer_clifford_cnotdihedral_synth-8d73833d78ff09c4.yaml │ ├── turbo-gradients-5bebc6e665b900b2.yaml │ ├── update-sampler-zero-filter-8bf0d721af4fbd17.yaml │ ├── upgrade-pulse-builder-and-rzx-builder-033ac8ad8ad2a192.yaml │ ├── use_dag-one-qubit-euler-decomposer-6df00931384b14bd.yaml │ ├── vf2_custom_score_analysis-abb191d56c0c1578.yaml │ ├── visualization-missing-channels-bc66c1c976a79c06.yaml │ └── wrap-method-311-147d254d4b40e805.yaml │ ├── 0.24 │ ├── 6110-709f6fa891bdb26b.yaml │ ├── adapt-vqe-thresholds-239ed9f250c63e71.yaml │ ├── add-alternative-hls-construction-afec157f7cf15b0b.yaml │ ├── add-clifford-from-matrix-3184822cc559e0b7.yaml │ ├── add-cmap-componets-7ed56cdf294150f1.yaml │ ├── add-commutator-96ef07433e8ca4e7.yaml │ ├── add-ecr-sx-equivalences-5b6fe73ec599d1a4.yaml │ ├── add-equiv-stabilizerstate-6ef8790c765690c1.yaml │ ├── add-gates-to-Clifford-class-7de8d3213c60836a.yaml │ ├── add-global-phase-gate-b52c5b25ab8a3cf6.yaml │ ├── add-hls-plugins-038388970ad43c55.yaml │ ├── add-inverse-ecr-e03720252a0c9c1e.yaml │ ├── add-layout-attribute-c84e56c08ca93ada.yaml │ ├── add-minimum-point-pass-09cf9a9eec86fd48.yaml │ ├── add-new-symbolic-pulses-4dc46ecaaa1ba928.yaml │ ├── add-support-for-qpy-reference-70478baa529fff8c.yaml │ ├── add-swap_nodes-to-dagcircuit-methods-2964426f02251fc4.yaml │ ├── adding-partial-transpose-040a6ff00228841b.yaml │ ├── ae-warns-on-goodstate-7dbb689ba6a5e5e4.yaml │ ├── append-bad-argument-error-cc9eafe94cc39033.yaml │ ├── bump-msrv-f6f2bd42b9636b5e.yaml │ ├── circuit_metadata_always_dict-49015896dfa49d33.yaml │ ├── circuit_visualization_args_removed-73399f362ab863b3.yaml │ ├── clifford_cz_lnn_synthesis-4b0328b581749df5.yaml │ ├── clip-quantumstate-probabilities-5c9ce05ffa699a63.yaml │ ├── computeuncompute-local-fidelity-501fe175762b7593.yaml │ ├── coupling-map-eq-b0507b703d62a5f3.yaml │ ├── crx-equivalences-cc9e5c98bb73fd49.yaml │ ├── deepcopy-option-circuit_to_dag-1d494b7f9824ec93.yaml │ ├── deepcopy-option-dag_to_circuit-2974aa9e66dc7643.yaml │ ├── delete-args-and-methods-in-primitives-d89d444ec0217ae6.yaml │ ├── deprecate-algorithms-c6e1e28b6091c507.yaml │ ├── deprecate-bip-mapping-f0025c4c724e1ec8.yaml │ ├── deprecate-opflow-qi-32f7e27884deea3f.yaml │ ├── deprecate-pauli-table-fc6dcdb5eeb6e0c4.yaml │ ├── deterministic-barrier-before-final-measurements-04e817d995794067.yaml │ ├── entry_point_obj-60625d9d797df1d9.yaml │ ├── error-pass-callable-message-3f29f09b9faba736.yaml │ ├── expression-var-order-d87e9b04fb5d545c.yaml │ ├── filter-faulty-qubits-and-gates-v2-converter-b56dac9c0ce8057f.yaml │ ├── filter-idle-qubits-cmap-74ac7711fc7476f3.yaml │ ├── fix-9798-30c0eb0e5181b691.yaml │ ├── fix-PauliOp-adjoint-a275876185df989f.yaml │ ├── fix-ae-algorithms-1c0a43c596766cb3.yaml │ ├── fix-backendsampler-padding-ed959e6dc3deb3f3.yaml │ ├── fix-backendv1-pm-config-from-backend-914869dd6e1c06be.yaml │ ├── fix-backendv2-converter-simulator-e8f150d1fd6861fe.yaml │ ├── fix-backendv2converter-de342352cf882494.yaml │ ├── fix-bound-pm-backend-primitives-98fd11c5e852501c.yaml │ ├── fix-circuit-drawer-for-qc-params-e78c67310ae43ccf.yaml │ ├── fix-circuit-drawing-low-compression-965c21de51b26ad2.yaml │ ├── fix-control-with-string-parameter-4eb8a308170e08db.yaml │ ├── fix-dag-parameterized-calibration-f5c0a740fcdeb2ec.yaml │ ├── fix-deprecated-bit-qpy-roundtrip-9a23a795aa677c71.yaml │ ├── fix-empty-pauli-label-ce2580584db67a4d.yaml │ ├── fix-gate-direction-calibration-c51202358d86e18f.yaml │ ├── fix-instmap-add-with-arguments-250de2a7960565dc.yaml │ ├── fix-instmap-from-target-f38962c3fd03e5d3.yaml │ ├── fix-macros-measure-with-backendV2-4354f00ab4f1cd3e.yaml │ ├── fix-marginal-distribution-np-ints-ee78859bfda79b60.yaml │ ├── fix-memory-commutation-checker-dbb441de68706b6f.yaml │ ├── fix-missing-instproperty-calibration-e578052819592a0b.yaml │ ├── fix-numpy-eigensolver-sparse-0e255d7b13b5e43b.yaml │ ├── fix-parameter-is_real-8b8f99811e58075e.yaml │ ├── fix-partial-reverse-gradient-f35fb1f30ee15692.yaml │ ├── fix-qasm-reset-ef7b07bf55875be7.yaml │ ├── fix-qasm2-c3sxgate-47171c9d17876219.yaml │ ├── fix-qasm3-name-escape-43a8b0e5ec59a471.yaml │ ├── fix-qpy-import-StatePreparation-e20f8ab07bfe39a3.yaml │ ├── fix-qpy-mcxgray-421cf8f673f24238.yaml │ ├── fix-random-circuit-conditional-6067272319986c63.yaml │ ├── fix-register-name-format-deprecation-61ad5b06d618bb29.yaml │ ├── fix-routing-passes-for-none-coupling_map-c4dd53594a9ef645.yaml │ ├── fix-setting-circuit-data-operation-1b8326b1b089f10c.yaml │ ├── fix-sk-sdg-81ec87abe7af4a89.yaml │ ├── fix-target-aquire_alignment-typo-d32ff31742b448a1.yaml │ ├── fix-template-opt-bd3c40382e9a993b.yaml │ ├── fix-tensoredop-to-matrix-6f22644f1bdb8b41.yaml │ ├── fix-type-angles-euler-decompose-233e5cee7205ed03.yaml │ ├── fix-unroll-custom-definitions-empty-definition-4fd175c035445540.yaml │ ├── fix-vqd-with-spsa-optimizers-9ed02b80f26e8abf.yaml │ ├── fix_9559-ec05304e52ff841f.yaml │ ├── gate-direction-swap-885b6f8ba9779853.yaml │ ├── improve-transpile-typing-de1197f4dd13ac0c.yaml │ ├── include-ecr-gates-for-pulse-scaling-8369eb584c6d8fe1.yaml │ ├── iterative-phase-estimation-bugfix-b676ffc23cea8251.yaml │ ├── new-constructor-target-from-configuration-91f7eb569d95b330.yaml │ ├── new-deprecation-utilities-066aff05e221d7b1.yaml │ ├── operator-apply-permutation-c113c05513cb7881.yaml │ ├── options-implement-mutable-mapping-b11f4e2c6df4cf31.yaml │ ├── paulilist-do-not-broadcast-from-paulis-96de3832fba21b94.yaml │ ├── primitive-job-submit-a7633872e2ae3c7b.yaml │ ├── qasm2-exporter-rewrite-8993dd24f930b180.yaml │ ├── qasm2-parser-rust-ecf6570e2d445a94.yaml │ ├── qnspsa-float-bug-fix-4035f7e1eb61dec2.yaml │ ├── rearrange-gradient-result-order-1596e14db01395f5.yaml │ ├── remove-deprecated-factorizers-linear-solvers-4631870129749624.yaml │ ├── remove-execute_function-max_credits-8c822b8b4b3d84ba.yaml │ ├── remove-faulty-qubits-support-00850f69185c365e.yaml │ ├── rename-fake-backends-b08f8a66bc19088b.yaml │ ├── rename-graysynth-3fa4fcb7d096ab35.yaml │ ├── sabre-sort-rng-056f26f205e38bab.yaml │ ├── sparsepauliop-improved-parameter-support-413f7598bac72166.yaml │ ├── speedup-one-qubit-optimize-pass-483429af948a415e.yaml │ ├── stabilizer_state_synthesis-c48c0389941715a6.yaml │ ├── staged-pass-manager-drawer-f1da0308895a30d9.yaml │ ├── su2-synthesis-295ebf03d9033263.yaml │ ├── support-disjoint-cmap-sabre-551ae4295131a449.yaml │ ├── switch-case-9b6611d0603d36c0.yaml │ ├── symbolic-pulse-complex-deprecation-89ecdf968b1a2d89.yaml │ ├── target-aware-layout-routing-2b39bd87a9f928e7.yaml │ ├── target-transpile-d029922a5dbc3a52.yaml │ ├── transpile-coupling-maps-3a137f4ca8e97745.yaml │ ├── trotter-time-dep-hamiltonians-8c6c3d5f629e72fb.yaml │ ├── unitary-synthesis-based-on-errors-8041fcc9584f5db2.yaml │ ├── unroll-forloops-7bf8000620f738e7.yaml │ ├── update-pulse-gate-pass-for-target-ebfb0ec9571f058e.yaml │ ├── update-state-visualization-6836bd53e3a24891.yaml │ ├── vf2-post-layout-max-trials-98b1c736e2e33861.yaml │ ├── vf2postlayout-fix-16bb54d9bdf3aaf6.yaml │ └── vqd-list-initial-points-list-optimizers-033d7439f86bbb71.yaml │ ├── 0.25 │ ├── 433_qubit_coordinates_map-8abc318fefdb99ac.yaml │ ├── add-abs-to-parameterexpression-347ffef62946b38b.yaml │ ├── add-block-collection-options-359d5e496313acdb.yaml │ ├── add-classical-predecessors-9ecef0561822e934.yaml │ ├── add-control-flow-to-commutative-cancellation-pass-85fe310d911d9a00.yaml │ ├── add-control-flow-to-consolidate-blocks-e013e28007170377.yaml │ ├── add-dag-causal-cone-5a19311e40fbb3af.yaml │ ├── add-diagonal-to-DiagonalGate-c945e0f8adcd2940.yaml │ ├── add-feature-negativity-logarithmic-negativity-fce5d8392460a0e9.yaml │ ├── add-method-for-mapping-qubit-clbit-to-positional-index-6cd43a42f56eb549.yaml │ ├── add-pauli-equivalences-74c635ec5c23ee33.yaml │ ├── add-schmidt-decomposition-c196cff16381b305.yaml │ ├── ancilla_allocation_no_cmap-ac3ff65b3639988e.yaml │ ├── circuit-assign-parameter-to-concrete-value-7cad75c97183257f.yaml │ ├── clifford-no-circuly-c7c4a1c9c5472af7.yaml │ ├── ctrl-flow-o2-o3-83f660d704226848.yaml │ ├── cx_cz_synthesis-3d5ec98372ce1608.yaml │ ├── dag-substitute-node-propagate-condition-898052b53edb1f17.yaml │ ├── dagcircuit-separable-circuits-142853e69f530a16.yaml │ ├── deprecate-algorithms-7149dee2da586549.yaml │ ├── deprecate-circuit-library-jupyter-629f927e8dd5cc22.yaml │ ├── deprecate-complex-amp-41381bd9722bc878.yaml │ ├── deprecate-get_vf2_call_limit-826e0f9212fb27b9.yaml │ ├── deprecate-instruction-qasm-9380f721e7bdaf6b.yaml │ ├── deprecate-namespace-a2ac600f140755e2.yaml │ ├── deprecate-pulse-Call-instruction-538802d8fad7e257.yaml │ ├── discrete-pulse-library-deprecation-3a95eba7e29d8d49.yaml │ ├── display-control-flow-mpl-drawer-2dbc7b57ac52d138.yaml │ ├── drop-python3.7-8689e1fa349a49df.yaml │ ├── enable_target_aware_meas_map-0d8542402a74e9d8.yaml │ ├── faster-parameter-rebind-3c799e74456469d9.yaml │ ├── filter-schedule-block-29d392ca351f1fb1.yaml │ ├── fix-0q-operator-statevector-79199c65c24637c4.yaml │ ├── fix-1q-matrix-bug-in-quantum-shannon-decomposer-c99ce6509f03715b.yaml │ ├── fix-basicswap-fakerun-7469835327f6c8a1.yaml │ ├── fix-bit-copy-4b2f7349683f616a.yaml │ ├── fix-checkmap-nested-condition-1776f952f6c6722a.yaml │ ├── fix-collapse-with-clbits-e14766353303d442.yaml │ ├── fix-compose-switch-19ada3828d939353.yaml │ ├── fix-controlflow-builder-nested-switch-008b8c43b2153a1f.yaml │ ├── fix-decompose-name-f83f5e4e64918aa9.yaml │ ├── fix-delay-padding-75937bda37ebc3fd.yaml │ ├── fix-dispatching-backends-28aff96f726ca9c5.yaml │ ├── fix-exception-decription-3ba0b5db82c576cf.yaml │ ├── fix-exception-from_dimacs_file-b9338f3c913a9bff.yaml │ ├── fix-initial_layout-loose-qubits-0c59b2d6fb99d7e6.yaml │ ├── fix-mcrz-relative-phase-6ea81a369f8bda38.yaml │ ├── fix-outputs-of-measure_v2-8959ebbbf5f87294.yaml │ ├── fix-partial-transpose-output-dims-3082fcf4147055dc.yaml │ ├── fix-plot-legend-not-showing-up-3202bec143529e49.yaml │ ├── fix-pm-config-from-backend-f3b71b11858b4f08.yaml │ ├── fix-primitives-import-warnings-439e3e237fdb9d7b.yaml │ ├── fix-qasm-circuit-export-943394536bc0d292.yaml │ ├── fix-regression-in-the-LaTeX-drawer-of-QuantumCircuit-7dd3e84e1dea1abd.yaml │ ├── fix-synth-fail-with-symbolic-angles-a070b9973a16b8c3.yaml │ ├── fix-synthesis-cf-mapping-fe9bd2e5fbd56dfb.yaml │ ├── fix-transpile-pickle-4045805b67c0c11b.yaml │ ├── fix-update-from-instruction-schedule-map-d1cba4e4db4b679e.yaml │ ├── fix-vf2-scoring-1q-e2ac29075831d64d.yaml │ ├── fix-vqd-result-27b26f0a6d49e7c7.yaml │ ├── fix_9016-2e8bc2cb10b5e204.yaml │ ├── fixes_8060-ae91e0da9d53a288.yaml │ ├── flatten-nlocal-family-292b23b99947f3c9.yaml │ ├── gaussian-square-echo-pulse-84306f1a02e2bb28.yaml │ ├── has-pygments-tester-3fb9f9c34907d45d.yaml │ ├── improve-quantum-circuit-assign-parameters-typing-70c9623405cbd420.yaml │ ├── linear-functions-usability-45265f293a80a6e5.yaml │ ├── new-circuit-qasm2-methods-b1a06ee2859e2cce.yaml │ ├── normalize-stateprep-e21972dce8695509.yaml │ ├── optimize-consolidate-blocks-3ea60c18bc546273.yaml │ ├── parameter-float-cast-48f3731fec5e47cd.yaml │ ├── pauli-rotation-equivalences-6b2449c93c042dc9.yaml │ ├── preset-pm-vf2-max-trials-958bb8a36fff472f.yaml │ ├── qasm3-alias-refactor-3389bfce3e29e4cf.yaml │ ├── qasm3-no-subroutine-b69c5ed7c65ce9ac.yaml │ ├── qiskit_version-956916f7b8d7bbb9.yaml │ ├── qpy-layout-927ab34f2b47f4aa.yaml │ ├── qpy_supports_discriminator_and_kernel-3b6048bf1499f9d3.yaml │ ├── relax_wire_order_restrictions-ffc0cfeacd7b8d4b.yaml │ ├── remove-deprecate-instructionset-circuit-cregs-91617e4b0993db9a.yaml │ ├── remove-deprecated-mpl-drawer-9d6eaa40d5a86777.yaml │ ├── remove-transpile-broadcast-1dfde28d508efa0d.yaml │ ├── remove-util-3cd9eae2efc95176.yaml │ ├── sabre-control-flow-3772af2c5b02c6d5.yaml │ ├── sabre-ctrl-flow-o1-431cd25a19adbcdc.yaml │ ├── support-SparsePauliOp-Parameter-multiplication-245173f0b232f59b.yaml │ ├── token-swapper-rustworkx-9e02c0ab67a59fe8.yaml │ ├── umda-callback-eb644a49c5a9ad37.yaml │ ├── unintended-rounding-with-max-size-1498af5f9a467990.yaml │ └── use-abi3-4a935e0557d3833b.yaml │ ├── 0.45 │ ├── 10787-078d7caa70fc7de8.yaml │ ├── Adding-BackendV2-support-to-schedule-of-qiskit.compiler.scheduler-a0366d3397c73af0.yaml │ ├── add-annotated-operations-de35a0d8d98eec23.yaml │ ├── add-clifford-from-linear-and-permutation-7a2bdbaae7c1c7e8.yaml │ ├── add-expr-to-drawers-7a1ffa802064cad7.yaml │ ├── add-limits-in-commutation-checker-66a1b9e90921621f.yaml │ ├── add-operator-draw-method-47f0381ba3f2a280.yaml │ ├── add-passmanager-module-3ae30cff52cb83f1.yaml │ ├── add-qpy-symbolic-encoding-81d5321af38f259f.yaml │ ├── add-sabre-starting-layout-7e151b7abb8a6c13.yaml │ ├── add-skip_check-option-UnitaryGate-fb3fad8a9ac3c156.yaml │ ├── add-target-to-hls.yaml │ ├── added-sign-feature-parameterexpression-57693dd69103dc8c.yaml │ ├── backend-estimator-v2-support-a698353aeeb5236c.yaml │ ├── change-mpl-default-55c19d84713f276c.yaml │ ├── channel-validation-bug-fix-c06f8445cecc8478.yaml │ ├── dag-appenders-check-84d4ef20c1e20fd0.yaml │ ├── dag-deprecate-none-args-e6ef868148da275d.yaml │ ├── dd-pg-10833-ddddee68ffd913c4.yaml │ ├── decimals_for_sampler-5aaa56642cce23e0.yaml │ ├── default-reserved-plugin-name-3825c2000a579e38.yaml │ ├── deprecate-algorithm-utils-6cdc5856015a7e65.yaml │ ├── deprecate-bind-parameters-283c94069e8a9142.yaml │ ├── deprecate-duplicates-a871f83bbbe1c96f.yaml │ ├── deprecate-extensions-d7ab3fca19962e2e.yaml │ ├── deprecate-unroller-2081d35d6d83e7e9.yaml │ ├── discrete-basis-gatedirection-bdffad3b47c1c532.yaml │ ├── display-control-flow-text-8db4f15a68bf5322.yaml │ ├── expr-rvalue-conditions-8b5d5f7c015658c0.yaml │ ├── extend-coupling-map-reduce-bb19e35ec939570d.yaml │ ├── fix-clifford-from-diagonal-7708654373bd5b8b.yaml │ ├── fix-commutative-analysis-e74083969db46d0f.yaml │ ├── fix-cu-assign-parameters-fbf6f21d3e0c8c0b.yaml │ ├── fix-final-layout-in-apply-layout-dfbdbde593cf7929.yaml │ ├── fix-flow-cregbundle-transpiled-482979d57382b1dc.yaml │ ├── fix-gate-direction-d8bc96b62b27dba8.yaml │ ├── fix-global-phase-control-flow-builders-38302f41302be928.yaml │ ├── fix-handling-of-mixed-ideal-target-with-filter-qubits-171894cb758356ca.yaml │ ├── fix-input-normalization-of-transpile-initial-layout.yaml │ ├── fix-iqx-colors-a744cea132896e53.yaml │ ├── fix-parameter-hash-d22c270090ffc80e.yaml │ ├── fix-qasm2-final-comment-f0904c3e13215a00.yaml │ ├── fix-qpy-controlled-unitary-26355d6ffa4cd2fb.yaml │ ├── fix-qpy-nested-custom-controlled-2a23dfe828bc46c8.yaml │ ├── fix-qpy-repeated-controlled-gates-e19fc4ee65a22756.yaml │ ├── fix-random-statevector-a8dbf991cbbdee8e.yaml │ ├── fix-sabre-performance-1b4503b6ecde6d13.yaml │ ├── fix-timeline-draw-unscheduled-warning-873f7a24c6b51e2c.yaml │ ├── fix_9363-445db8fde1244e57.yaml │ ├── fix_pauli_new_style_bit-0704933127b4debe.yaml │ ├── fixes_7677_1-b9322834cae57b68.yaml │ ├── h_basic_aer-3fc5e6776f0de9c1.yaml │ ├── hls-with-recursion-and-ucd-b559beb3a148fe59.yaml │ ├── implement-type-check-in-copy-method-of-QuantumCircuit-class-ef18c8e0a5c4cb8d.yaml │ ├── improve-performance-merge-adjacent-barriers-pass-c0cd064bdd059811.yaml │ ├── keep-initial-resets-a5f75cb16c8edb57.yaml │ ├── min-qubits-basis-translation-09380145f3cf97fc.yaml │ ├── num-ancilla-qubits-deprecation-d616c3fc24250d22.yaml │ ├── numpy-2-pin-f600328f24fab6dd.yaml │ ├── optimise-parameter-assign-398ed4f2074ca201.yaml │ ├── optimise-unsorted-parameters-310e5f2420771f49.yaml │ ├── paulivecplot-normalization-5dd3cf3393c75afb.yaml │ ├── primitives-dynamic-circuit-b489f82df47af138.yaml │ ├── qasm2-fix-zero-op-barrier-4af211b119d5b24d.yaml │ ├── qasm2-float-decimal-76b44281d9249f7a.yaml │ ├── qasm2-new-api-4e1e4803d6a5a175.yaml │ ├── qasm_invalid_custom_instruction-7738db7ba1a1a5cf.yaml │ ├── qiskit_terra_version-956916f7b8d7bbb9.yaml │ ├── remove-deprecated-bip-mapper-e1206c8f905502dd.yaml │ ├── remove-deprecated-code-in-0.19-a97ccfec62405b9a.yaml │ ├── remove-deprecated-code-in-0.22-128475199e6f3cc2.yaml │ ├── remove-deprecated-code-in-0.22.0-139fa09ee0cc6df9.yaml │ ├── remove-deprecated-in-quantum-info-0f9bd2b0c093307d.yaml │ ├── remove-toqm-optional-extra-90e974b64ec4a3bd.yaml │ ├── remove_0.15_qiskit_scheduler_utils-fab5ec8a7ceddb56.yaml │ ├── remove_8070-09b64e3a2aca1c2d.yaml │ ├── remove_deprecated_functionality-13b33f9dfa7d690a.yaml │ ├── remove_depreciated_0.15_code-ee5c7d343e310888.yaml │ ├── removed_deprecated_0.21-6c93f7bbc50ae40e.yaml │ ├── removed_deprecation_0.20-17b0ea6a3980eb4f.yaml │ ├── rust-1.64-add4a4a8e5ce9786.yaml │ ├── sabre-decay-physical-ad2f470cd45d69f3.yaml │ ├── sampler-with-no-measure-6cd3a05555187b58.yaml │ ├── seed-sabre-with-layout-17d46e1a6f516b0e.yaml │ ├── single-pulse-rx-cal-347aadcee7bfe60b.yaml │ ├── singletons-83782de8bd062cbc.yaml │ ├── sparse-pauli-op-apply-layout-43149125d29ad015.yaml │ ├── sparse-pauli-op-constraint-pauli-setter-52f6f89627d1937c.yaml │ ├── sparse-pauli-op-num-qubits-9c1a3f7dcc7949b9.yaml │ ├── support-empty-delete-for-pauli-16c5c5fae890c16c.yaml │ ├── timeline-visualisation-deprecated-bit-index-7277aa6e2a903cb7.yaml │ ├── transpile-layout-improvements-118dd902d93e5b96.yaml │ ├── unitary-overlap-7dde87a8e2d7a1f7.yaml │ ├── unitary-u-not-u3-0a32c2d968f7890e.yaml │ └── update-gate-map-visualizations-6ea907a0502fdc1a.yaml │ ├── 0.9 │ ├── _util-removal-289fe623948983b8.yaml │ ├── changes-on-upgrade-6fcd573269a8ebc5.yaml │ ├── composite-gate-removal-f615a7d0d6a1214d.yaml │ ├── dag-draw-method-968b6fa96050e255.yaml │ ├── deprecate-U-CX-aef8e96ee489a141.yaml │ ├── deprecate-u0-gate-6581928ddddb45f1.yaml │ ├── deprecated-compiler-dacafa4f0c1d0edd.yaml │ ├── error_map-plot-5d995d0fd67fbe35.yaml │ ├── jupyter-progressbar-api-change-6f60185bc71fc5f0.yaml │ ├── layout-in-drawers-5ec14f7827e90c51.yaml │ ├── missing-changelog-d8129ba95dde3156.yaml │ ├── new-features-0.9-159645f977a139f7.yaml │ ├── pulse_samplers-to-pulse_lib-d7df39e8ce701f6b.yaml │ ├── qobj-as-dict-deprecate-9b0535234a3d605f.yaml │ ├── schedule-delay-command-04bda7ebafa91676.yaml │ ├── update-qsphere-549295a8a9a55016.yaml │ ├── user-config-updates-969bd1a0a5e3a0d8.yaml │ ├── visualization-updates-30a8886dd3048a93.yaml │ └── warnings-on-import-21119aefb693e064.yaml │ ├── 1.0 │ ├── 5079_IntegerComparator_num_ancilla_qubits-bd1cff3366c345ae.yaml │ ├── Update_backend_model_up_conversion_logic-75ecc2030a9fe6b1.yaml │ ├── __qiskit_version__11305-bcf134513641462b.yaml │ ├── add-annotated-arg-to-control-d9a188fe66f037ad.yaml │ ├── add-annotated-arg-to-inverse-2e577f33793c06b1.yaml │ ├── add-annotated-to-drawers-8bcc3a069dd981ad.yaml │ ├── add-commutation-library-88b7ff65b3d35f9a.yaml │ ├── add-filter-op-nodes-aa024a0f1058e4b7.yaml │ ├── add-generic-fake-backend-c1434e0c5c413935.yaml │ ├── add-generic-v1-fake-backends-f08694b03585833a.yaml │ ├── add-invalid-layout-error-d0d64086748d4b54.yaml │ ├── add-num-processes-kwarg-to-transpiler-3cb7f3457b54a535.yaml │ ├── add-optimize-annotated-pass-89ca1823e7109f81.yaml │ ├── add-parameter-pow-ff5f8d10813f5733.yaml │ ├── add-qpy-loading-depr-warning-8628b23ca63c3eb5.yaml │ ├── add-qpy-version-flag-6bb1756e671fde55.yaml │ ├── add-synth-circuit-from-stabilizer-list-4cf9cfa01bbc7ddf.yaml │ ├── add-token-swapper-synthesis-plugin-4ed5009f5f21519d.yaml │ ├── allow-none-layout-for-sparse_pauli_op-212470d5b5b307a0.yaml │ ├── aqc-faster-default-8d47c88fefd1b6f6.yaml │ ├── assign-by-name-305f2bbf89099174.yaml │ ├── bit-interning-35da0aaa76aa7fc5.yaml │ ├── bump-msrv-f1449061b057cac5.yaml │ ├── circuit-get-parameter-d33c08925b5c7d72.yaml │ ├── commutative-inv-cancellation-uptophase-028525d21b199cef.yaml │ ├── dep-estimator-paulilist-ef2bb2865b66f012.yaml │ ├── deprecate-circuit-qasm-e5bbad027388e3f2.yaml │ ├── deprecate-pulse-instruction-call-52dca0dd26e1c768.yaml │ ├── deprecate-qinfo-synthesis-23abd8c34fc0f52e.yaml │ ├── deprecate_aquire_alignment-28f64480ed838328.yaml │ ├── deprecate_clifford_indexing-5e3500301a696bdc.yaml │ ├── deprecation-passmanager-0.25-95eb9b45b517370a.yaml │ ├── expr-hashable-var-types-7cf2aaa00b201ae6.yaml │ ├── expr-var-standalone-2c1116583a2be9fd.yaml │ ├── fast-sparse-pauli-operator-b41cacf11e8c4e0e.yaml │ ├── fix-annotated-qpy-6503362c79f29838.yaml │ ├── fix-aqc-optimizer-typehint-34b54c6278d23f79.yaml │ ├── fix-barrier-arg-list-check-ff69f37ede6bdf6c.yaml │ ├── fix-block-collapser-cregs-6c2d2dc6931d7bad.yaml │ ├── fix-blueprint-circuit-_append-b4d6c9c41db860f5.yaml │ ├── fix-blueprintcircuit-phase-7102043cf2e47e33.yaml │ ├── fix-circuit-barrier-c696eabae1dcc6c2.yaml │ ├── fix-circuit-compose-duplicate-59de6c1c51f58e54.yaml │ ├── fix-clifford-qpy-2ffc8308c888e7e0.yaml │ ├── fix-default-case-empty-0076264db04d6c7a.yaml │ ├── fix-delay-broadcast-e8762b01dfd7e94f.yaml │ ├── fix-error-message-qpy-version-cf0763da22ce2224.yaml │ ├── fix-instruction-condition-bits-17694f98628b30ad.yaml │ ├── fix-leaking-split-barrier-7c143d6b13b96ced.yaml │ ├── fix-missing-pulse-lib-c370f5b9393d0df6.yaml │ ├── fix-operator-power-bd9a00b4e6700d2e.yaml │ ├── fix-optimize-1q-sim-407b88e45e6062b6.yaml │ ├── fix-optimize-swap-before-measure-67e8896da2215d49.yaml │ ├── fix-param-global-phase-31547267f6124552.yaml │ ├── fix-parameterized-self-inverse-7cb2d68b273640f8.yaml │ ├── fix-plot-state-city-viz-2963c83bcf3d3347.yaml │ ├── fix-pulse-channel-hash-549a8fb5d8738c4d.yaml │ ├── fix-qasm2-deepcopy-conditioned-gate-2fa75fee622c1fc0.yaml │ ├── fix-qpy-custom-gates-name-conflict-5c4c7df3484f04e0.yaml │ ├── fix-qpy-statepreparation-retrieval-1feea5eb74db7f1e.yaml │ ├── fix-qpy-use-symengine-bool-like-d17550057a58abf2.yaml │ ├── fix-qreg-visualization-after-layout-42d3e643b923d8bc.yaml │ ├── fix-schedule-qpy-use-symengine-05ae1dfab73e3ff8.yaml │ ├── fix-stabilizerstate-repr-908c830028b1f868.yaml │ ├── fix-unitary-equal-eb828aca3aaa5e73.yaml │ ├── fix-v2-conversion-with-defective-backend-6d9cebe55b06b797.yaml │ ├── fix_11143-d32a262538873a9d.yaml │ ├── fix_11536-c87d192a133b3dc3.yaml │ ├── fixes_10744-83e5f33f5db74a22.yaml │ ├── high-level-synthesis-plugin-list-beff523921c4c4eb.yaml │ ├── instructiondurations-subclass-from-backend-1240cb924f386816.yaml │ ├── iqp-default-1.0-d9335e866ac8fdbc.yaml │ ├── lazy-testers-warn-on-import-errors-95a9bdaacc9c3d2b.yaml │ ├── move-synthesis-plugin-error-61e3683bf5a0c225.yaml │ ├── new-exception-too-wide-3231c1df15952445.yaml │ ├── overlap-circuit-barriers-63b9b1be9c1da100.yaml │ ├── parameter-uuid-60dd46a739afabce.yaml │ ├── parameterexpression.numeric-958d365dadabfb81.yaml │ ├── platform-support-f7f693aaf5dec044.yaml │ ├── preset-pass-manager-approximation-degree-503198b1974adf79.yaml │ ├── preset-passmanager-coupling-map-89e588e4260cb214.yaml │ ├── primitives-v2-df871c0c6ac0b94a.yaml │ ├── psutil-dependancy-removed-bf5366f516d92378.yaml │ ├── qasm3-importer-0ba0691bcdeba72f.yaml │ ├── qasm3-minor-version-2ae00ba8f72a1a53.yaml │ ├── qasm3-stable-switch-61a10036d1587778.yaml │ ├── qft_lnn_synthesis-c917dc00c3a8cabc.yaml │ ├── refactor-basicaer-to-basicprovider-e27aff9c8e81d26e.yaml │ ├── remove-aer-hooks-1144714bbbdd0fe8.yaml │ ├── remove-algorithm-utils-707648b69af439dc.yaml │ ├── remove-bind-parameters-13da38072c28a881.yaml │ ├── remove-cfun-toplevel-5d0d58bed83d57ed.yaml │ ├── remove-configfake-c009f3d28b4fa12b.yaml │ ├── remove-dag-none-be220777dc246803.yaml │ ├── remove-deprecated-funcs-in-qobj-converter-402408e84b3043bb.yaml │ ├── remove-deprecated-parametric-pulses-class-667e4b970e1163b3.yaml │ ├── remove-deprecated-quantumcircuit-a8c69a8e0b480e17.yaml │ ├── remove-deprecated-unroller-4693330708c681e0.yaml │ ├── remove-deprecated-visualization-pulse-8adf40ff1a69df63.yaml │ ├── remove-discrete-pulse-library-d7aa098a528161df.yaml │ ├── remove-execute-699e9aca1662c174.yaml │ ├── remove-extensions-ce520ba419c93c58.yaml │ ├── remove-fake-provider-and-backends-2fcf5256c772935f.yaml │ ├── remove-ibmq-4bb57a04991da9af.yaml │ ├── remove-legacy-qasm2-parser-53ad3f1817fd68cc.yaml │ ├── remove-namespace-hooks-995bdb7515a9fe35.yaml │ ├── remove-old-noise-passes-7e157023a04f5f16.yaml │ ├── remove-opflow-qi-utils-3debd943c65b17da.yaml │ ├── remove-pulse-scoped-parameters-fa897399900f2ef2.yaml │ ├── remove-qiskit-algorithms-a43541fe24b72208.yaml │ ├── remove-qiskit-test-8f3f43ed2a185f2f.yaml │ ├── remove-tools-2d13fc5ec1f45336.yaml │ ├── remove-transpiler-synthesis-3efbd076905ed141.yaml │ ├── remove-visualization-code-deprecated-in-0.22-7bc99235f5912424.yaml │ ├── remove_deprecated_legacy_pulse_builder_commands-61b85da62d82fb8c.yaml │ ├── remove_qinfo_synthesis-1917c7ccfcc62180.yaml │ ├── rollup-removals-ce8326ea90c0ad99.yaml │ ├── rr-decomposition-synthesis-70eb88ada9305916.yaml │ ├── sabre-no-route-barrier-bc82fecb65d3ab9a.yaml │ ├── singletonize-instructions-78723f68cd0ac03f.yaml │ ├── standard-gate-mapping-parameters-2b438cea945c82cd.yaml │ ├── symbolic-pulse-disable-validation-19cd8506b3a839b6.yaml │ ├── symengine_1-c907ed541eeb9a02.yaml │ ├── template-match-symbols-c00786155f101e39.yaml │ ├── terra-nullius-7ef598626d8118c1.yaml │ ├── update-dag-dependency-drawer-d06d4ae660c1cbc2.yaml │ ├── update-primitive-job-f5c9b31f68c3ec3d.yaml │ ├── upgrade-pass-manager-98aa64edde67b5bb.yaml │ ├── vf2-threading-b778a36de5b8832a.yaml │ └── vf2postlayout-no-better-solution-eb5ced3c8a60ea23.yaml │ ├── 1.1 │ ├── abstract-commutation-analysis-3518129e91a33599.yaml │ ├── add-annotated-arg-to-power-4afe90e89fa50f5a.yaml │ ├── add-backend-estimator-v2-26cf14a3612bb81a.yaml │ ├── add-backend-sampler-v2-5e40135781eebc7f.yaml │ ├── add-bitarray-utilities-c85261138d5a1a97.yaml │ ├── add-ctrl_state-mcp-parameter-b23562aa7047665a.yaml │ ├── add-elide-permutations-to-pipeline-077dad03bd55ab9c.yaml │ ├── add-elide-swaps-b0a4c373c9af1efd.yaml │ ├── add-linear-plugin-options-b8a0ffe70dfe1676.yaml │ ├── add-run-all-plugins-option-ba8806a269e5713c.yaml │ ├── add-scheduler-warnings-da6968a39fd8e6e7.yaml │ ├── add-use-dag-flag-two-qubit-basis-decomposer-024a9ced9833289c.yaml │ ├── added-parameter-ctrl_state-mcx-816dcd80e459a5ed.yaml │ ├── classical-store-e64ee1286219a862.yaml │ ├── commutation-checker-utf8-47b13b78a40af196.yaml │ ├── commutative-cancellation-preset-passmanager-c137ce516a10eae5.yaml │ ├── databin-construction-72ec041075410cb2.yaml │ ├── databin-mapping-45d24d71f9bb4eda.yaml │ ├── deprecate-3.8-a9db071fa3c85b1a.yaml │ ├── deprecate_providerV1-ba17d7b4639d1cc5.yaml │ ├── expr-bitshift-index-e9cfc6ea8729ef5e.yaml │ ├── faster-lie-trotter-ba8f6dd84fe4cae4.yaml │ ├── fix-backend-primitives-performance-1409b08ccc2a5ce9.yaml │ ├── fix-control-flow-convert-to-target-ae838418a7ad2a20.yaml │ ├── fix-control-flow-fold-minus-one-f2af168a5313385f.yaml │ ├── fix-custom-pulse-qobj-conversion-5d6041b36356cfd1.yaml │ ├── fix-custom-transpile-constraints-5defa36d540d1608.yaml │ ├── fix-equivalence-setentry-5a30b0790666fcf2.yaml │ ├── fix-evolved-operator-ansatz-empty-ops-bf8ecfae8f1e1001.yaml │ ├── fix-instruction-repeat-conditional-dfe4d7ced54a7bb6.yaml │ ├── fix-inverse-cancellation-self-inverse-e09a5553331e1b0b.yaml │ ├── fix-mcx-mcp-performance-b00040804b47b200.yaml │ ├── fix-missing-qubit-properties-35137aa5250d9368.yaml │ ├── fix-passmanager-reuse-151877e1905d49df.yaml │ ├── fix-pauli-evolve-ecr-and-name-bugs.yaml │ ├── fix-performance-scaling-num-bits-qpy-37b5109a40cccc54.yaml │ ├── fix-pub-coerce-5d13700e15126421.yaml │ ├── fix-pulse-builder-default-alingment-52f81224d90c21e2.yaml │ ├── fix-pulse-parameter-formatter-2ee3fb91efb2794c.yaml │ ├── fix-qdrift-evolution-bceb9c4f182ab0f5.yaml │ ├── fix-scheduling-units-59477912b47d3dc1.yaml │ ├── fix-transpile-control-flow-no-hardware-7c00ad733a569bb9.yaml │ ├── fix_soft_compare-3f4148aab3a4606b.yaml │ ├── fixes_10852-e197344c5f44b4f1.yaml │ ├── fixes_11212-d6de3c007ce6d697.yaml │ ├── followup_11468-61c6181e62531796.yaml │ ├── histogram-style-03807965c3cc2e8a.yaml │ ├── layout-compose-0b9a9a72359638d8.yaml │ ├── macos-arm64-tier-1-c5030f009be6adcb.yaml │ ├── nlocal-perf-3b8ebd9be1b2f4b3.yaml │ ├── numpy-2.0-2f3e35bd42c48518.yaml │ ├── obs-array-coerce-0d-28b192fb3d004d4a.yaml │ ├── operator-from-circuit-bugfix-5dab5993526a2b0a.yaml │ ├── optimization-level2-2c8c1488173aed31.yaml │ ├── optimize-annotated-conjugate-reduction-656438d3642f27dc.yaml │ ├── parameter-hash-eq-645f9de55aa78d02.yaml │ ├── parameter_assignment_by_name_for_pulse_schedules-3a27bbbbf235fb9e.yaml │ ├── pauli-apply-layout-cdcbc1bce724a150.yaml │ ├── public-noncommutation-graph-dd31c931b7045a4f.yaml │ ├── pulse_parameter_manager_compat_with_ParameterVector-7d31395fd4019827.yaml │ ├── qasm3-parameter-gate-clash-34ef7b0383849a78.yaml │ ├── qcstyle-bug-custom-style-dicts-22deab6c602ccd6a.yaml │ ├── quantumcircuit-append-copy-8a9b71ad4b789490.yaml │ ├── qv-perf-be76290f472e4777.yaml │ ├── remove-final-reset-488247c01c4e147d.yaml │ ├── removed_deprecated_0.21-741d08a01a7ed527.yaml │ ├── reverse-permutation-lnn-409a07c7f6d0eed9.yaml │ ├── rework-inst-durations-passes-28c78401682e22c0.yaml │ ├── rust-two-qubit-basis-decomposer-329ead588fa7526d.yaml │ ├── rust-two-qubit-weyl-ec551f3f9c812124.yaml │ ├── sampler-pub-result-e64e7de1bae2d35e.yaml │ ├── show_idle_and_show_barrier-6e77e1f9d6f55599.yaml │ ├── spo-to-matrix-26445a791e24f62a.yaml │ ├── star-prerouting-0998b59880c20cef.yaml │ ├── update-gate-dictionary-c0c017be67bb2f29.yaml │ └── use-target-in-transpile-7c04b14549a11f40.yaml │ ├── 1.2 │ ├── add-generate-preset-pm-global-import-efb12f185f3f738b.yaml │ ├── add-qft-gate-fd4e08f6721a9da4.yaml │ ├── add-sabre-all-threads-option-ad4ff7a4d045cb2b.yaml │ ├── adjust-neato-settings-3adcc0ae9e245ce9.yaml │ ├── annotated-params-116288d5628f7ee8.yaml │ ├── avoid-op-creation-804c0bed6c408911.yaml │ ├── backendv1-d0d0642ed38fed3c.yaml │ ├── bitarray-postselect-659b8f7801ccaa60.yaml │ ├── circuit-gates-rust-5c6ab6c58f7fd2c9.yaml │ ├── default-level-2-generate-preset-passmanager-ec758ddc896ae2d6.yaml │ ├── deprecate-circuit-internal-helpers-ee65fbac455de47c.yaml │ ├── deprecate-legacy-circuit-instruction-8a332ab09de73766.yaml │ ├── deprecate-primitives-v1.yaml │ ├── deprecate-visualize_transition-8c1d257b7f37aa58.yaml │ ├── deprecate_assemble-67486b4d0a8d4f96.yaml │ ├── extract-standard-parametric-controlled-1a495f6f7ce89397.yaml │ ├── fix-2q-basis-decomposer-non-std-kak-gate-edc69ffb5d9ef302.yaml │ ├── fix-InstructionDurations-b47a9770b424d7a0.yaml │ ├── fix-bitarray-fromcounts-nobits-82958a596b3489ec.yaml │ ├── fix-bitarray-slice-bits-shots-c9cb7e5d907722f5.yaml │ ├── fix-consolidate-blocks-custom-gate-no-target-e2d1e0b0ee7ace11.yaml │ ├── fix-cu-rust-6464b6893ecca1b3.yaml │ ├── fix-dd-misalignment-msg-76fe16e5eb4ae670.yaml │ ├── fix-elide-permutations-1b9e1d10c3abb2a4.yaml │ ├── fix-hoare-opt-56d1ca6a07f07a2d.yaml │ ├── fix-kwarg-validation-BitArray-1bf542a1fb5c15c6.yaml │ ├── fix-mcx-performance-de86bcc9f969b81e.yaml │ ├── fix-negative-seed-pm-2813a62a020da115.yaml │ ├── fix-potential-non-determinism-dense-layout-da66de0217121146.yaml │ ├── fix-qft-plugins-7106029d33c44b96.yaml │ ├── fix-qpy-parsing-123-75357c3709e35963.yaml │ ├── fix-qpy-symengine-compat-858970a9a1d6bc14.yaml │ ├── fix-sabre-releasevalve-7f9af9bfc0482e04.yaml │ ├── fix-split-2q-unitaries-custom-gate-d10f7670a35548f4.yaml │ ├── fix-stateprep-normalize-a8057c339ba619bd.yaml │ ├── fix-statevector-sampler-c_if-9753f8f97a3d0ff5.yaml │ ├── fix-synth-qregs-7662681c0ff02511.yaml │ ├── fix_initialize_gates_to_uncompute-d0dba6a642d07f30.yaml │ ├── improve-quantum-causal-cone-f63eaaa9ab658811.yaml │ ├── linear-binary-matrix-utils-rust-c48b5577749c34ab.yaml │ ├── mcx_recursive_clean_ancilla-2b0f6956e0f4cbbd.yaml │ ├── mcxvchain_dirty_auxiliary-5ea4037557209f6e.yaml │ ├── no-elide-routing-none-7c1bebf1283d48c0.yaml │ ├── oxidize-acg-0294a87c0d5974fa.yaml │ ├── oxidize-permbasic-be27578187ac472f.yaml │ ├── oxidize-pmh-ec74e4002510eaad.yaml │ ├── oxidize-synth-clifford-bm-91d8b974ca0522b7.yaml │ ├── oxidize-synth-clifford-greedy-0739e9688bc4eedd.yaml │ ├── peephole-before-routing-c3d184b740bb7a8b.yaml │ ├── port_star_prerouting-13fae3ff78feb5e3.yaml │ ├── qasm2-builtin-gate-d80c2868cdf5f958.yaml │ ├── qasm3-basis-gates-keyword-c5998bff1e178715.yaml │ ├── qasm3-includes-ceb56f49b8c190ff.yaml │ ├── qasm3-symbol-table-efad35629639c77d.yaml │ ├── replace-initialization-algorithm-by-isometry-41f9ffa58f72ece5.yaml │ ├── restrict-split2q-d51d840cc7a7a482.yaml │ ├── sabre_level0-1524f01965257f3f.yaml │ ├── synth_permutation_depth_lnn_kms-c444f3a363f3a903.yaml │ ├── unary_pos_for_parameterexpression-6421421b6dc20fbb.yaml │ ├── update-primitive-v2-metadata-cf1226e2d6477688.yaml │ ├── update-qasm3-lib-40e15bc24234970d.yaml │ ├── update-rustworkx-min-version-4f07aacfebccae80.yaml │ ├── use-target-in-generate-preset-pm-5215e00d22d0205c.yaml │ └── workaroud_12361-994d0ac2d2a6ed41.yaml │ ├── 1.3 │ ├── Parameterized-commutation-checker-8a78a4715bf78b4e.yaml │ ├── add-gates-to-collect-clifford-af88dd8f7a2a4bf9.yaml │ ├── add-identity-pass-builtin-2061b29b53b928d3.yaml │ ├── add-mcx-plugins-85e5b248692a36db.yaml │ ├── add-more-sabre-trials-9b421f05d2f48d18.yaml │ ├── add-qpy-v13-3b22ae33045af6c1.yaml │ ├── add-qv-function-a8990e248d5e7e1a.yaml │ ├── add-random-clifford-util-5358041208729988.yaml │ ├── add-synth-mcx-with-ancillas-6a92078d6b0e1de4.yaml │ ├── add-twirl-circuit-ff4d4437190551bc.yaml │ ├── assign-parameters-perf-regression-fc8c9db134b1763d.yaml │ ├── backend-estimator-v2-variance-905c953415ad0e29.yaml │ ├── backend-sampler-v2-level1-dc13af460cd38454.yaml │ ├── barebone-backend-option-675c86df4382a443.yaml │ ├── basicsimulator-config-copy-5ecdfdf161e488f2.yaml │ ├── binary-arithmetic-gates-6cd2b1c8112febe0.yaml │ ├── boolean-logic-gates-40add5cf0b20b5e9.yaml │ ├── circuit-draw-warn-justify-03434d30cccda452.yaml │ ├── circuit-library-missing-eq-568e7a72008c0ab2.yaml │ ├── clib-evolved-ops-e91c00964c0209ce.yaml │ ├── clib-grover-op-cb032144e899ed0d.yaml │ ├── control-flow-op-names-c66f38f8a0e15ce7.yaml │ ├── cphase-rzz-equivalence-e8afc37b71a74366.yaml │ ├── dag-oxide-60b3d7219cb21703.yaml │ ├── deprecate-StochasticSwap-451f46b273602b7b.yaml │ ├── deprecate-basic-simulator-configuration-9d782925196993e9.yaml │ ├── deprecate-condition_c_if-9548e5522814fe9c.yaml │ ├── deprecate-custom-basis-gates-transpile-e4b5893377f23acb.yaml │ ├── deprecate-mitigation-f5f6ef3233b3d726.yaml │ ├── deprecate-pulse-package-07a621be1db7fa30.yaml │ ├── deprecate-unit-duration-48b76c957bac5691.yaml │ ├── extended-random-circuits-049b67cce39003f4.yaml │ ├── faster-pauli-decomposition-faf2be01a6e75fff.yaml │ ├── fix-apply-layout-duplicate-negative-indices-cf5517921fe52706.yaml │ ├── fix-c3sx-gate-matrix-050cf9f9ac3b2b82.yaml │ ├── fix-circular-entanglement-5aadd5adf75c0c13.yaml │ ├── fix-collect-clifford-83af26d98b8c69e8.yaml │ ├── fix-decompose-hls-5019793177136024.yaml │ ├── fix-estimator-reset-9e7539776df4cac4.yaml │ ├── fix-isometry-rust-adf0eed09c6611f1.yaml │ ├── fix-parameter-cache-05eac2f24477ccb8.yaml │ ├── fix-qc-depth-0q-cdcc9aa14e237e68.yaml │ ├── fix-sk-load-from-file-02c6eabbbd7fcda3.yaml │ ├── fix-sparse-pauli-op-apply-layout-zero-43b9e70f0d1536a6.yaml │ ├── fix-sparsepauliop-phase-bug-2b24f4b775ca564f.yaml │ ├── fix-swap-router-layout-f28cf0a2de7976a8.yaml │ ├── fix-symbolic-unit-scaling-c3eb4d9be674dfd6.yaml │ ├── fix-v2-pulse-drawer-d05e4e392766909f.yaml │ ├── fix-var-wires-4ebc40e0b19df253.yaml │ ├── fix-vf2-aer-a7306ce07ea81700.yaml │ ├── fix_11990-8551c7250207fc76.yaml │ ├── fixes_13306-f9883a733491a72f.yaml │ ├── fixes_GenericBackendV2-668e40596e1f070d.yaml │ ├── followup_12629-8bfcf1a3d4e6cabf.yaml │ ├── hls-with-ancillas-d6792b41dfcf4aac.yaml │ ├── improve-hls-qubit-tracking-6b6288d556e3af9d.yaml │ ├── iqp-function-6594f7cf1521499c.yaml │ ├── mcmt-gate-a201d516f05c7d56.yaml │ ├── modernize-circuit-library-6e0be83421fd480b.yaml │ ├── operator-power-assume-unitary-0a2f97ea9de91b49.yaml │ ├── optimize-1q-gates-decomposition-ce111961b6782ee0.yaml │ ├── outcome_bitstring_target_for_probabilities_dict-e53f524d115bbcfc.yaml │ ├── oxidize-commutation-analysis-d2fc81feb6ca80aa.yaml │ ├── oxidize-random-clifford-934f45876c14c8a0.yaml │ ├── parallel-check-8186a8f074774a1f.yaml │ ├── parameterexpression-hash-d2593ab1715aa42c.yaml │ ├── pauli-evo-plugins-612850146c3f7d49.yaml │ ├── pauli-label-perf-b704cbcc5ef92794.yaml │ ├── paulifeaturemap-takes-dictionary-as-entanglement-02037cb2d46e1c41.yaml │ ├── plot-circuit-layout-5935646107893c12.yaml │ ├── port-countops-method-3ad362c20b13182c.yaml │ ├── port-elide-permutations-ed91c3d9cef2fec6.yaml │ ├── port-synth-cz-depth-line-mr-to-rust-1376d5a41948112a.yaml │ ├── product-formula-improvements-1bc40650151cf107.yaml │ ├── py3.9-min-now-c9781484a0eb288e.yaml │ ├── qasm2-big-condition-cfd203d53540d4ca.yaml │ ├── qasm2-bigint-8eff42acb67903e6.yaml │ ├── qasm2-to-matrix-c707fe1e61b3987f.yaml │ ├── qasm3-public-custom-gate-f4b2784f5cfadc30.yaml │ ├── raise-on-illegal-replace-block-50cef8da757a580a.yaml │ ├── remove_identity_equiv-9c627c8c35b2298a.yaml │ ├── reorder-trotter-terms-c8a6eb3cdb831f77.yaml │ ├── rust-commutation-checker-c738e67efa9d292f.yaml │ ├── rust-consolidation-a791a00380fc78b8.yaml │ ├── rust-paulifm-1dc7b1c2dc756614.yaml │ ├── scipy-1.14-951d1c245473aee9.yaml │ ├── sparse-observable-7de70dcdf6962a64.yaml │ ├── storage-var-a00a33fcf9a71f3f.yaml │ ├── target-has-calibration-no-properties-f3be18f2d58f330a.yaml │ ├── uniform-superposition-gate-3bd95ffdf05ef18c.yaml │ └── update-remove-diagonal-gates-before-measure-86abe39e46d5dad5.yaml │ ├── 2.0 │ ├── 64-bit-only-4132f330ec7804b3.yaml │ ├── add-2q-fractional-gates-to-consolidate-blocks-pass-65fadda8ba17c831.yaml │ ├── add-2q-fractional-gates-to-unitarysynthesis-pass-f66eee29903f5639.yaml │ ├── add-bit-register-rust-979dd113aefb3563.yaml │ ├── add-bool-bitarray-ddc30e5280f21c67.yaml │ ├── add-ctrl-flow-name-mapping-21842a23726e6e77.yaml │ ├── add-dt-generic-backend-v2-822f8806517e5dd1.yaml │ ├── add-estimate_duration-method-a35bf8eef4b2f210.yaml │ ├── add-light-cone-pass-6c56085734512e98.yaml │ ├── add-max-block-width-arg-e3677a2d26575a73.yaml │ ├── add-option-collect-from-back-cde10ee5e2e4ea9f.yaml │ ├── arm-linux-tier1-fa79edaabf565685.yaml │ ├── barrier-label-position-reverse-bits-41819043ebb3d701.yaml │ ├── boolean_expression_update-39c19edbbe71ba0d.yaml │ ├── bump-msrv-f655886d03b493f2.yaml │ ├── c-sparse-observable-c14b17a9303b1c34.yaml │ ├── cc-gate-fidelity-bde7a01dc8c56e29.yaml │ ├── choi-to-kraus-3ae7d49f0a27f639.yaml │ ├── circuit-noop-2ec1f23c0adecb99.yaml │ ├── closes_12345-2356fd2d919e3f4a.yaml │ ├── closes_12361-d3ea2c442a4a74a7.yaml │ ├── conservative-commutation-checking-b728e7b6e1645615.yaml │ ├── const-expr-397ff09042942b81.yaml │ ├── contract-idle-wires-in-control-flow-264f7c92396b217e.yaml │ ├── control-flow-op-nodes-ceece8c398bd30ee.yaml │ ├── decompose-controlflow-7a7e38d402aed260.yaml │ ├── default-routing-e63e1bf5a1a78891.yaml │ ├── default-translation-stage-9d0335e354751af0.yaml │ ├── delay-compare-b7ecb26b94ff0cd3.yaml │ ├── deprecate_arguments_and_deprecate_function-5e19f6f049fa489c.yaml │ ├── drop-legacy-scheduling-passes-ee1d593c41fe95c6.yaml │ ├── duration-expr-41b004c2165f5036.yaml │ ├── extend-deprecation-duration-0221fcc9887ced0d.yaml │ ├── fix-4pi-periodic-commutations-3b89d1813513f613.yaml │ ├── fix-adder-gates-39cf3d5f683e8880.yaml │ ├── fix-assign-parameters-ffa284ebde429704.yaml │ ├── fix-blueprint-copy-empty-a35d6b01cf1edf62.yaml │ ├── fix-cached-params-update-4d2814b698fa76b4.yaml │ ├── fix-commchecker-2q-paulis-bcadef25247c7288.yaml │ ├── fix-efficient-su2-numqubits-issue-2b2c91c1186f82ac.yaml │ ├── fix-global-phase-assign-d05f182ed9ddcf57.yaml │ ├── fix-hls-supported-instructions-0d80ea33b3d2257b.yaml │ ├── fix-incorrect-qubit-stop-time-d0e056f60a01dd52.yaml │ ├── fix-inverse-cancellation-c7f4debcde4a705a.yaml │ ├── fix-mcmt-to-gate-ec84e1c625312444.yaml │ ├── fix-mcrz-19d14a8d973a82cb.yaml │ ├── fix-missing-inverse-definition-af7fe8d9f2193308.yaml │ ├── fix-multi-controlled-rotation-gates-with-parameter-12a04701d0cd095b.yaml │ ├── fix-pauli-evo-all-identity-b129acd854d8c391.yaml │ ├── fix-pauli-sympify-ea9acceb2a923aff.yaml │ ├── fix-paulilist-length1-phase-688d0e3a64ec9a9f.yaml │ ├── fix-phase-in-remove-id-equivalent-6480da0c62f20df1.yaml │ ├── fix-pm-name-36baa550ce5d9c2c.yaml │ ├── fix-qasm-3-unitary-2da190be6ba25bbd.yaml │ ├── fix-random-clifford-c0394becbdd7db50.yaml │ ├── fix-target-instr-supported-900a1caa76e30655.yaml │ ├── fix-unitary-synthesis-3q-2b2de5305bfd11ff.yaml │ ├── fix-unitary-synthesis-global-gates-19b93840b28cfcf7.yaml │ ├── fix_identity_operator_9e2ec9770ac046a6.yaml │ ├── fixes_11379-4c4d6d71213a1c8c.yaml │ ├── fixes_13858-2dacfc0431c1a6ea.yaml │ ├── float-expr-02b01d9ea89ad47a.yaml │ ├── followup_13150-5bd0c77248601e1a.yaml │ ├── improve-decomposition-controlled-one-qubit-unitaries-3ae333a106274b79.yaml │ ├── improve-hls-pass-620389dde24e9707.yaml │ ├── improve_observables_array_docstring-d6e74b1871e3145c.yaml │ ├── math-expr-a71515664473fdc4.yaml │ ├── optimize-mux-for_stateprep-ead91cf2a64ad23b.yaml │ ├── parallel-check-public-7faed5f3e20e1d03.yaml │ ├── pass-call-as-passmanager-7f874917b9b303f0.yaml │ ├── pauli-evo-sparse-obs-9ed7aee2e7c64fcd.yaml │ ├── private-add_control-2367872c0f7136c4.yaml │ ├── qpy-missing-symengine-ee8265348c992ef3.yaml │ ├── removal_13022-13f237b337e3d5fb.yaml │ ├── remove-assemble-2d5d9cea4ca504f5.yaml │ ├── remove-backend-configuration-basic-simulator-cac1c2783a5a4e25.yaml │ ├── remove-backend-props-transpiler-64aa771784084313.yaml │ ├── remove-backend-v1-et-al-cccd8f6b71a97ffc.yaml │ ├── remove-circuit-cruft-30740668cf2f04e0.yaml │ ├── remove-deadweight-5d68e3fa42fc19bd.yaml │ ├── remove-deprecated-sort-key-8921c52db826c8ba.yaml │ ├── remove-deprecated-transpile-args-d6e212a659eec7cb.yaml │ ├── remove-fake-v1-backends-b66bc47886702904.yaml │ ├── remove-pulse-calibrations-4486dc101b76ec51.yaml │ ├── remove-pulse-eb43f66499092489.yaml │ ├── remove-pulse-generic-backendv2-738ad9f7ab64b8fd.yaml │ ├── remove-pulse-qpy-07a96673c8f10e38.yaml │ ├── remove-result-mitigators-e9b97fb2f9349b1c.yaml │ ├── remove-schedule-sequence-a6249577da8d1c86.yaml │ ├── remove-stochastic-swap-88e2d6be4c0d5713.yaml │ ├── remove-v1-primitive-impl-65ef9518013a1778.yaml │ ├── remove_classical_function-7d9057bc5c77d268.yaml │ ├── remove_cxcancellation_11937-1d225c4331b7b4e2.yaml │ ├── remove_provider_abc-87b611c223311a40.yaml │ ├── rust-linear-depth-lnn-69532c9c6b86ffe8.yaml │ ├── rust_cx_cz_lnn-dd21d99a84f5f92f.yaml │ ├── sabre-contraction-cbb7bffaeb826d67.yaml │ ├── sabre-disjoint-routing-85c6f6481c9ffca4.yaml │ ├── sk-ignore-unsupported-ops-8d7d5f6fca255ffb.yaml │ ├── sparse-obs-to-sparse-list-5b7c17c5d7cffd72.yaml │ ├── sparse-pauli-op-heavy-weight-fix-aa822428643d642a.yaml │ ├── sparseobservable-compose-8e054fe55861cf56.yaml │ ├── spo-to-matrix-determinism-554389d6fc98627c.yaml │ ├── stabilizerstate-expval-sparsepauliop-3e32a871d8e908ce.yaml │ ├── stretch-variables-076070c3f57cfa09.yaml │ ├── translation-direction-40059e267f77e178.yaml │ ├── unary-arithmetic-7db455017e1faa45.yaml │ ├── unitary-gate-rs-e51f0928d053accd.yaml │ ├── update-split-2q-unitaries-with-swap-557a1252e3208257.yaml │ └── vf2-order-3ef2b4ca5ebd0588.yaml │ ├── Added-random-circuit-from-graph-95c22eeabdea89d0.yaml │ ├── add-new-mcx-plugins-2177db9195e2b680.yaml │ ├── better_mcx_synthesis-7e6e265147bc1d33.yaml │ ├── c-api-circuit-3ecb43d396425bed.yaml │ ├── dag-stretch-counters-c26f39e3ea9b85a5.yaml │ ├── excitation-preserving-xx-plus-yy-7c72028cd09f9d04.yaml │ ├── extend-deprecation-tuple-inst-f24ab7a5632191e3.yaml │ ├── fix-ace-qpyv1-609551d84531e016.yaml │ ├── fix-dag-var-out-pickle-a7d57e97a330e528.yaml │ ├── fix-dt-oversight-be7e9b00f9c7b7a8.yaml │ ├── fix-duration-props-0543fe1d5e6e2820.yaml │ ├── fix-global-phase-in-basis-translator-d08d665198589828.yaml │ ├── fix-qpy-mcmtgate-ab735812998f4107.yaml │ ├── fix-sabre-metadata-88e2a63c02810e61.yaml │ ├── improve-annotated-plugin-39afc1ede65fb9fb.yaml │ ├── improved_multi_controlled_u1_synthesis-ab8e15f3cc12d638.yaml │ ├── minor-mcx-improvements-a1ed81f83275ce35.yaml │ ├── serialize-primitive-job-aa97d0bf8221ea99.yaml │ ├── update-cs-csdg-in-equivalence-library-c1e70d3246f4aa6d.yaml │ └── xx-plus-yy-equivalence-0b1b9ef7bd888258.yaml ├── requirements-dev.txt ├── requirements-optional.txt ├── requirements.txt ├── rust-toolchain.toml ├── setup.py ├── test ├── __init__.py ├── benchmarks │ ├── __init__.py │ ├── circuit_construction.py │ ├── converters.py │ ├── import.py │ ├── legacy_cmaps.py │ ├── manipulate.py │ ├── mapping_passes.py │ ├── passes.py │ ├── qasm │ │ ├── 20QBT_45CYC_.0D1_.1D2_3.qasm │ │ ├── 53QBT_100CYC_QSE_3.qasm │ │ ├── 54QBT_25CYC_QSE_3.qasm │ │ ├── __init__.py │ │ ├── depth_4gt10-v1_81.qasm │ │ ├── depth_4mod5-v0_19.qasm │ │ ├── depth_mod8-10_178.qasm │ │ ├── dtc_100_cx_12345.qasm │ │ ├── pea_3_pi_8.qasm │ │ ├── qaoa_barabasi_albert_N100_3reps.qasm │ │ ├── qft_N100.qasm │ │ ├── square_heisenberg_N100.qasm │ │ ├── test_eoh_qasm.qasm │ │ ├── time_cnt3-5_179.qasm │ │ ├── time_cnt3-5_180.qasm │ │ └── time_qft_16.qasm │ ├── qasm3_exporter.py │ ├── qft.py │ ├── quantum_info.py │ ├── quantum_volume.py │ ├── queko.py │ ├── random_circuit_hex.py │ ├── randomized_benchmarking.py │ ├── ripple_adder.py │ ├── scheduling_passes.py │ ├── statepreparation.py │ ├── transpiler_benchmarks.py │ ├── transpiler_levels.py │ ├── transpiler_qualitative.py │ ├── utility_scale.py │ └── utils.py ├── c │ ├── CMakeLists.txt │ ├── common.c │ ├── common.h │ ├── test_circuit.c │ └── test_sparse_observable.c ├── python │ ├── __init__.py │ ├── circuit │ │ ├── __init__.py │ │ ├── classical │ │ │ ├── __init__.py │ │ │ ├── test_expr_constructors.py │ │ │ ├── test_expr_helpers.py │ │ │ ├── test_expr_properties.py │ │ │ └── test_types_ordering.py │ │ ├── gate_utils.py │ │ ├── library │ │ │ ├── __init__.py │ │ │ ├── test_adders.py │ │ │ ├── test_blueprintcircuit.py │ │ │ ├── test_boolean_logic.py │ │ │ ├── test_diagonal.py │ │ │ ├── test_evolution_gate.py │ │ │ ├── test_evolved_op_ansatz.py │ │ │ ├── test_fourier_checking.py │ │ │ ├── test_functional_pauli_rotations.py │ │ │ ├── test_global_r.py │ │ │ ├── test_gms.py │ │ │ ├── test_graph_state.py │ │ │ ├── test_grover_operator.py │ │ │ ├── test_hidden_linear_function.py │ │ │ ├── test_integer_comparator.py │ │ │ ├── test_iqp.py │ │ │ ├── test_linear_amplitude_function.py │ │ │ ├── test_linear_function.py │ │ │ ├── test_mcmt.py │ │ │ ├── test_multipliers.py │ │ │ ├── test_nlocal.py │ │ │ ├── test_overlap.py │ │ │ ├── test_pauli_feature_map.py │ │ │ ├── test_permutation.py │ │ │ ├── test_phase_and_bitflip_oracles.py │ │ │ ├── test_phase_estimation.py │ │ │ ├── test_piecewise_chebyshev.py │ │ │ ├── test_qaoa_ansatz.py │ │ │ ├── test_qft.py │ │ │ ├── test_quadratic_form.py │ │ │ ├── test_quantum_volume.py │ │ │ ├── test_random_pauli.py │ │ │ ├── test_state_preparation.py │ │ │ └── test_weighted_adder.py │ │ ├── test_annotated_operation.py │ │ ├── test_bit.py │ │ ├── test_circuit_data.py │ │ ├── test_circuit_find_bit.py │ │ ├── test_circuit_load_from_qpy.py │ │ ├── test_circuit_multi_registers.py │ │ ├── test_circuit_operations.py │ │ ├── test_circuit_properties.py │ │ ├── test_circuit_qasm.py │ │ ├── test_circuit_registers.py │ │ ├── test_circuit_vars.py │ │ ├── test_commutation_checker.py │ │ ├── test_compose.py │ │ ├── test_control_flow.py │ │ ├── test_control_flow_builders.py │ │ ├── test_controlled_gate.py │ │ ├── test_delay.py │ │ ├── test_diagonal_gate.py │ │ ├── test_equivalence.py │ │ ├── test_extensions_standard.py │ │ ├── test_gate_definitions.py │ │ ├── test_gate_power.py │ │ ├── test_hamiltonian_gate.py │ │ ├── test_identifiers_circuits.py │ │ ├── test_initializer.py │ │ ├── test_instruction_repeat.py │ │ ├── test_instructions.py │ │ ├── test_isometry.py │ │ ├── test_operation.py │ │ ├── test_parameters.py │ │ ├── test_piecewise_polynomial.py │ │ ├── test_random_circuit.py │ │ ├── test_register.py │ │ ├── test_registerless_circuit.py │ │ ├── test_rust_equivalence.py │ │ ├── test_scheduled_circuit.py │ │ ├── test_singleton.py │ │ ├── test_store.py │ │ ├── test_templates.py │ │ ├── test_tensor.py │ │ ├── test_tools.py │ │ ├── test_twirling.py │ │ ├── test_uc.py │ │ ├── test_ucx_y_z.py │ │ ├── test_uniform_superposition_gate.py │ │ └── test_unitary.py │ ├── compiler │ │ ├── __init__.py │ │ ├── test_compiler.py │ │ └── test_transpiler.py │ ├── converters │ │ ├── __init__.py │ │ ├── test_circuit_to_dag.py │ │ ├── test_circuit_to_dagdependency.py │ │ ├── test_circuit_to_dagdependency_v2.py │ │ ├── test_circuit_to_gate.py │ │ ├── test_circuit_to_instruction.py │ │ ├── test_dag_to_dagdependency.py │ │ └── test_dag_to_dagdependency_v2.py │ ├── dagcircuit │ │ ├── __init__.py │ │ ├── test_collect_blocks.py │ │ ├── test_compose.py │ │ ├── test_dagcircuit.py │ │ ├── test_dagdependency.py │ │ └── test_dagdependency_v2.py │ ├── legacy_cmaps.py │ ├── mock │ │ └── __init__.py │ ├── passmanager │ │ ├── __init__.py │ │ ├── test_generic_pass.py │ │ └── test_passmanager.py │ ├── primitives │ │ ├── __init__.py │ │ ├── containers │ │ │ ├── __init__.py │ │ │ ├── test_bindings_array.py │ │ │ ├── test_bit_array.py │ │ │ ├── test_data_bin.py │ │ │ ├── test_estimator_pub.py │ │ │ ├── test_observables_array.py │ │ │ ├── test_primitive_result.py │ │ │ ├── test_pub_result.py │ │ │ ├── test_sampler_pub.py │ │ │ ├── test_sampler_pub_result.py │ │ │ └── test_shape.py │ │ ├── test_backend_estimator_v2.py │ │ ├── test_backend_sampler_v2.py │ │ ├── test_primitive_job.py │ │ ├── test_result.py │ │ ├── test_statevector_estimator.py │ │ ├── test_statevector_sampler.py │ │ └── test_validation_base_primitives_v1.py │ ├── providers │ │ ├── __init__.py │ │ ├── basic_provider │ │ │ ├── __init__.py │ │ │ ├── test_basic_provider_backends.py │ │ │ ├── test_basic_provider_integration.py │ │ │ ├── test_basic_simulator.py │ │ │ ├── test_multi_registers_convention.py │ │ │ └── test_standard_library.py │ │ ├── fake_mumbai_v2.py │ │ ├── fake_provider │ │ │ ├── __init__.py │ │ │ └── test_generic_backend_v2.py │ │ ├── test_backend_v2.py │ │ └── test_options.py │ ├── qasm │ │ ├── TestBasisTranslator_skip_target.qasm │ │ ├── TestsBasicSwap_a_cx_to_map.qasm │ │ ├── TestsBasicSwap_handle_measurement.qasm │ │ ├── TestsBasicSwap_initial_layout.qasm │ │ ├── TestsLookaheadSwap_a_cx_to_map.qasm │ │ ├── TestsLookaheadSwap_handle_measurement.qasm │ │ ├── TestsLookaheadSwap_initial_layout.qasm │ │ ├── TestsSabreSwap_a_cx_to_map.qasm │ │ ├── TestsSabreSwap_handle_measurement.qasm │ │ ├── TestsSabreSwap_initial_layout.qasm │ │ ├── TestsStochasticSwap_a_cx_to_map.qasm │ │ ├── TestsStochasticSwap_handle_measurement.qasm │ │ ├── TestsStochasticSwap_initial_layout.qasm │ │ ├── all_gates.qasm │ │ ├── entangled_registers.qasm │ │ ├── example.qasm │ │ ├── example_fail.qasm │ │ ├── example_if.qasm │ │ ├── example_minor_version_fail.qasm │ │ ├── example_version_2.qasm │ │ ├── example_version_fail.qasm │ │ ├── move_measurements.qasm │ │ └── random_n5_d5.qasm │ ├── qasm2 │ │ ├── __init__.py │ │ ├── test_arxiv_examples.py │ │ ├── test_circuit_methods.py │ │ ├── test_export.py │ │ ├── test_expression.py │ │ ├── test_lexer.py │ │ ├── test_parse_errors.py │ │ └── test_structure.py │ ├── qasm3 │ │ ├── __init__.py │ │ ├── test_export.py │ │ └── test_import.py │ ├── qpy │ │ ├── __init__.py │ │ ├── test_circuit_load_from_qpy.py │ │ └── test_serialize_value_objects.py │ ├── quantum_info │ │ ├── __init__.py │ │ ├── operators │ │ │ ├── __init__.py │ │ │ ├── channel │ │ │ │ ├── __init__.py │ │ │ │ ├── channel_test_case.py │ │ │ │ ├── test_adjoint.py │ │ │ │ ├── test_chi.py │ │ │ │ ├── test_choi.py │ │ │ │ ├── test_evolve.py │ │ │ │ ├── test_kraus.py │ │ │ │ ├── test_linearops.py │ │ │ │ ├── test_ptm.py │ │ │ │ ├── test_stinespring.py │ │ │ │ ├── test_superop.py │ │ │ │ ├── test_tensor_compose.py │ │ │ │ └── test_transformations.py │ │ │ ├── symplectic │ │ │ │ ├── __init__.py │ │ │ │ ├── test_clifford.py │ │ │ │ ├── test_pauli.py │ │ │ │ ├── test_pauli_list.py │ │ │ │ ├── test_pauli_utils.py │ │ │ │ └── test_sparse_pauli_op.py │ │ │ ├── test_dihedral.py │ │ │ ├── test_measures.py │ │ │ ├── test_operator.py │ │ │ ├── test_random.py │ │ │ ├── test_scalar_op.py │ │ │ └── test_utils.py │ │ ├── states │ │ │ ├── __init__.py │ │ │ ├── test_densitymatrix.py │ │ │ ├── test_measures.py │ │ │ ├── test_random.py │ │ │ ├── test_stabilizerstate.py │ │ │ ├── test_statevector.py │ │ │ └── test_utils.py │ │ ├── test_analyzation.py │ │ ├── test_quaternions.py │ │ ├── test_sparse_observable.py │ │ └── test_sparse_z2_symmetries.py │ ├── result │ │ ├── __init__.py │ │ ├── test_counts.py │ │ ├── test_memory_marginalization.py │ │ ├── test_probability.py │ │ ├── test_quasi.py │ │ ├── test_result.py │ │ └── test_sampled_expval.py │ ├── synthesis │ │ ├── __init__.py │ │ ├── aqc │ │ │ ├── __init__.py │ │ │ ├── fast_gradient │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cmp_gradients.py │ │ │ │ ├── test_layer1q.py │ │ │ │ ├── test_layer2q.py │ │ │ │ ├── test_utils.py │ │ │ │ └── utils_for_testing.py │ │ │ ├── sample_data.py │ │ │ ├── test_aqc.py │ │ │ ├── test_aqc_plugin.py │ │ │ ├── test_cnot_networks.py │ │ │ └── test_gradient.py │ │ ├── dimacs │ │ │ ├── quinn.cnf │ │ │ └── simple_v3_c2.cnf │ │ ├── test_boolean.py │ │ ├── test_clifford_decompose_layers.py │ │ ├── test_clifford_sythesis.py │ │ ├── test_cnot_phase_synthesis.py │ │ ├── test_cx_cz_synthesis.py │ │ ├── test_cz_synthesis.py │ │ ├── test_linear_synthesis.py │ │ ├── test_local_invariance.py │ │ ├── test_multi_controlled_synthesis.py │ │ ├── test_permutation_synthesis.py │ │ ├── test_qft_synthesis.py │ │ ├── test_stabilizer_circuit.py │ │ ├── test_stabilizer_synthesis.py │ │ ├── test_synthesis.py │ │ ├── test_weyl.py │ │ └── xx_decompose │ │ │ ├── __init__.py │ │ │ ├── test_circuits.py │ │ │ ├── test_decomposer.py │ │ │ ├── test_polytopes.py │ │ │ ├── test_weyl.py │ │ │ └── utilities.py │ ├── test_user_config.py │ ├── transpiler │ │ ├── __init__.py │ │ ├── _dummy_passes.py │ │ ├── test_1q.py │ │ ├── test_adjacent_barriers.py │ │ ├── test_apply_layout.py │ │ ├── test_barrier_before_final_measurements.py │ │ ├── test_basic_swap.py │ │ ├── test_basis_translator.py │ │ ├── test_check_gate_direction.py │ │ ├── test_check_map.py │ │ ├── test_clifford_passes.py │ │ ├── test_collect_2q_blocks.py │ │ ├── test_collect_multiq_blocks.py │ │ ├── test_commutation_analysis.py │ │ ├── test_commutative_cancellation.py │ │ ├── test_commutative_inverse_cancellation.py │ │ ├── test_consolidate_blocks.py │ │ ├── test_containsinstruction.py │ │ ├── test_contract_idle_wires_in_control_flow.py │ │ ├── test_count_ops_longest_path_pass.py │ │ ├── test_count_ops_pass.py │ │ ├── test_coupling.py │ │ ├── test_csp_layout.py │ │ ├── test_dag_fixed_point_pass.py │ │ ├── test_dag_longest_path_pass.py │ │ ├── test_decompose.py │ │ ├── test_dense_layout.py │ │ ├── test_depth_pass.py │ │ ├── test_dynamical_decoupling.py │ │ ├── test_elide_permutations.py │ │ ├── test_enlarge_with_ancilla_pass.py │ │ ├── test_error.py │ │ ├── test_filter_op_nodes.py │ │ ├── test_fixed_point_pass.py │ │ ├── test_full_ancilla_allocation.py │ │ ├── test_gate_direction.py │ │ ├── test_gates_in_basis_pass.py │ │ ├── test_generic_pass.py │ │ ├── test_high_level_synthesis.py │ │ ├── test_hoare_opt.py │ │ ├── test_instruction_durations.py │ │ ├── test_inverse_cancellation.py │ │ ├── test_kak_over_optimization.py │ │ ├── test_layout.py │ │ ├── test_layout_score.py │ │ ├── test_layout_transformation.py │ │ ├── test_light_cone.py │ │ ├── test_linear_functions_passes.py │ │ ├── test_lookahead_swap.py │ │ ├── test_mappers.py │ │ ├── test_minimum_point.py │ │ ├── test_naming_transpiled_circuits.py │ │ ├── test_optimize_1q_commutation.py │ │ ├── test_optimize_1q_decomposition.py │ │ ├── test_optimize_1q_gates.py │ │ ├── test_optimize_annotated.py │ │ ├── test_optimize_swap_before_measure.py │ │ ├── test_parameterizedgate_translator.py │ │ ├── test_pass_call.py │ │ ├── test_pass_scheduler.py │ │ ├── test_passmanager.py │ │ ├── test_passmanager_config.py │ │ ├── test_passmanager_run.py │ │ ├── test_preset_passmanagers.py │ │ ├── test_property_set.py │ │ ├── test_remove_barriers.py │ │ ├── test_remove_diagonal_gates_before_measure.py │ │ ├── test_remove_final_measurements.py │ │ ├── test_remove_final_reset.py │ │ ├── test_remove_identity_equivalent.py │ │ ├── test_remove_reset_in_zero_state.py │ │ ├── test_reset_after_measure_simplification.py │ │ ├── test_resource_estimation_pass.py │ │ ├── test_sabre_layout.py │ │ ├── test_sabre_pre_layout.py │ │ ├── test_sabre_swap.py │ │ ├── test_scheduling_padding_pass.py │ │ ├── test_setlayout.py │ │ ├── test_size_pass.py │ │ ├── test_solovay_kitaev.py │ │ ├── test_split_2q_unitaries.py │ │ ├── test_stage_plugin.py │ │ ├── test_staged_passmanager.py │ │ ├── test_star_prerouting.py │ │ ├── test_swap_strategy.py │ │ ├── test_swap_strategy_router.py │ │ ├── test_target.py │ │ ├── test_template_matching.py │ │ ├── test_tensor_factor_pass.py │ │ ├── test_token_swapper.py │ │ ├── test_transpile_layout.py │ │ ├── test_trivial_layout.py │ │ ├── test_unitary_synthesis.py │ │ ├── test_unitary_synthesis_plugin.py │ │ ├── test_unroll_3q_or_more.py │ │ ├── test_unroll_custom_definitions.py │ │ ├── test_unroll_forloops.py │ │ ├── test_vf2_layout.py │ │ ├── test_vf2_post_layout.py │ │ └── test_width_pass.py │ ├── utils │ │ ├── __init__.py │ │ ├── test_classtools.py │ │ ├── test_deprecation.py │ │ ├── test_lazy_loaders.py │ │ ├── test_parallel.py │ │ └── test_units.py │ └── visualization │ │ ├── __init__.py │ │ ├── references │ │ ├── 20_plot_circuit_layout.png │ │ ├── 20bit_quantum_computer.png │ │ ├── 5_plot_circuit_layout.png │ │ ├── 5bit_quantum_computer.png │ │ ├── 7_plot_circuit_layout.png │ │ ├── 7bit_quantum_computer.png │ │ ├── 8qubits.png │ │ ├── circuit_text_ref_cp437.txt │ │ ├── circuit_text_ref_utf8.txt │ │ ├── coupling_map.png │ │ ├── dag_dep.png │ │ ├── dag_no_reg.png │ │ ├── equivalence_library.png │ │ ├── fake_127_q_error.png │ │ ├── fake_127_q_v2_error.png │ │ ├── fake_27_q_error.png │ │ ├── fake_27_q_v2_error.png │ │ ├── pass_manager_standard.dot │ │ ├── pass_manager_style.dot │ │ ├── test_latex_barrier_label.tex │ │ ├── test_latex_big_gates.tex │ │ ├── test_latex_cnot.tex │ │ ├── test_latex_creg_initial_false.tex │ │ ├── test_latex_creg_initial_true.tex │ │ ├── test_latex_cswap_rzz.tex │ │ ├── test_latex_deep.tex │ │ ├── test_latex_empty.tex │ │ ├── test_latex_ghz_to_gate.tex │ │ ├── test_latex_global_phase.tex │ │ ├── test_latex_huge.tex │ │ ├── test_latex_idle_wires_barrier.tex │ │ ├── test_latex_init_reset.tex │ │ ├── test_latex_inst_with_cbits.tex │ │ ├── test_latex_iqx.tex │ │ ├── test_latex_long_name.tex │ │ ├── test_latex_multi_underscore_false.tex │ │ ├── test_latex_multi_underscore_true.tex │ │ ├── test_latex_no_barriers_false.tex │ │ ├── test_latex_no_ops.tex │ │ ├── test_latex_normal.tex │ │ ├── test_latex_partial_layout.tex │ │ ├── test_latex_pauli_clifford.tex │ │ ├── test_latex_pi_param_expr.tex │ │ ├── test_latex_plot_barriers_false.tex │ │ ├── test_latex_plot_barriers_true.tex │ │ ├── test_latex_plot_partial_barriers.tex │ │ ├── test_latex_r_gates.tex │ │ ├── test_latex_registerless_one_bit.tex │ │ ├── test_latex_reverse_bits.tex │ │ ├── test_latex_scale_default.tex │ │ ├── test_latex_scale_double.tex │ │ ├── test_latex_scale_half.tex │ │ ├── test_latex_tiny.tex │ │ └── test_latex_u_gates.tex │ │ ├── test_circuit_drawer.py │ │ ├── test_circuit_latex.py │ │ ├── test_circuit_text_drawer.py │ │ ├── test_dag_drawer.py │ │ ├── test_gate_map.py │ │ ├── test_pass_manager_drawer.py │ │ ├── test_plot_histogram.py │ │ ├── test_state_latex_drawer.py │ │ ├── test_state_plot_tools.py │ │ ├── test_utils.py │ │ ├── timeline │ │ ├── __init__.py │ │ ├── test_core.py │ │ ├── test_drawings.py │ │ ├── test_generators.py │ │ └── test_layouts.py │ │ └── visualization.py ├── qpy_compat │ ├── get_versions.py │ ├── process_version.sh │ ├── qpy_test_constraints.txt │ ├── run_tests.sh │ └── test_qpy.py ├── randomized │ ├── __init__.py │ ├── test_clifford.py │ ├── test_synthesis.py │ └── test_transpiler_equivalence.py ├── utils │ ├── __init__.py │ ├── _canonical.py │ ├── base.py │ └── decorators.py └── visual │ ├── __init__.py │ ├── mpl │ ├── __init__.py │ ├── circuit │ │ ├── __init__.py │ │ ├── references │ │ │ ├── 20_plot_circuit_layout.png │ │ │ ├── 20bit_quantum_computer.png │ │ │ ├── 5_plot_circuit_layout.png │ │ │ ├── 5bit_quantum_computer.png │ │ │ ├── 6095.png │ │ │ ├── 7_plot_circuit_layout.png │ │ │ ├── 7bit_quantum_computer.png │ │ │ ├── annotated.png │ │ │ ├── barrier_label.png │ │ │ ├── basic_box.png │ │ │ ├── big_gates.png │ │ │ ├── bw.png │ │ │ ├── clifford_color.png │ │ │ ├── cnot.png │ │ │ ├── control_flow_fold_minus_one.png │ │ │ ├── creg_initial_false.png │ │ │ ├── creg_initial_true.png │ │ │ ├── cswap_rzz.png │ │ │ ├── ctrl_labels.png │ │ │ ├── cz.png │ │ │ ├── empty_circut.png │ │ │ ├── figwidth.png │ │ │ ├── fold_4.png │ │ │ ├── fold_minus1.png │ │ │ ├── for_loop.png │ │ │ ├── for_loop_1_qarg.png │ │ │ ├── for_loop_range.png │ │ │ ├── ghz_to_gate.png │ │ │ ├── global_phase.png │ │ │ ├── idle_wires_barrier.png │ │ │ ├── if_else_body.png │ │ │ ├── if_else_op_false.png │ │ │ ├── if_else_op_fold.png │ │ │ ├── if_else_op_nested.png │ │ │ ├── if_else_op_textbook.png │ │ │ ├── if_else_op_true.png │ │ │ ├── if_else_op_wire_order.png │ │ │ ├── if_else_standalone_var.png │ │ │ ├── if_op.png │ │ │ ├── if_op_expr.png │ │ │ ├── if_op_expr_nested.png │ │ │ ├── init_reset.png │ │ │ ├── instruction_1q_1c.png │ │ │ ├── instruction_3q_3c_circ1.png │ │ │ ├── instruction_3q_3c_circ2.png │ │ │ ├── instruction_3q_3c_circ3.png │ │ │ ├── iqp-dark_color.png │ │ │ ├── iqp_color.png │ │ │ ├── layout_control_flow.png │ │ │ ├── long_name.png │ │ │ ├── measure_cond_bits_true.png │ │ │ ├── measure_cond_true.png │ │ │ ├── multi_underscore_false.png │ │ │ ├── multi_underscore_true.png │ │ │ ├── nested_layout_control_flow.png │ │ │ ├── no_barriers.png │ │ │ ├── no_op_circut.png │ │ │ ├── one_bit_regs.png │ │ │ ├── partial_layout.png │ │ │ ├── pauli_clifford.png │ │ │ ├── pi_in_param_expr.png │ │ │ ├── plot_barriers_false.png │ │ │ ├── plot_barriers_true.png │ │ │ ├── plot_partial_barrier.png │ │ │ ├── qreg_names_after_layout.png │ │ │ ├── r_gates.png │ │ │ ├── registerless_one_bit.png │ │ │ ├── reverse_bits.png │ │ │ ├── scale_default.png │ │ │ ├── scale_double.png │ │ │ ├── scale_half.png │ │ │ ├── style_custom_gates.png │ │ │ ├── subfont.png │ │ │ ├── switch_case.png │ │ │ ├── switch_case_1_qarg.png │ │ │ ├── switch_case_empty_default.png │ │ │ ├── switch_expr.png │ │ │ ├── switch_standalone_var.png │ │ │ ├── textbook_color.png │ │ │ ├── user_ax.png │ │ │ ├── user_style.png │ │ │ ├── while_loop.png │ │ │ ├── wide_params.png │ │ │ └── wire_order.png │ │ ├── test_circuit_matplotlib_drawer.py │ │ └── user_style.json │ └── graph │ │ ├── __init__.py │ │ ├── references │ │ ├── 16_qubit_gate_map.png │ │ ├── 1_qubit_gate_map.png │ │ ├── 27_qubit_gate_map.png │ │ ├── 5_qubit_gate_map.png │ │ ├── 65_qubit_gate_map.png │ │ ├── 7_qubit_gate_map.png │ │ ├── bloch_multivector.png │ │ ├── bloch_multivector_figsize_improvements.png │ │ ├── coupling_map.png │ │ ├── figsize.png │ │ ├── font_color.png │ │ ├── hinton.png │ │ ├── histogram.png │ │ ├── histogram_2_sets_with_rest.png │ │ ├── histogram_color.png │ │ ├── histogram_desc_value_sort.png │ │ ├── histogram_hamming.png │ │ ├── histogram_legend.png │ │ ├── histogram_multiple_colors.png │ │ ├── histogram_title.png │ │ ├── histogram_value_sort.png │ │ ├── histogram_with_rest.png │ │ ├── line_color.png │ │ ├── paulivec.png │ │ ├── qsphere.png │ │ ├── qubit_color.png │ │ ├── qubit_labels.png │ │ ├── qubit_size.png │ │ └── state_city.png │ │ └── test_graph_matplotlib_drawer.py │ ├── mpl_tester.ipynb │ └── results.py ├── tools ├── build_pgo.sh ├── build_standard_commutations.py ├── docs_exclude.txt ├── find_deprecated.py ├── find_optional_imports.py ├── find_stray_release_notes.py ├── fix_mailmap.py ├── install_rust.sh ├── install_rust_msrv.sh ├── install_ubuntu_c_dependencies.sh ├── install_ubuntu_docs_dependencies.sh ├── pgo_scripts │ └── test_utility_scale.py ├── pylint_incr.py ├── report_numpy_state.py ├── run_cargo_test.py ├── run_clang_format.sh ├── subunit_to_junit.py ├── verify_headers.py └── verify_images.py └── tox.ini /.azure/lint_docs-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.azure/lint_docs-linux.yml -------------------------------------------------------------------------------- /.azure/test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.azure/test-linux.yml -------------------------------------------------------------------------------- /.azure/test-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.azure/test-macos.yml -------------------------------------------------------------------------------- /.azure/test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.azure/test-windows.yml -------------------------------------------------------------------------------- /.binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.binder/environment.yml -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.clang-format -------------------------------------------------------------------------------- /.clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.clippy.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/ctests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/ctests.yml -------------------------------------------------------------------------------- /.github/workflows/docs_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/docs_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/miri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/miri.yml -------------------------------------------------------------------------------- /.github/workflows/neko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/neko.yml -------------------------------------------------------------------------------- /.github/workflows/qpy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/qpy.yml -------------------------------------------------------------------------------- /.github/workflows/randomized_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/randomized_tests.yml -------------------------------------------------------------------------------- /.github/workflows/slow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/slow.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/wheels-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/wheels-build.yml -------------------------------------------------------------------------------- /.github/workflows/wheels-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/wheels-pr.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.gitignore -------------------------------------------------------------------------------- /.local-spellings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.local-spellings -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.mailmap -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/.stestr.conf -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEPRECATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/DEPRECATION.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/MAINTAINING.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/asv.conf.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/constraints.txt -------------------------------------------------------------------------------- /crates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/README.md -------------------------------------------------------------------------------- /crates/accelerate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/Cargo.toml -------------------------------------------------------------------------------- /crates/accelerate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/README.md -------------------------------------------------------------------------------- /crates/accelerate/src/basis/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/basis/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/check_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/check_map.rs -------------------------------------------------------------------------------- /crates/accelerate/src/circuit_duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/circuit_duration.rs -------------------------------------------------------------------------------- /crates/accelerate/src/circuit_library/blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/circuit_library/blocks.rs -------------------------------------------------------------------------------- /crates/accelerate/src/circuit_library/iqp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/circuit_library/iqp.rs -------------------------------------------------------------------------------- /crates/accelerate/src/circuit_library/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/circuit_library/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/commutation_analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/commutation_analysis.rs -------------------------------------------------------------------------------- /crates/accelerate/src/commutation_cancellation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/commutation_cancellation.rs -------------------------------------------------------------------------------- /crates/accelerate/src/commutation_checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/commutation_checker.rs -------------------------------------------------------------------------------- /crates/accelerate/src/consolidate_blocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/consolidate_blocks.rs -------------------------------------------------------------------------------- /crates/accelerate/src/convert_2q_block_matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/convert_2q_block_matrix.rs -------------------------------------------------------------------------------- /crates/accelerate/src/dense_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/dense_layout.rs -------------------------------------------------------------------------------- /crates/accelerate/src/elide_permutations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/elide_permutations.rs -------------------------------------------------------------------------------- /crates/accelerate/src/equivalence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/equivalence.rs -------------------------------------------------------------------------------- /crates/accelerate/src/error_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/error_map.rs -------------------------------------------------------------------------------- /crates/accelerate/src/filter_op_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/filter_op_nodes.rs -------------------------------------------------------------------------------- /crates/accelerate/src/gate_direction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/gate_direction.rs -------------------------------------------------------------------------------- /crates/accelerate/src/gate_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/gate_metrics.rs -------------------------------------------------------------------------------- /crates/accelerate/src/gates_in_basis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/gates_in_basis.rs -------------------------------------------------------------------------------- /crates/accelerate/src/high_level_synthesis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/high_level_synthesis.rs -------------------------------------------------------------------------------- /crates/accelerate/src/inverse_cancellation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/inverse_cancellation.rs -------------------------------------------------------------------------------- /crates/accelerate/src/isometry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/isometry.rs -------------------------------------------------------------------------------- /crates/accelerate/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/lib.rs -------------------------------------------------------------------------------- /crates/accelerate/src/nlayout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/nlayout.rs -------------------------------------------------------------------------------- /crates/accelerate/src/optimize_1q_gates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/optimize_1q_gates.rs -------------------------------------------------------------------------------- /crates/accelerate/src/pauli_exp_val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/pauli_exp_val.rs -------------------------------------------------------------------------------- /crates/accelerate/src/quantum_info/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/quantum_info/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/quantum_info/versor_u2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/quantum_info/versor_u2.rs -------------------------------------------------------------------------------- /crates/accelerate/src/rayon_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/rayon_ext.rs -------------------------------------------------------------------------------- /crates/accelerate/src/remove_identity_equiv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/remove_identity_equiv.rs -------------------------------------------------------------------------------- /crates/accelerate/src/results/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/results/converters.rs -------------------------------------------------------------------------------- /crates/accelerate/src/results/marginalization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/results/marginalization.rs -------------------------------------------------------------------------------- /crates/accelerate/src/results/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/results/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/heuristic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/heuristic.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/layer.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/layout.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/neighbor_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/neighbor_table.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/route.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/route.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/sabre_dag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/sabre_dag.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sabre/swap_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sabre/swap_map.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sampled_exp_val.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sampled_exp_val.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sparse_observable/lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sparse_observable/lookup.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sparse_observable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sparse_observable/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/sparse_pauli_op.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/sparse_pauli_op.rs -------------------------------------------------------------------------------- /crates/accelerate/src/split_2q_unitaries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/split_2q_unitaries.rs -------------------------------------------------------------------------------- /crates/accelerate/src/star_prerouting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/star_prerouting.rs -------------------------------------------------------------------------------- /crates/accelerate/src/synthesis/clifford/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/synthesis/clifford/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/synthesis/linear/lnn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/synthesis/linear/lnn.rs -------------------------------------------------------------------------------- /crates/accelerate/src/synthesis/linear/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/synthesis/linear/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/synthesis/linear/pmh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/synthesis/linear/pmh.rs -------------------------------------------------------------------------------- /crates/accelerate/src/synthesis/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/synthesis/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/target_transpiler/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/target_transpiler/mod.rs -------------------------------------------------------------------------------- /crates/accelerate/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/test.rs -------------------------------------------------------------------------------- /crates/accelerate/src/twirling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/twirling.rs -------------------------------------------------------------------------------- /crates/accelerate/src/two_qubit_decompose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/two_qubit_decompose.rs -------------------------------------------------------------------------------- /crates/accelerate/src/uc_gate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/uc_gate.rs -------------------------------------------------------------------------------- /crates/accelerate/src/unitary_compose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/unitary_compose.rs -------------------------------------------------------------------------------- /crates/accelerate/src/unitary_synthesis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/unitary_synthesis.rs -------------------------------------------------------------------------------- /crates/accelerate/src/vf2_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/accelerate/src/vf2_layout.rs -------------------------------------------------------------------------------- /crates/cext/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/Cargo.toml -------------------------------------------------------------------------------- /crates/cext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/README.md -------------------------------------------------------------------------------- /crates/cext/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/build.rs -------------------------------------------------------------------------------- /crates/cext/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/cbindgen.toml -------------------------------------------------------------------------------- /crates/cext/src/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/src/circuit.rs -------------------------------------------------------------------------------- /crates/cext/src/exit_codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/src/exit_codes.rs -------------------------------------------------------------------------------- /crates/cext/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/src/lib.rs -------------------------------------------------------------------------------- /crates/cext/src/pointers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/src/pointers.rs -------------------------------------------------------------------------------- /crates/cext/src/sparse_observable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/cext/src/sparse_observable.rs -------------------------------------------------------------------------------- /crates/circuit/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/Cargo.toml -------------------------------------------------------------------------------- /crates/circuit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/README.md -------------------------------------------------------------------------------- /crates/circuit/src/bit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/bit.rs -------------------------------------------------------------------------------- /crates/circuit/src/bit_locator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/bit_locator.rs -------------------------------------------------------------------------------- /crates/circuit/src/circuit_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/circuit_data.rs -------------------------------------------------------------------------------- /crates/circuit/src/circuit_instruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/circuit_instruction.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/binary.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/cast.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/expr.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/index.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/mod.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/stretch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/stretch.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/unary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/unary.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/value.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/expr/var.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/expr/var.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/mod.rs -------------------------------------------------------------------------------- /crates/circuit/src/classical/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/classical/types.rs -------------------------------------------------------------------------------- /crates/circuit/src/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/converters.rs -------------------------------------------------------------------------------- /crates/circuit/src/dag_circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/dag_circuit.rs -------------------------------------------------------------------------------- /crates/circuit/src/dag_node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/dag_node.rs -------------------------------------------------------------------------------- /crates/circuit/src/dot_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/dot_utils.rs -------------------------------------------------------------------------------- /crates/circuit/src/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/duration.rs -------------------------------------------------------------------------------- /crates/circuit/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/error.rs -------------------------------------------------------------------------------- /crates/circuit/src/gate_matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/gate_matrix.rs -------------------------------------------------------------------------------- /crates/circuit/src/imports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/imports.rs -------------------------------------------------------------------------------- /crates/circuit/src/interner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/interner.rs -------------------------------------------------------------------------------- /crates/circuit/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/lib.rs -------------------------------------------------------------------------------- /crates/circuit/src/object_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/object_registry.rs -------------------------------------------------------------------------------- /crates/circuit/src/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/operations.rs -------------------------------------------------------------------------------- /crates/circuit/src/packed_instruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/packed_instruction.rs -------------------------------------------------------------------------------- /crates/circuit/src/parameter_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/parameter_table.rs -------------------------------------------------------------------------------- /crates/circuit/src/register_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/register_data.rs -------------------------------------------------------------------------------- /crates/circuit/src/rustworkx_core_vnext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/rustworkx_core_vnext.rs -------------------------------------------------------------------------------- /crates/circuit/src/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/slice.rs -------------------------------------------------------------------------------- /crates/circuit/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/circuit/src/util.rs -------------------------------------------------------------------------------- /crates/pyext/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/pyext/Cargo.toml -------------------------------------------------------------------------------- /crates/pyext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/pyext/README.md -------------------------------------------------------------------------------- /crates/pyext/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/pyext/src/lib.rs -------------------------------------------------------------------------------- /crates/qasm2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/Cargo.toml -------------------------------------------------------------------------------- /crates/qasm2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/README.md -------------------------------------------------------------------------------- /crates/qasm2/src/bytecode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/bytecode.rs -------------------------------------------------------------------------------- /crates/qasm2/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/error.rs -------------------------------------------------------------------------------- /crates/qasm2/src/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/expr.rs -------------------------------------------------------------------------------- /crates/qasm2/src/lex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/lex.rs -------------------------------------------------------------------------------- /crates/qasm2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/lib.rs -------------------------------------------------------------------------------- /crates/qasm2/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm2/src/parse.rs -------------------------------------------------------------------------------- /crates/qasm3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/Cargo.toml -------------------------------------------------------------------------------- /crates/qasm3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/README.md -------------------------------------------------------------------------------- /crates/qasm3/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/src/build.rs -------------------------------------------------------------------------------- /crates/qasm3/src/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/src/circuit.rs -------------------------------------------------------------------------------- /crates/qasm3/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/src/error.rs -------------------------------------------------------------------------------- /crates/qasm3/src/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/src/expr.rs -------------------------------------------------------------------------------- /crates/qasm3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/crates/qasm3/src/lib.rs -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/apidoc/circuit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/circuit.rst -------------------------------------------------------------------------------- /docs/apidoc/circuit_classical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/circuit_classical.rst -------------------------------------------------------------------------------- /docs/apidoc/circuit_library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/circuit_library.rst -------------------------------------------------------------------------------- /docs/apidoc/circuit_random.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/circuit_random.rst -------------------------------------------------------------------------------- /docs/apidoc/circuit_singleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/circuit_singleton.rst -------------------------------------------------------------------------------- /docs/apidoc/compiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/compiler.rst -------------------------------------------------------------------------------- /docs/apidoc/converters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/converters.rst -------------------------------------------------------------------------------- /docs/apidoc/dagcircuit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/dagcircuit.rst -------------------------------------------------------------------------------- /docs/apidoc/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/exceptions.rst -------------------------------------------------------------------------------- /docs/apidoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/index.rst -------------------------------------------------------------------------------- /docs/apidoc/passmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/passmanager.rst -------------------------------------------------------------------------------- /docs/apidoc/primitives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/primitives.rst -------------------------------------------------------------------------------- /docs/apidoc/providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/providers.rst -------------------------------------------------------------------------------- /docs/apidoc/providers_basic_provider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/providers_basic_provider.rst -------------------------------------------------------------------------------- /docs/apidoc/providers_fake_provider.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/providers_fake_provider.rst -------------------------------------------------------------------------------- /docs/apidoc/qasm2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/qasm2.rst -------------------------------------------------------------------------------- /docs/apidoc/qasm3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/qasm3.rst -------------------------------------------------------------------------------- /docs/apidoc/qiskit.circuit.QuantumCircuit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/qiskit.circuit.QuantumCircuit.rst -------------------------------------------------------------------------------- /docs/apidoc/qiskit.synthesis.unitary.aqc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/qiskit.synthesis.unitary.aqc.rst -------------------------------------------------------------------------------- /docs/apidoc/qpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/qpy.rst -------------------------------------------------------------------------------- /docs/apidoc/quantum_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/quantum_info.rst -------------------------------------------------------------------------------- /docs/apidoc/result.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/result.rst -------------------------------------------------------------------------------- /docs/apidoc/synthesis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/synthesis.rst -------------------------------------------------------------------------------- /docs/apidoc/transpiler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/transpiler.rst -------------------------------------------------------------------------------- /docs/apidoc/transpiler_passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/transpiler_passes.rst -------------------------------------------------------------------------------- /docs/apidoc/transpiler_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/transpiler_plugins.rst -------------------------------------------------------------------------------- /docs/apidoc/transpiler_preset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/transpiler_preset.rst -------------------------------------------------------------------------------- /docs/apidoc/transpiler_synthesis_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/transpiler_synthesis_plugins.rst -------------------------------------------------------------------------------- /docs/apidoc/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/utils.rst -------------------------------------------------------------------------------- /docs/apidoc/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/apidoc/visualization.rst -------------------------------------------------------------------------------- /docs/cdoc/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/index.h -------------------------------------------------------------------------------- /docs/cdoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/index.rst -------------------------------------------------------------------------------- /docs/cdoc/qk-bit-term.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/qk-bit-term.rst -------------------------------------------------------------------------------- /docs/cdoc/qk-exit-code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/qk-exit-code.rst -------------------------------------------------------------------------------- /docs/cdoc/qk-obs-term.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/qk-obs-term.rst -------------------------------------------------------------------------------- /docs/cdoc/qk-obs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/cdoc/qk-obs.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/source_images/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/source_images/mapping.png -------------------------------------------------------------------------------- /docs/source_images/transpiling_core_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/docs/source_images/transpiling_core_steps.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qiskit/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /qiskit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/__init__.py -------------------------------------------------------------------------------- /qiskit/_numpy_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/_numpy_compat.py -------------------------------------------------------------------------------- /qiskit/circuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/_add_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/_add_control.py -------------------------------------------------------------------------------- /qiskit/circuit/_classical_resource_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/_classical_resource_map.py -------------------------------------------------------------------------------- /qiskit/circuit/_standard_gates_commutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/_standard_gates_commutations.py -------------------------------------------------------------------------------- /qiskit/circuit/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/_utils.py -------------------------------------------------------------------------------- /qiskit/circuit/annotated_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/annotated_operation.py -------------------------------------------------------------------------------- /qiskit/circuit/barrier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/barrier.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/expr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/expr/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/expr/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/expr/constructors.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/expr/expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/expr/expr.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/expr/visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/expr/visitors.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/types/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/types/ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/types/ordering.py -------------------------------------------------------------------------------- /qiskit/circuit/classical/types/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/classical/types/types.py -------------------------------------------------------------------------------- /qiskit/circuit/commutation_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/commutation_checker.py -------------------------------------------------------------------------------- /qiskit/circuit/commutation_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/commutation_library.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/_builder_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/_builder_utils.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/box.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/break_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/break_loop.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/builder.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/continue_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/continue_loop.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/control_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/control_flow.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/for_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/for_loop.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/if_else.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/switch_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/switch_case.py -------------------------------------------------------------------------------- /qiskit/circuit/controlflow/while_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlflow/while_loop.py -------------------------------------------------------------------------------- /qiskit/circuit/controlledgate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/controlledgate.py -------------------------------------------------------------------------------- /qiskit/circuit/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/delay.py -------------------------------------------------------------------------------- /qiskit/circuit/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/duration.py -------------------------------------------------------------------------------- /qiskit/circuit/equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/equivalence.py -------------------------------------------------------------------------------- /qiskit/circuit/equivalence_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/equivalence_library.py -------------------------------------------------------------------------------- /qiskit/circuit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/exceptions.py -------------------------------------------------------------------------------- /qiskit/circuit/gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/gate.py -------------------------------------------------------------------------------- /qiskit/circuit/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/instruction.py -------------------------------------------------------------------------------- /qiskit/circuit/instructionset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/instructionset.py -------------------------------------------------------------------------------- /qiskit/circuit/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/library/arithmetic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/arithmetic/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/library/basis_change/qft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/basis_change/qft.py -------------------------------------------------------------------------------- /qiskit/circuit/library/bit_flip_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/bit_flip_oracle.py -------------------------------------------------------------------------------- /qiskit/circuit/library/blueprintcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/blueprintcircuit.py -------------------------------------------------------------------------------- /qiskit/circuit/library/fourier_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/fourier_checking.py -------------------------------------------------------------------------------- /qiskit/circuit/library/generalized_gates/gr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/generalized_gates/gr.py -------------------------------------------------------------------------------- /qiskit/circuit/library/generalized_gates/rv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/generalized_gates/rv.py -------------------------------------------------------------------------------- /qiskit/circuit/library/generalized_gates/uc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/generalized_gates/uc.py -------------------------------------------------------------------------------- /qiskit/circuit/library/graph_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/graph_state.py -------------------------------------------------------------------------------- /qiskit/circuit/library/grover_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/grover_operator.py -------------------------------------------------------------------------------- /qiskit/circuit/library/hamiltonian_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/hamiltonian_gate.py -------------------------------------------------------------------------------- /qiskit/circuit/library/iqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/iqp.py -------------------------------------------------------------------------------- /qiskit/circuit/library/n_local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/n_local/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/library/n_local/n_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/n_local/n_local.py -------------------------------------------------------------------------------- /qiskit/circuit/library/n_local/qaoa_ansatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/n_local/qaoa_ansatz.py -------------------------------------------------------------------------------- /qiskit/circuit/library/n_local/two_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/n_local/two_local.py -------------------------------------------------------------------------------- /qiskit/circuit/library/overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/overlap.py -------------------------------------------------------------------------------- /qiskit/circuit/library/pauli_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/pauli_evolution.py -------------------------------------------------------------------------------- /qiskit/circuit/library/phase_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/phase_estimation.py -------------------------------------------------------------------------------- /qiskit/circuit/library/phase_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/phase_oracle.py -------------------------------------------------------------------------------- /qiskit/circuit/library/quantum_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/quantum_volume.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/dcx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/dcx.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/ecr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/ecr.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/h.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/i.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/iswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/iswap.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/p.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/r.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/rx.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/rxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/rxx.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/ry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/ry.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/ryy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/ryy.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/rz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/rz.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/rzx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/rzx.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/rzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/rzz.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/s.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/swap.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/sx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/sx.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/t.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/u.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/u1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/u1.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/u2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/u2.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/u3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/u3.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/x.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/y.py -------------------------------------------------------------------------------- /qiskit/circuit/library/standard_gates/z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/standard_gates/z.py -------------------------------------------------------------------------------- /qiskit/circuit/library/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/templates/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/library/templates/rzx/rzx_cy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/templates/rzx/rzx_cy.py -------------------------------------------------------------------------------- /qiskit/circuit/library/templates/rzx/rzx_xz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/templates/rzx/rzx_xz.py -------------------------------------------------------------------------------- /qiskit/circuit/library/templates/rzx/rzx_yz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/library/templates/rzx/rzx_yz.py -------------------------------------------------------------------------------- /qiskit/circuit/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/measure.py -------------------------------------------------------------------------------- /qiskit/circuit/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/operation.py -------------------------------------------------------------------------------- /qiskit/circuit/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/parameter.py -------------------------------------------------------------------------------- /qiskit/circuit/parameterexpression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/parameterexpression.py -------------------------------------------------------------------------------- /qiskit/circuit/parametertable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/parametertable.py -------------------------------------------------------------------------------- /qiskit/circuit/parametervector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/parametervector.py -------------------------------------------------------------------------------- /qiskit/circuit/quantumcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/quantumcircuit.py -------------------------------------------------------------------------------- /qiskit/circuit/quantumcircuitdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/quantumcircuitdata.py -------------------------------------------------------------------------------- /qiskit/circuit/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/random/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/random/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/random/utils.py -------------------------------------------------------------------------------- /qiskit/circuit/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/reset.py -------------------------------------------------------------------------------- /qiskit/circuit/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/singleton.py -------------------------------------------------------------------------------- /qiskit/circuit/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/store.py -------------------------------------------------------------------------------- /qiskit/circuit/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/tools/__init__.py -------------------------------------------------------------------------------- /qiskit/circuit/tools/pi_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/tools/pi_check.py -------------------------------------------------------------------------------- /qiskit/circuit/twirling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/circuit/twirling.py -------------------------------------------------------------------------------- /qiskit/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/compiler/__init__.py -------------------------------------------------------------------------------- /qiskit/compiler/transpiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/compiler/transpiler.py -------------------------------------------------------------------------------- /qiskit/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/__init__.py -------------------------------------------------------------------------------- /qiskit/converters/circuit_to_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/circuit_to_dag.py -------------------------------------------------------------------------------- /qiskit/converters/circuit_to_dagdependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/circuit_to_dagdependency.py -------------------------------------------------------------------------------- /qiskit/converters/circuit_to_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/circuit_to_gate.py -------------------------------------------------------------------------------- /qiskit/converters/circuit_to_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/circuit_to_instruction.py -------------------------------------------------------------------------------- /qiskit/converters/dag_to_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/dag_to_circuit.py -------------------------------------------------------------------------------- /qiskit/converters/dag_to_dagdependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/dag_to_dagdependency.py -------------------------------------------------------------------------------- /qiskit/converters/dag_to_dagdependency_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/dag_to_dagdependency_v2.py -------------------------------------------------------------------------------- /qiskit/converters/dagdependency_to_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/dagdependency_to_circuit.py -------------------------------------------------------------------------------- /qiskit/converters/dagdependency_to_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/converters/dagdependency_to_dag.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/__init__.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/collect_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/collect_blocks.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/dagcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/dagcircuit.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/dagdependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/dagdependency.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/dagdependency_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/dagdependency_v2.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/dagdepnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/dagdepnode.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/dagnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/dagnode.py -------------------------------------------------------------------------------- /qiskit/dagcircuit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/dagcircuit/exceptions.py -------------------------------------------------------------------------------- /qiskit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/exceptions.py -------------------------------------------------------------------------------- /qiskit/passmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/__init__.py -------------------------------------------------------------------------------- /qiskit/passmanager/base_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/base_tasks.py -------------------------------------------------------------------------------- /qiskit/passmanager/compilation_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/compilation_status.py -------------------------------------------------------------------------------- /qiskit/passmanager/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/exceptions.py -------------------------------------------------------------------------------- /qiskit/passmanager/flow_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/flow_controllers.py -------------------------------------------------------------------------------- /qiskit/passmanager/passmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/passmanager/passmanager.py -------------------------------------------------------------------------------- /qiskit/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/__init__.py -------------------------------------------------------------------------------- /qiskit/primitives/backend_estimator_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/backend_estimator_v2.py -------------------------------------------------------------------------------- /qiskit/primitives/backend_sampler_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/backend_sampler_v2.py -------------------------------------------------------------------------------- /qiskit/primitives/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/__init__.py -------------------------------------------------------------------------------- /qiskit/primitives/base/base_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/base_estimator.py -------------------------------------------------------------------------------- /qiskit/primitives/base/base_primitive_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/base_primitive_job.py -------------------------------------------------------------------------------- /qiskit/primitives/base/base_primitive_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/base_primitive_v1.py -------------------------------------------------------------------------------- /qiskit/primitives/base/base_result_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/base_result_v1.py -------------------------------------------------------------------------------- /qiskit/primitives/base/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/base_sampler.py -------------------------------------------------------------------------------- /qiskit/primitives/base/estimator_result_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/estimator_result_v1.py -------------------------------------------------------------------------------- /qiskit/primitives/base/sampler_result_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/sampler_result_v1.py -------------------------------------------------------------------------------- /qiskit/primitives/base/validation_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/base/validation_v1.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/__init__.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/bindings_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/bindings_array.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/bit_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/bit_array.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/data_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/data_bin.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/estimator_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/estimator_pub.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/object_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/object_array.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/pub_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/pub_result.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/sampler_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/sampler_pub.py -------------------------------------------------------------------------------- /qiskit/primitives/containers/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/containers/shape.py -------------------------------------------------------------------------------- /qiskit/primitives/primitive_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/primitive_job.py -------------------------------------------------------------------------------- /qiskit/primitives/statevector_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/statevector_estimator.py -------------------------------------------------------------------------------- /qiskit/primitives/statevector_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/statevector_sampler.py -------------------------------------------------------------------------------- /qiskit/primitives/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/primitives/utils.py -------------------------------------------------------------------------------- /qiskit/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/backend.py -------------------------------------------------------------------------------- /qiskit/providers/basic_provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/basic_provider/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/basic_provider/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/basic_provider/exceptions.py -------------------------------------------------------------------------------- /qiskit/providers/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/exceptions.py -------------------------------------------------------------------------------- /qiskit/providers/fake_provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/fake_provider/__init__.py -------------------------------------------------------------------------------- /qiskit/providers/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/job.py -------------------------------------------------------------------------------- /qiskit/providers/jobstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/jobstatus.py -------------------------------------------------------------------------------- /qiskit/providers/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/options.py -------------------------------------------------------------------------------- /qiskit/providers/providerutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/providers/providerutils.py -------------------------------------------------------------------------------- /qiskit/qasm/libs/dummy/stdgates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm/libs/dummy/stdgates.inc -------------------------------------------------------------------------------- /qiskit/qasm/libs/qelib1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm/libs/qelib1.inc -------------------------------------------------------------------------------- /qiskit/qasm/libs/stdgates.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm/libs/stdgates.inc -------------------------------------------------------------------------------- /qiskit/qasm2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm2/__init__.py -------------------------------------------------------------------------------- /qiskit/qasm2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm2/exceptions.py -------------------------------------------------------------------------------- /qiskit/qasm2/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm2/export.py -------------------------------------------------------------------------------- /qiskit/qasm2/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm2/parse.py -------------------------------------------------------------------------------- /qiskit/qasm3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/__init__.py -------------------------------------------------------------------------------- /qiskit/qasm3/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/ast.py -------------------------------------------------------------------------------- /qiskit/qasm3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/exceptions.py -------------------------------------------------------------------------------- /qiskit/qasm3/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/experimental.py -------------------------------------------------------------------------------- /qiskit/qasm3/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/exporter.py -------------------------------------------------------------------------------- /qiskit/qasm3/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qasm3/printer.py -------------------------------------------------------------------------------- /qiskit/qpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/__init__.py -------------------------------------------------------------------------------- /qiskit/qpy/binary_io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/binary_io/__init__.py -------------------------------------------------------------------------------- /qiskit/qpy/binary_io/circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/binary_io/circuits.py -------------------------------------------------------------------------------- /qiskit/qpy/binary_io/parse_sympy_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/binary_io/parse_sympy_repr.py -------------------------------------------------------------------------------- /qiskit/qpy/binary_io/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/binary_io/schedules.py -------------------------------------------------------------------------------- /qiskit/qpy/binary_io/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/binary_io/value.py -------------------------------------------------------------------------------- /qiskit/qpy/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/common.py -------------------------------------------------------------------------------- /qiskit/qpy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/exceptions.py -------------------------------------------------------------------------------- /qiskit/qpy/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/formats.py -------------------------------------------------------------------------------- /qiskit/qpy/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/interface.py -------------------------------------------------------------------------------- /qiskit/qpy/type_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/qpy/type_keys.py -------------------------------------------------------------------------------- /qiskit/quantum_info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/__init__.py -------------------------------------------------------------------------------- /qiskit/quantum_info/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/analysis/__init__.py -------------------------------------------------------------------------------- /qiskit/quantum_info/analysis/average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/analysis/average.py -------------------------------------------------------------------------------- /qiskit/quantum_info/analysis/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/analysis/distance.py -------------------------------------------------------------------------------- /qiskit/quantum_info/analysis/z2_symmetries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/analysis/z2_symmetries.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/__init__.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/base_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/base_operator.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/channel/chi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/channel/chi.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/channel/choi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/channel/choi.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/channel/kraus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/channel/kraus.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/channel/ptm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/channel/ptm.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/linear_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/linear_op.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/measures.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/mixins/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/mixins/group.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/mixins/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/mixins/linear.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/op_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/op_shape.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/operator.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/predicates.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/random.py -------------------------------------------------------------------------------- /qiskit/quantum_info/operators/scalar_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/operators/scalar_op.py -------------------------------------------------------------------------------- /qiskit/quantum_info/quaternion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/quaternion.py -------------------------------------------------------------------------------- /qiskit/quantum_info/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/random.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/__init__.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/densitymatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/densitymatrix.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/measures.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/quantum_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/quantum_state.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/random.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/stabilizerstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/stabilizerstate.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/statevector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/statevector.py -------------------------------------------------------------------------------- /qiskit/quantum_info/states/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/quantum_info/states/utils.py -------------------------------------------------------------------------------- /qiskit/result/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/__init__.py -------------------------------------------------------------------------------- /qiskit/result/counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/counts.py -------------------------------------------------------------------------------- /qiskit/result/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/distributions/__init__.py -------------------------------------------------------------------------------- /qiskit/result/distributions/probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/distributions/probability.py -------------------------------------------------------------------------------- /qiskit/result/distributions/quasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/distributions/quasi.py -------------------------------------------------------------------------------- /qiskit/result/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/exceptions.py -------------------------------------------------------------------------------- /qiskit/result/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/models.py -------------------------------------------------------------------------------- /qiskit/result/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/postprocess.py -------------------------------------------------------------------------------- /qiskit/result/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/result.py -------------------------------------------------------------------------------- /qiskit/result/sampled_expval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/sampled_expval.py -------------------------------------------------------------------------------- /qiskit/result/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/result/utils.py -------------------------------------------------------------------------------- /qiskit/synthesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/arithmetic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/arithmetic/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/arithmetic/adders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/arithmetic/adders/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/arithmetic/weighted_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/arithmetic/weighted_sum.py -------------------------------------------------------------------------------- /qiskit/synthesis/boolean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/boolean/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/boolean/boolean_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/boolean/boolean_expression.py -------------------------------------------------------------------------------- /qiskit/synthesis/clifford/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/clifford/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/cnotdihedral/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/cnotdihedral/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/discrete_basis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/discrete_basis/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/lie_trotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/lie_trotter.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/matrix_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/matrix_synthesis.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/pauli_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/pauli_network.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/product_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/product_formula.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/qdrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/qdrift.py -------------------------------------------------------------------------------- /qiskit/synthesis/evolution/suzuki_trotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/evolution/suzuki_trotter.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear/cnot_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear/cnot_synth.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear/linear_depth_lnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear/linear_depth_lnn.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear/linear_matrix_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear/linear_matrix_utils.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear_phase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear_phase/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/linear_phase/cz_depth_lnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/linear_phase/cz_depth_lnn.py -------------------------------------------------------------------------------- /qiskit/synthesis/multi_controlled/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/multi_controlled/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/one_qubit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/one_qubit/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/permutation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/permutation/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/qft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/qft/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/qft/qft_decompose_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/qft/qft_decompose_full.py -------------------------------------------------------------------------------- /qiskit/synthesis/qft/qft_decompose_lnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/qft/qft_decompose_lnn.py -------------------------------------------------------------------------------- /qiskit/synthesis/stabilizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/stabilizer/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/two_qubit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/two_qubit/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/two_qubit/local_invariance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/two_qubit/local_invariance.py -------------------------------------------------------------------------------- /qiskit/synthesis/unitary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/unitary/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/unitary/aqc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/unitary/aqc/__init__.py -------------------------------------------------------------------------------- /qiskit/synthesis/unitary/aqc/approximate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/unitary/aqc/approximate.py -------------------------------------------------------------------------------- /qiskit/synthesis/unitary/aqc/aqc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/unitary/aqc/aqc.py -------------------------------------------------------------------------------- /qiskit/synthesis/unitary/qsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/synthesis/unitary/qsd.py -------------------------------------------------------------------------------- /qiskit/transpiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/basepasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/basepasses.py -------------------------------------------------------------------------------- /qiskit/transpiler/coupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/coupling.py -------------------------------------------------------------------------------- /qiskit/transpiler/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/exceptions.py -------------------------------------------------------------------------------- /qiskit/transpiler/instruction_durations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/instruction_durations.py -------------------------------------------------------------------------------- /qiskit/transpiler/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/layout.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/analysis/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/analysis/count_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/analysis/count_ops.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/analysis/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/analysis/depth.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/analysis/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/analysis/size.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/analysis/width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/analysis/width.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/basis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/basis/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/basis/decompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/basis/decompose.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/layout/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/layout/csp_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/layout/csp_layout.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/layout/set_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/layout/set_layout.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/layout/vf2_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/layout/vf2_layout.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/layout/vf2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/layout/vf2_utils.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/routing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/routing/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/routing/basic_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/routing/basic_swap.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/routing/sabre_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/routing/sabre_swap.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/routing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/routing/utils.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/synthesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/synthesis/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/synthesis/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/synthesis/plugin.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/__init__.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/check_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/check_map.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/control_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/control_flow.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/error.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/fixed_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/fixed_point.py -------------------------------------------------------------------------------- /qiskit/transpiler/passes/utils/gates_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passes/utils/gates_basis.py -------------------------------------------------------------------------------- /qiskit/transpiler/passmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passmanager.py -------------------------------------------------------------------------------- /qiskit/transpiler/passmanager_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/passmanager_config.py -------------------------------------------------------------------------------- /qiskit/transpiler/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/target.py -------------------------------------------------------------------------------- /qiskit/transpiler/timing_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/transpiler/timing_constraints.py -------------------------------------------------------------------------------- /qiskit/user_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/user_config.py -------------------------------------------------------------------------------- /qiskit/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/__init__.py -------------------------------------------------------------------------------- /qiskit/utils/classtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/classtools.py -------------------------------------------------------------------------------- /qiskit/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/deprecation.py -------------------------------------------------------------------------------- /qiskit/utils/lazy_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/lazy_tester.py -------------------------------------------------------------------------------- /qiskit/utils/optionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/optionals.py -------------------------------------------------------------------------------- /qiskit/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/parallel.py -------------------------------------------------------------------------------- /qiskit/utils/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/utils/units.py -------------------------------------------------------------------------------- /qiskit/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/version.py -------------------------------------------------------------------------------- /qiskit/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/__init__.py -------------------------------------------------------------------------------- /qiskit/visualization/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/array.py -------------------------------------------------------------------------------- /qiskit/visualization/bloch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/bloch.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/__init__.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/_utils.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/latex.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/matplotlib.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/qcstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/qcstyle.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit/styles/bw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/styles/bw.json -------------------------------------------------------------------------------- /qiskit/visualization/circuit/styles/iqp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/styles/iqp.json -------------------------------------------------------------------------------- /qiskit/visualization/circuit/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit/text.py -------------------------------------------------------------------------------- /qiskit/visualization/circuit_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/circuit_visualization.py -------------------------------------------------------------------------------- /qiskit/visualization/counts_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/counts_visualization.py -------------------------------------------------------------------------------- /qiskit/visualization/dag_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/dag_visualization.py -------------------------------------------------------------------------------- /qiskit/visualization/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/exceptions.py -------------------------------------------------------------------------------- /qiskit/visualization/gate_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/gate_map.py -------------------------------------------------------------------------------- /qiskit/visualization/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/library.py -------------------------------------------------------------------------------- /qiskit/visualization/state_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/state_visualization.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/__init__.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/core.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/drawings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/drawings.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/generators.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/interface.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/layouts.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/stylesheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/stylesheet.py -------------------------------------------------------------------------------- /qiskit/visualization/timeline/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/timeline/types.py -------------------------------------------------------------------------------- /qiskit/visualization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit/visualization/utils.py -------------------------------------------------------------------------------- /qiskit_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/qiskit_bot.yaml -------------------------------------------------------------------------------- /releasenotes/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/releasenotes/config.yaml -------------------------------------------------------------------------------- /releasenotes/notes/0.45/add-target-to-hls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/releasenotes/notes/0.45/add-target-to-hls.yaml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/requirements-optional.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/requirements.txt -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/__init__.py -------------------------------------------------------------------------------- /test/benchmarks/circuit_construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/circuit_construction.py -------------------------------------------------------------------------------- /test/benchmarks/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/converters.py -------------------------------------------------------------------------------- /test/benchmarks/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/import.py -------------------------------------------------------------------------------- /test/benchmarks/legacy_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/legacy_cmaps.py -------------------------------------------------------------------------------- /test/benchmarks/manipulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/manipulate.py -------------------------------------------------------------------------------- /test/benchmarks/mapping_passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/mapping_passes.py -------------------------------------------------------------------------------- /test/benchmarks/passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/passes.py -------------------------------------------------------------------------------- /test/benchmarks/qasm/53QBT_100CYC_QSE_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/53QBT_100CYC_QSE_3.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/54QBT_25CYC_QSE_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/54QBT_25CYC_QSE_3.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/__init__.py -------------------------------------------------------------------------------- /test/benchmarks/qasm/depth_4gt10-v1_81.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/depth_4gt10-v1_81.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/depth_4mod5-v0_19.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/depth_4mod5-v0_19.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/depth_mod8-10_178.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/depth_mod8-10_178.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/dtc_100_cx_12345.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/dtc_100_cx_12345.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/pea_3_pi_8.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/pea_3_pi_8.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/qft_N100.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/qft_N100.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/test_eoh_qasm.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/test_eoh_qasm.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/time_cnt3-5_179.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/time_cnt3-5_179.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/time_cnt3-5_180.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/time_cnt3-5_180.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm/time_qft_16.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm/time_qft_16.qasm -------------------------------------------------------------------------------- /test/benchmarks/qasm3_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qasm3_exporter.py -------------------------------------------------------------------------------- /test/benchmarks/qft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/qft.py -------------------------------------------------------------------------------- /test/benchmarks/quantum_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/quantum_info.py -------------------------------------------------------------------------------- /test/benchmarks/quantum_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/quantum_volume.py -------------------------------------------------------------------------------- /test/benchmarks/queko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/queko.py -------------------------------------------------------------------------------- /test/benchmarks/random_circuit_hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/random_circuit_hex.py -------------------------------------------------------------------------------- /test/benchmarks/randomized_benchmarking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/randomized_benchmarking.py -------------------------------------------------------------------------------- /test/benchmarks/ripple_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/ripple_adder.py -------------------------------------------------------------------------------- /test/benchmarks/scheduling_passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/scheduling_passes.py -------------------------------------------------------------------------------- /test/benchmarks/statepreparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/statepreparation.py -------------------------------------------------------------------------------- /test/benchmarks/transpiler_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/transpiler_benchmarks.py -------------------------------------------------------------------------------- /test/benchmarks/transpiler_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/transpiler_levels.py -------------------------------------------------------------------------------- /test/benchmarks/transpiler_qualitative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/transpiler_qualitative.py -------------------------------------------------------------------------------- /test/benchmarks/utility_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/utility_scale.py -------------------------------------------------------------------------------- /test/benchmarks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/benchmarks/utils.py -------------------------------------------------------------------------------- /test/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/c/CMakeLists.txt -------------------------------------------------------------------------------- /test/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/c/common.c -------------------------------------------------------------------------------- /test/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/c/common.h -------------------------------------------------------------------------------- /test/c/test_circuit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/c/test_circuit.c -------------------------------------------------------------------------------- /test/c/test_sparse_observable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/c/test_sparse_observable.c -------------------------------------------------------------------------------- /test/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/__init__.py -------------------------------------------------------------------------------- /test/python/circuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/__init__.py -------------------------------------------------------------------------------- /test/python/circuit/classical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/classical/__init__.py -------------------------------------------------------------------------------- /test/python/circuit/gate_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/gate_utils.py -------------------------------------------------------------------------------- /test/python/circuit/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/__init__.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_adders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_adders.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_diagonal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_diagonal.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_global_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_global_r.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_gms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_gms.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_iqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_iqp.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_mcmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_mcmt.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_nlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_nlocal.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_overlap.py -------------------------------------------------------------------------------- /test/python/circuit/library/test_qft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/library/test_qft.py -------------------------------------------------------------------------------- /test/python/circuit/test_bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_bit.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_data.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_find_bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_find_bit.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_operations.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_properties.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_qasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_qasm.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_registers.py -------------------------------------------------------------------------------- /test/python/circuit/test_circuit_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_circuit_vars.py -------------------------------------------------------------------------------- /test/python/circuit/test_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_compose.py -------------------------------------------------------------------------------- /test/python/circuit/test_control_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_control_flow.py -------------------------------------------------------------------------------- /test/python/circuit/test_controlled_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_controlled_gate.py -------------------------------------------------------------------------------- /test/python/circuit/test_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_delay.py -------------------------------------------------------------------------------- /test/python/circuit/test_diagonal_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_diagonal_gate.py -------------------------------------------------------------------------------- /test/python/circuit/test_equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_equivalence.py -------------------------------------------------------------------------------- /test/python/circuit/test_gate_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_gate_definitions.py -------------------------------------------------------------------------------- /test/python/circuit/test_gate_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_gate_power.py -------------------------------------------------------------------------------- /test/python/circuit/test_hamiltonian_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_hamiltonian_gate.py -------------------------------------------------------------------------------- /test/python/circuit/test_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_initializer.py -------------------------------------------------------------------------------- /test/python/circuit/test_instruction_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_instruction_repeat.py -------------------------------------------------------------------------------- /test/python/circuit/test_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_instructions.py -------------------------------------------------------------------------------- /test/python/circuit/test_isometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_isometry.py -------------------------------------------------------------------------------- /test/python/circuit/test_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_operation.py -------------------------------------------------------------------------------- /test/python/circuit/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_parameters.py -------------------------------------------------------------------------------- /test/python/circuit/test_random_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_random_circuit.py -------------------------------------------------------------------------------- /test/python/circuit/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_register.py -------------------------------------------------------------------------------- /test/python/circuit/test_rust_equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_rust_equivalence.py -------------------------------------------------------------------------------- /test/python/circuit/test_scheduled_circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_scheduled_circuit.py -------------------------------------------------------------------------------- /test/python/circuit/test_singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_singleton.py -------------------------------------------------------------------------------- /test/python/circuit/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_store.py -------------------------------------------------------------------------------- /test/python/circuit/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_templates.py -------------------------------------------------------------------------------- /test/python/circuit/test_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_tensor.py -------------------------------------------------------------------------------- /test/python/circuit/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_tools.py -------------------------------------------------------------------------------- /test/python/circuit/test_twirling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_twirling.py -------------------------------------------------------------------------------- /test/python/circuit/test_uc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_uc.py -------------------------------------------------------------------------------- /test/python/circuit/test_ucx_y_z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_ucx_y_z.py -------------------------------------------------------------------------------- /test/python/circuit/test_unitary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/circuit/test_unitary.py -------------------------------------------------------------------------------- /test/python/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/compiler/__init__.py -------------------------------------------------------------------------------- /test/python/compiler/test_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/compiler/test_compiler.py -------------------------------------------------------------------------------- /test/python/compiler/test_transpiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/compiler/test_transpiler.py -------------------------------------------------------------------------------- /test/python/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/converters/__init__.py -------------------------------------------------------------------------------- /test/python/converters/test_circuit_to_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/converters/test_circuit_to_dag.py -------------------------------------------------------------------------------- /test/python/converters/test_circuit_to_gate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/converters/test_circuit_to_gate.py -------------------------------------------------------------------------------- /test/python/dagcircuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/dagcircuit/__init__.py -------------------------------------------------------------------------------- /test/python/dagcircuit/test_collect_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/dagcircuit/test_collect_blocks.py -------------------------------------------------------------------------------- /test/python/dagcircuit/test_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/dagcircuit/test_compose.py -------------------------------------------------------------------------------- /test/python/dagcircuit/test_dagcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/dagcircuit/test_dagcircuit.py -------------------------------------------------------------------------------- /test/python/dagcircuit/test_dagdependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/dagcircuit/test_dagdependency.py -------------------------------------------------------------------------------- /test/python/legacy_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/legacy_cmaps.py -------------------------------------------------------------------------------- /test/python/mock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/mock/__init__.py -------------------------------------------------------------------------------- /test/python/passmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/passmanager/__init__.py -------------------------------------------------------------------------------- /test/python/passmanager/test_generic_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/passmanager/test_generic_pass.py -------------------------------------------------------------------------------- /test/python/passmanager/test_passmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/passmanager/test_passmanager.py -------------------------------------------------------------------------------- /test/python/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/primitives/__init__.py -------------------------------------------------------------------------------- /test/python/primitives/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/primitives/containers/__init__.py -------------------------------------------------------------------------------- /test/python/primitives/test_primitive_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/primitives/test_primitive_job.py -------------------------------------------------------------------------------- /test/python/primitives/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/primitives/test_result.py -------------------------------------------------------------------------------- /test/python/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/providers/__init__.py -------------------------------------------------------------------------------- /test/python/providers/fake_mumbai_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/providers/fake_mumbai_v2.py -------------------------------------------------------------------------------- /test/python/providers/test_backend_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/providers/test_backend_v2.py -------------------------------------------------------------------------------- /test/python/providers/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/providers/test_options.py -------------------------------------------------------------------------------- /test/python/qasm/all_gates.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/all_gates.qasm -------------------------------------------------------------------------------- /test/python/qasm/entangled_registers.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/entangled_registers.qasm -------------------------------------------------------------------------------- /test/python/qasm/example.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/example.qasm -------------------------------------------------------------------------------- /test/python/qasm/example_fail.qasm: -------------------------------------------------------------------------------- 1 | OPENQASM 2.0 2 | -------------------------------------------------------------------------------- /test/python/qasm/example_if.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/example_if.qasm -------------------------------------------------------------------------------- /test/python/qasm/example_version_2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/example_version_2.qasm -------------------------------------------------------------------------------- /test/python/qasm/example_version_fail.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/example_version_fail.qasm -------------------------------------------------------------------------------- /test/python/qasm/move_measurements.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/move_measurements.qasm -------------------------------------------------------------------------------- /test/python/qasm/random_n5_d5.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm/random_n5_d5.qasm -------------------------------------------------------------------------------- /test/python/qasm2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/__init__.py -------------------------------------------------------------------------------- /test/python/qasm2/test_arxiv_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_arxiv_examples.py -------------------------------------------------------------------------------- /test/python/qasm2/test_circuit_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_circuit_methods.py -------------------------------------------------------------------------------- /test/python/qasm2/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_export.py -------------------------------------------------------------------------------- /test/python/qasm2/test_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_expression.py -------------------------------------------------------------------------------- /test/python/qasm2/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_lexer.py -------------------------------------------------------------------------------- /test/python/qasm2/test_parse_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_parse_errors.py -------------------------------------------------------------------------------- /test/python/qasm2/test_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm2/test_structure.py -------------------------------------------------------------------------------- /test/python/qasm3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm3/__init__.py -------------------------------------------------------------------------------- /test/python/qasm3/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm3/test_export.py -------------------------------------------------------------------------------- /test/python/qasm3/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qasm3/test_import.py -------------------------------------------------------------------------------- /test/python/qpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qpy/__init__.py -------------------------------------------------------------------------------- /test/python/qpy/test_circuit_load_from_qpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/qpy/test_circuit_load_from_qpy.py -------------------------------------------------------------------------------- /test/python/quantum_info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/__init__.py -------------------------------------------------------------------------------- /test/python/quantum_info/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/operators/__init__.py -------------------------------------------------------------------------------- /test/python/quantum_info/states/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/states/__init__.py -------------------------------------------------------------------------------- /test/python/quantum_info/states/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/states/test_random.py -------------------------------------------------------------------------------- /test/python/quantum_info/states/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/states/test_utils.py -------------------------------------------------------------------------------- /test/python/quantum_info/test_analyzation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/test_analyzation.py -------------------------------------------------------------------------------- /test/python/quantum_info/test_quaternions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/quantum_info/test_quaternions.py -------------------------------------------------------------------------------- /test/python/result/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/__init__.py -------------------------------------------------------------------------------- /test/python/result/test_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/test_counts.py -------------------------------------------------------------------------------- /test/python/result/test_probability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/test_probability.py -------------------------------------------------------------------------------- /test/python/result/test_quasi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/test_quasi.py -------------------------------------------------------------------------------- /test/python/result/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/test_result.py -------------------------------------------------------------------------------- /test/python/result/test_sampled_expval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/result/test_sampled_expval.py -------------------------------------------------------------------------------- /test/python/synthesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/__init__.py -------------------------------------------------------------------------------- /test/python/synthesis/aqc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/aqc/__init__.py -------------------------------------------------------------------------------- /test/python/synthesis/aqc/sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/aqc/sample_data.py -------------------------------------------------------------------------------- /test/python/synthesis/aqc/test_aqc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/aqc/test_aqc.py -------------------------------------------------------------------------------- /test/python/synthesis/aqc/test_aqc_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/aqc/test_aqc_plugin.py -------------------------------------------------------------------------------- /test/python/synthesis/aqc/test_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/aqc/test_gradient.py -------------------------------------------------------------------------------- /test/python/synthesis/dimacs/quinn.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/dimacs/quinn.cnf -------------------------------------------------------------------------------- /test/python/synthesis/dimacs/simple_v3_c2.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/dimacs/simple_v3_c2.cnf -------------------------------------------------------------------------------- /test/python/synthesis/test_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_boolean.py -------------------------------------------------------------------------------- /test/python/synthesis/test_cx_cz_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_cx_cz_synthesis.py -------------------------------------------------------------------------------- /test/python/synthesis/test_cz_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_cz_synthesis.py -------------------------------------------------------------------------------- /test/python/synthesis/test_linear_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_linear_synthesis.py -------------------------------------------------------------------------------- /test/python/synthesis/test_local_invariance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_local_invariance.py -------------------------------------------------------------------------------- /test/python/synthesis/test_qft_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_qft_synthesis.py -------------------------------------------------------------------------------- /test/python/synthesis/test_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_synthesis.py -------------------------------------------------------------------------------- /test/python/synthesis/test_weyl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/test_weyl.py -------------------------------------------------------------------------------- /test/python/synthesis/xx_decompose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/synthesis/xx_decompose/__init__.py -------------------------------------------------------------------------------- /test/python/test_user_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/test_user_config.py -------------------------------------------------------------------------------- /test/python/transpiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/__init__.py -------------------------------------------------------------------------------- /test/python/transpiler/_dummy_passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/_dummy_passes.py -------------------------------------------------------------------------------- /test/python/transpiler/test_1q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_1q.py -------------------------------------------------------------------------------- /test/python/transpiler/test_apply_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_apply_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_basic_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_basic_swap.py -------------------------------------------------------------------------------- /test/python/transpiler/test_check_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_check_map.py -------------------------------------------------------------------------------- /test/python/transpiler/test_clifford_passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_clifford_passes.py -------------------------------------------------------------------------------- /test/python/transpiler/test_count_ops_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_count_ops_pass.py -------------------------------------------------------------------------------- /test/python/transpiler/test_coupling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_coupling.py -------------------------------------------------------------------------------- /test/python/transpiler/test_csp_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_csp_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_decompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_decompose.py -------------------------------------------------------------------------------- /test/python/transpiler/test_dense_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_dense_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_depth_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_depth_pass.py -------------------------------------------------------------------------------- /test/python/transpiler/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_error.py -------------------------------------------------------------------------------- /test/python/transpiler/test_filter_op_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_filter_op_nodes.py -------------------------------------------------------------------------------- /test/python/transpiler/test_gate_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_gate_direction.py -------------------------------------------------------------------------------- /test/python/transpiler/test_generic_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_generic_pass.py -------------------------------------------------------------------------------- /test/python/transpiler/test_hoare_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_hoare_opt.py -------------------------------------------------------------------------------- /test/python/transpiler/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_layout_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_layout_score.py -------------------------------------------------------------------------------- /test/python/transpiler/test_light_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_light_cone.py -------------------------------------------------------------------------------- /test/python/transpiler/test_lookahead_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_lookahead_swap.py -------------------------------------------------------------------------------- /test/python/transpiler/test_mappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_mappers.py -------------------------------------------------------------------------------- /test/python/transpiler/test_minimum_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_minimum_point.py -------------------------------------------------------------------------------- /test/python/transpiler/test_pass_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_pass_call.py -------------------------------------------------------------------------------- /test/python/transpiler/test_pass_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_pass_scheduler.py -------------------------------------------------------------------------------- /test/python/transpiler/test_passmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_passmanager.py -------------------------------------------------------------------------------- /test/python/transpiler/test_passmanager_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_passmanager_run.py -------------------------------------------------------------------------------- /test/python/transpiler/test_property_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_property_set.py -------------------------------------------------------------------------------- /test/python/transpiler/test_remove_barriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_remove_barriers.py -------------------------------------------------------------------------------- /test/python/transpiler/test_sabre_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_sabre_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_sabre_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_sabre_swap.py -------------------------------------------------------------------------------- /test/python/transpiler/test_setlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_setlayout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_size_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_size_pass.py -------------------------------------------------------------------------------- /test/python/transpiler/test_solovay_kitaev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_solovay_kitaev.py -------------------------------------------------------------------------------- /test/python/transpiler/test_stage_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_stage_plugin.py -------------------------------------------------------------------------------- /test/python/transpiler/test_star_prerouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_star_prerouting.py -------------------------------------------------------------------------------- /test/python/transpiler/test_swap_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_swap_strategy.py -------------------------------------------------------------------------------- /test/python/transpiler/test_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_target.py -------------------------------------------------------------------------------- /test/python/transpiler/test_token_swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_token_swapper.py -------------------------------------------------------------------------------- /test/python/transpiler/test_trivial_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_trivial_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_unroll_forloops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_unroll_forloops.py -------------------------------------------------------------------------------- /test/python/transpiler/test_vf2_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_vf2_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_vf2_post_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_vf2_post_layout.py -------------------------------------------------------------------------------- /test/python/transpiler/test_width_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/transpiler/test_width_pass.py -------------------------------------------------------------------------------- /test/python/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/__init__.py -------------------------------------------------------------------------------- /test/python/utils/test_classtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/test_classtools.py -------------------------------------------------------------------------------- /test/python/utils/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/test_deprecation.py -------------------------------------------------------------------------------- /test/python/utils/test_lazy_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/test_lazy_loaders.py -------------------------------------------------------------------------------- /test/python/utils/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/test_parallel.py -------------------------------------------------------------------------------- /test/python/utils/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/utils/test_units.py -------------------------------------------------------------------------------- /test/python/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/__init__.py -------------------------------------------------------------------------------- /test/python/visualization/test_dag_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/test_dag_drawer.py -------------------------------------------------------------------------------- /test/python/visualization/test_gate_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/test_gate_map.py -------------------------------------------------------------------------------- /test/python/visualization/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/test_utils.py -------------------------------------------------------------------------------- /test/python/visualization/timeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/timeline/__init__.py -------------------------------------------------------------------------------- /test/python/visualization/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/python/visualization/visualization.py -------------------------------------------------------------------------------- /test/qpy_compat/get_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/qpy_compat/get_versions.py -------------------------------------------------------------------------------- /test/qpy_compat/process_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/qpy_compat/process_version.sh -------------------------------------------------------------------------------- /test/qpy_compat/qpy_test_constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/qpy_compat/qpy_test_constraints.txt -------------------------------------------------------------------------------- /test/qpy_compat/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/qpy_compat/run_tests.sh -------------------------------------------------------------------------------- /test/qpy_compat/test_qpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/qpy_compat/test_qpy.py -------------------------------------------------------------------------------- /test/randomized/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/randomized/__init__.py -------------------------------------------------------------------------------- /test/randomized/test_clifford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/randomized/test_clifford.py -------------------------------------------------------------------------------- /test/randomized/test_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/randomized/test_synthesis.py -------------------------------------------------------------------------------- /test/randomized/test_transpiler_equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/randomized/test_transpiler_equivalence.py -------------------------------------------------------------------------------- /test/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/utils/__init__.py -------------------------------------------------------------------------------- /test/utils/_canonical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/utils/_canonical.py -------------------------------------------------------------------------------- /test/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/utils/base.py -------------------------------------------------------------------------------- /test/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/utils/decorators.py -------------------------------------------------------------------------------- /test/visual/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/__init__.py -------------------------------------------------------------------------------- /test/visual/mpl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/__init__.py -------------------------------------------------------------------------------- /test/visual/mpl/circuit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/__init__.py -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/6095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/6095.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/bw.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/cnot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/cnot.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/cz.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/fold_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/fold_4.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/if_op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/if_op.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/r_gates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/r_gates.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/subfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/subfont.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/references/user_ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/references/user_ax.png -------------------------------------------------------------------------------- /test/visual/mpl/circuit/user_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/circuit/user_style.json -------------------------------------------------------------------------------- /test/visual/mpl/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/__init__.py -------------------------------------------------------------------------------- /test/visual/mpl/graph/references/figsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/references/figsize.png -------------------------------------------------------------------------------- /test/visual/mpl/graph/references/hinton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/references/hinton.png -------------------------------------------------------------------------------- /test/visual/mpl/graph/references/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/references/histogram.png -------------------------------------------------------------------------------- /test/visual/mpl/graph/references/paulivec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/references/paulivec.png -------------------------------------------------------------------------------- /test/visual/mpl/graph/references/qsphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl/graph/references/qsphere.png -------------------------------------------------------------------------------- /test/visual/mpl_tester.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/mpl_tester.ipynb -------------------------------------------------------------------------------- /test/visual/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/test/visual/results.py -------------------------------------------------------------------------------- /tools/build_pgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/build_pgo.sh -------------------------------------------------------------------------------- /tools/build_standard_commutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/build_standard_commutations.py -------------------------------------------------------------------------------- /tools/docs_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/docs_exclude.txt -------------------------------------------------------------------------------- /tools/find_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/find_deprecated.py -------------------------------------------------------------------------------- /tools/find_optional_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/find_optional_imports.py -------------------------------------------------------------------------------- /tools/find_stray_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/find_stray_release_notes.py -------------------------------------------------------------------------------- /tools/fix_mailmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/fix_mailmap.py -------------------------------------------------------------------------------- /tools/install_rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/install_rust.sh -------------------------------------------------------------------------------- /tools/install_rust_msrv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/install_rust_msrv.sh -------------------------------------------------------------------------------- /tools/install_ubuntu_c_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/install_ubuntu_c_dependencies.sh -------------------------------------------------------------------------------- /tools/install_ubuntu_docs_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/install_ubuntu_docs_dependencies.sh -------------------------------------------------------------------------------- /tools/pgo_scripts/test_utility_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/pgo_scripts/test_utility_scale.py -------------------------------------------------------------------------------- /tools/pylint_incr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/pylint_incr.py -------------------------------------------------------------------------------- /tools/report_numpy_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/report_numpy_state.py -------------------------------------------------------------------------------- /tools/run_cargo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/run_cargo_test.py -------------------------------------------------------------------------------- /tools/run_clang_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/run_clang_format.sh -------------------------------------------------------------------------------- /tools/subunit_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/subunit_to_junit.py -------------------------------------------------------------------------------- /tools/verify_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/verify_headers.py -------------------------------------------------------------------------------- /tools/verify_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tools/verify_images.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/qiskit/HEAD/tox.ini --------------------------------------------------------------------------------