.env.example
.gitignore
Dockerfile
LICENSE
README.md
pyproject.toml
pytest.ini
requirements-dev.txt
requirements.txt
setup.py
.github/workflows/mpqp_dev.yml
.github/workflows/mpqp_prod.yml
docs/all-modules.rst
docs/barrier.rst
docs/changelog.rst
docs/circuit.rst
docs/conf.py
docs/execution-extras.rst
docs/execution.rst
docs/gates.rst
docs/getting-started.rst
docs/index.rst
docs/instructions.rst
docs/measures.rst
docs/qasm.rst
docs/tools.rst
docs/vqa.rst
docs/_static/custom.css
docs/_static/custom.js
docs/_templates/footer.html
docs/resources/ColibriTD-logo.png
docs/resources/favicon.ico
docs/resources/mpqp_favicon.png
docs/resources/mpqp_test_logo.png
example/notebooks/Notebook_1__Basics_of_circuit.ipynb
example/notebooks/Notebook_2__Execution_Bell_circuit.ipynb
example/notebooks/Notebook_3__Expectation_value_of_observables.ipynb
example/notebooks/Notebook_4__Quantum_Fourier_Transform.ipynb
example/notebooks/Notebook_5__Variational_Quantum_Algorithms.ipynb
example/scripts/CNOT_cascade_v_pairs.py
example/scripts/aws_execution_trials.py
example/scripts/bell_pair.py
example/scripts/circuit_to_qasm.py
example/scripts/demonstration.py
example/scripts/native_gates_examples.py
example/scripts/observable_job.py
example/scripts/open_qasm_conversions.py
example/scripts/qasm_files/circ_import.qasm
example/scripts/qasm_files/circ_import2.qasm
example/scripts/qasm_files/include1.qasm
example/scripts/qasm_files/include1_converted.qasm
example/scripts/qasm_files/include2.qasm
example/scripts/qasm_files/include2_converted.qasm
example/scripts/qasm_files/main.qasm
example/scripts/qasm_files/test_qasm.inc
mpqp/__init__.py
mpqp/all.py
mpqp.egg-info/PKG-INFO
mpqp.egg-info/SOURCES.txt
mpqp.egg-info/dependency_links.txt
mpqp.egg-info/entry_points.txt
mpqp.egg-info/requires.txt
mpqp.egg-info/top_level.txt
mpqp/core/__init__.py
mpqp/core/circuit.py
mpqp/core/languages.py
mpqp/core/instruction/__init__.py
mpqp/core/instruction/barrier.py
mpqp/core/instruction/instruction.py
mpqp/core/instruction/gates/__init__.py
mpqp/core/instruction/gates/controlled_gate.py
mpqp/core/instruction/gates/custom_gate.py
mpqp/core/instruction/gates/gate.py
mpqp/core/instruction/gates/gate_definition.py
mpqp/core/instruction/gates/native_gates.py
mpqp/core/instruction/gates/parametrized_gate.py
mpqp/core/instruction/measurement/__init__.py
mpqp/core/instruction/measurement/basis.py
mpqp/core/instruction/measurement/basis_measure.py
mpqp/core/instruction/measurement/expectation_value.py
mpqp/core/instruction/measurement/measure.py
mpqp/core/noise/__init__.py
mpqp/core/noise/noise_methods.py
mpqp/core/noise/noise_model.py
mpqp/execution/__init__.py
mpqp/execution/devices.py
mpqp/execution/job.py
mpqp/execution/remote_handler.py
mpqp/execution/result.py
mpqp/execution/runner.py
mpqp/execution/connection/__init__.py
mpqp/execution/connection/aws_connection.py
mpqp/execution/connection/env_manager.py
mpqp/execution/connection/ibm_connection.py
mpqp/execution/connection/qlm_connection.py
mpqp/execution/connection/setup_connections.py
mpqp/execution/providers_execution/__init__.py
mpqp/execution/providers_execution/atos_execution.py
mpqp/execution/providers_execution/aws_execution.py
mpqp/execution/providers_execution/ibm_execution.py
mpqp/execution/vqa/__init__.py
mpqp/execution/vqa/optimizer.py
mpqp/execution/vqa/vqa.py
mpqp/gates/__init__.py
mpqp/measures/__init__.py
mpqp/qasm/__init__.py
mpqp/qasm/open_qasm_2_and_3.py
mpqp/qasm/qasm_to_braket.py
mpqp/qasm/qasm_to_myqlm.py
mpqp/qasm/qasm_to_qiskit.py
mpqp/qasm/header_codes/__init__.py
mpqp/qasm/header_codes/braket_custom_include.inc
mpqp/qasm/header_codes/c3sqrtx.qasm
mpqp/qasm/header_codes/c3x.qasm
mpqp/qasm/header_codes/c4x.qasm
mpqp/qasm/header_codes/csx.qasm
mpqp/qasm/header_codes/cu3.qasm
mpqp/qasm/header_codes/qelib1.inc
mpqp/qasm/header_codes/rc3x.qasm
mpqp/qasm/header_codes/rccx.qasm
mpqp/qasm/header_codes/rxx.qasm
mpqp/qasm/header_codes/rzz.qasm
mpqp/qasm/header_codes/std_lib.qasm
mpqp/qasm/header_codes/stdgates.inc
mpqp/qasm/header_codes/u0.qasm
mpqp/tools/__init__.py
mpqp/tools/choice_tree.py
mpqp/tools/errors.py
mpqp/tools/generics.py
mpqp/tools/maths.py
mpqp/tools/visualization.py
resources/logo.svg
resources/mpqp-usage.gif
tests/OA_attempt/OA-mpqp.py
tests/core/test_circuit.py
tests/core/instruction/test_instruction.py
tests/core/instruction/gates/test_controlled_gate.py
tests/core/instruction/gates/test_gate.py
tests/core/instruction/gates/test_gate_definition.py
tests/core/instruction/gates/test_native_gates.py
tests/core/instruction/measurement/test_basis.py
tests/core/instruction/measurement/test_basis_measure.py
tests/core/instruction/measurement/test_expectation_value.py
tests/core/instruction/measurement/test_measure.py
tests/core/noise/test_noise_methods.py
tests/core/noise/test_noise_model.py
tests/core/test_circuit/add-X.txt
tests/core/test_circuit/add-list.txt
tests/core/test_circuit/all.qasm2
tests/core/test_circuit/all.qasm3
tests/core/test_circuit/init-barrier.txt
tests/core/test_circuit/init-cnots.txt
tests/core/test_circuit/init-empty.txt
tests/core/test_circuit/init-measure.txt
tests/core/test_circuit/lot_of_gates.qasm3
tests/core/test_circuit/wo_meas-all.txt
tests/example/test_demonstrations.py
tests/execution/test_devices.py
tests/execution/test_job.py
tests/execution/test_result.py
tests/execution/test_runner.py
tests/execution/test_vqa.py
tests/execution/connection/test_ibm_q_connection.py
tests/execution/connection/test_qlm_connection.py
tests/execution/connection/test_setup_connections.py
tests/execution/providers_execution/test_atos_execution.py
tests/execution/providers_execution/test_aws_execution.py
tests/execution/providers_execution/test_ibm_execution.py
tests/qasm/test_open_qasm_2_and_3.py
tests/qasm/test_qasm_to_braket.py
tests/qasm/test_qasm_to_myqlm.py
tests/qasm/test_qasm_to_qiskit.py
tests/qasm/qasm_examples/circular_dep1.qasm
tests/qasm/qasm_examples/circular_dep2.qasm
tests/qasm/qasm_examples/circular_dep_a.qasm
tests/qasm/qasm_examples/circular_dep_b.qasm
tests/qasm/qasm_examples/circular_dep_b_converted.qasm
tests/qasm/qasm_examples/circular_dep_c.qasm
tests/qasm/qasm_examples/circular_dep_c_converted.qasm
tests/qasm/qasm_examples/circular_dep_d.qasm
tests/qasm/qasm_examples/circular_dep_d_converted.qasm
tests/qasm/qasm_examples/in_time_gate_def.qasm
tests/qasm/qasm_examples/in_time_gate_def_converted.qasm
tests/qasm/qasm_examples/included.qasm
tests/qasm/qasm_examples/late_gate_def.qasm
tests/qasm/qasm_examples/with_include.qasm
tests/qasm/qasm_examples/without_include.qasm
tests/tools/test_math.py