├── .editorconfig ├── .git_archival.txt ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── SECURITY.md ├── SUPPORT.md ├── codecov.yml ├── pull_request_template.md ├── release-drafter.yml ├── renovate.json5 └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── release-drafter.yml │ └── templating.yml ├── .gitignore ├── .license-tools-config.json ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── docs ├── AnalogInfo.md ├── CHANGELOG.md ├── CatStates.md ├── Encoders.md ├── LightsOutDecoder.md ├── StatePrep.md ├── UPGRADING.md ├── _static │ ├── custom.css │ ├── mqt_dark.png │ └── mqt_light.png ├── _templates │ └── page.html ├── conf.py ├── contributing.md ├── full_ft_scheme.svg ├── images │ ├── 488_color_code.svg │ ├── cc.png │ ├── full_ft_scheme.svg │ ├── lights-out.png │ ├── lo.png │ └── steane-ex.png ├── index.md ├── installation.md ├── lit_header.bib ├── references.md ├── refs.bib ├── support.md └── templates │ └── page.html ├── examples ├── lp_(4,8)-[[1024,18,nan]]_hx.txt ├── lp_(4,8)-[[1024,18,nan]]_hz.txt ├── mkmn_24_6_10.txt ├── test │ ├── hgp_(4,7)-[[900,36,10]]_hx.txt │ ├── hgp_(4,7)-[[900,36,10]]_hz.txt │ ├── hgp_(4,8)-[[5408,18,26]]_hx.txt │ ├── inCodes │ │ └── toric_(nan,nan)-[[8,2,2]]_hx.txt │ ├── testCode.txt │ ├── toric_(nan,nan)-[[18,2,3]]_hx.txt │ ├── toric_(nan,nan)-[[32,2,4]]_hx.txt │ └── toric_(nan,nan)-[[8,2,2]]_hx.txt ├── toric │ ├── toric_(nan,nan)-[[1058,2,23]]_hx.txt │ ├── toric_(nan,nan)-[[200,2,10]]_hx.txt │ └── toric_(nan,nan)-[[512,2,16]]_hx.txt └── toricCodes │ ├── toric_(nan,nan)-[[128,2,8]]_hz.txt │ ├── toric_(nan,nan)-[[162,2,9]]_hz.txt │ ├── toric_(nan,nan)-[[18,2,3]]_hz.txt │ ├── toric_(nan,nan)-[[200,2,10]]_hz.txt │ ├── toric_(nan,nan)-[[32,2,4]]_hz.txt │ ├── toric_(nan,nan)-[[50,2,5]]_hz.txt │ ├── toric_(nan,nan)-[[72,2,6]]_hz.txt │ ├── toric_(nan,nan)-[[8,2,2]]_hz.txt │ └── toric_(nan,nan)-[[98,2,7]]_hz.txt ├── noxfile.py ├── pyproject.toml ├── scripts ├── cat_states │ ├── estimate_error_rate.py │ └── run_parallel.sh ├── cc_decoder │ ├── plotting │ │ ├── plot_convergence_rate.ipynb │ │ ├── plot_pseudothresholds.ipynb │ │ └── plots.py │ ├── run.sh │ └── run_color_code_phenomenological_noise.py ├── constructHGPcodes.py ├── examples │ ├── atd_example.py │ ├── decoding-performance-simulations.py │ ├── readme_example.py │ └── runtime-simulations.py ├── ft_stateprep │ ├── eval │ │ ├── README.md │ │ ├── circuits │ │ │ ├── carbon │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ │ ├── cc_4_8_8 │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ └── zero_non_ft_heuristic.stim │ │ │ ├── cc_4_8_8_d7 │ │ │ │ ├── zero_ft_heuristic_mixed.qasm │ │ │ │ ├── zero_ft_heuristic_mixed.stim │ │ │ │ ├── zero_ft_naive.qasm │ │ │ │ ├── zero_ft_naive.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ └── zero_non_ft_heuristic.stim │ │ │ ├── cc_6_6_6 │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ └── zero_non_ft_heuristic.stim │ │ │ ├── hamming │ │ │ │ ├── plus_ft_heuristic_heuristic.qasm │ │ │ │ ├── plus_ft_heuristic_heuristic.stim │ │ │ │ ├── plus_ft_heuristic_opt.qasm │ │ │ │ ├── plus_ft_heuristic_opt.stim │ │ │ │ ├── plus_ft_opt_opt.qasm │ │ │ │ ├── plus_ft_opt_opt.stim │ │ │ │ ├── plus_non_ft_heuristic.qasm │ │ │ │ ├── plus_non_ft_heuristic.stim │ │ │ │ ├── plus_non_ft_opt.qasm │ │ │ │ ├── plus_non_ft_opt.stim │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ │ ├── rotated_surface_d3 │ │ │ │ ├── plus_ft_heuristic_heuristic.qasm │ │ │ │ ├── plus_ft_heuristic_heuristic.stim │ │ │ │ ├── plus_ft_heuristic_opt.qasm │ │ │ │ ├── plus_ft_heuristic_opt.stim │ │ │ │ ├── plus_ft_opt_opt.qasm │ │ │ │ ├── plus_ft_opt_opt.stim │ │ │ │ ├── plus_non_ft_heuristic.qasm │ │ │ │ ├── plus_non_ft_heuristic.stim │ │ │ │ ├── plus_non_ft_opt.qasm │ │ │ │ ├── plus_non_ft_opt.stim │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ │ ├── rotated_surface_d5 │ │ │ │ ├── zero_ft_heuristic_naive.qasm │ │ │ │ ├── zero_ft_heuristic_naive.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ └── zero_non_ft_heuristic.stim │ │ │ ├── shor │ │ │ │ ├── plus_ft_heuristic_heuristic.qasm │ │ │ │ ├── plus_ft_heuristic_heuristic.stim │ │ │ │ ├── plus_ft_heuristic_opt.qasm │ │ │ │ ├── plus_ft_heuristic_opt.stim │ │ │ │ ├── plus_ft_opt_opt.qasm │ │ │ │ ├── plus_ft_opt_opt.stim │ │ │ │ ├── plus_non_ft_heuristic.qasm │ │ │ │ ├── plus_non_ft_heuristic.stim │ │ │ │ ├── plus_non_ft_opt.qasm │ │ │ │ ├── plus_non_ft_opt.stim │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ │ ├── steane │ │ │ │ ├── plus_ft_heuristic_heuristic.qasm │ │ │ │ ├── plus_ft_heuristic_heuristic.stim │ │ │ │ ├── plus_ft_heuristic_opt.qasm │ │ │ │ ├── plus_ft_heuristic_opt.stim │ │ │ │ ├── plus_ft_opt_opt.qasm │ │ │ │ ├── plus_ft_opt_opt.stim │ │ │ │ ├── plus_non_ft_heuristic.qasm │ │ │ │ ├── plus_non_ft_heuristic.stim │ │ │ │ ├── plus_non_ft_opt.qasm │ │ │ │ ├── plus_non_ft_opt.stim │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ │ └── tetrahedral │ │ │ │ ├── plus_ft_heuristic_heuristic.qasm │ │ │ │ ├── plus_ft_heuristic_heuristic.stim │ │ │ │ ├── plus_ft_heuristic_opt.qasm │ │ │ │ ├── plus_ft_heuristic_opt.stim │ │ │ │ ├── plus_non_ft_heuristic.qasm │ │ │ │ ├── plus_non_ft_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_heuristic.qasm │ │ │ │ ├── zero_ft_heuristic_heuristic.stim │ │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ │ ├── zero_ft_heuristic_opt.stim │ │ │ │ ├── zero_ft_opt_opt.qasm │ │ │ │ ├── zero_ft_opt_opt.stim │ │ │ │ ├── zero_non_ft_heuristic.qasm │ │ │ │ ├── zero_non_ft_heuristic.stim │ │ │ │ ├── zero_non_ft_opt.qasm │ │ │ │ └── zero_non_ft_opt.stim │ │ ├── estimate_logical_error_rate.py │ │ ├── luts │ │ │ └── decoder_488_7.pickle │ │ ├── run_d7.py │ │ └── run_eval_on_code.sh │ └── eval_det │ │ ├── circuits │ │ ├── 11_1_3 │ │ │ └── zero_heuristic.qasm │ │ ├── 16_2_4 │ │ │ └── zero_heuristic.qasm │ │ ├── carbon │ │ │ ├── zero_heuristic.qasm │ │ │ └── zero_opt.qasm │ │ ├── hamming │ │ │ ├── zero_ft_heuristic_opt.qasm │ │ │ └── zero_ft_opt.qasm │ │ ├── hypercube │ │ │ └── zero_heuristic.qasm │ │ ├── shor │ │ │ ├── zero_heuristic.qasm │ │ │ └── zero_opt.qasm │ │ ├── steane │ │ │ ├── zero_heuristic.qasm │ │ │ └── zero_opt.qasm │ │ ├── surface_3 │ │ │ ├── plus_heuristic.qasm │ │ │ ├── plus_opt.qasm │ │ │ ├── zero_heuristic.qasm │ │ │ └── zero_opt.qasm │ │ └── tetrahedral │ │ │ ├── plus_heuristic.qasm │ │ │ ├── zero_heuristic.qasm │ │ │ └── zero_opt.qasm │ │ ├── eval.py │ │ ├── plot.ipynb │ │ └── results.csv └── numerics │ ├── code_construct │ ├── constructHGPcodes.py │ ├── constructLPcodes.py │ ├── constructToricCodes.py │ ├── lifted_hgp.py │ └── mkmn_24_6_10.txt │ ├── data │ ├── decodingPerformance │ │ └── 1024_lp_code │ │ │ ├── dp-heur-singlerandomg-100k-runs.json │ │ │ ├── dp-heur-singlesmallest-100k-runs.json │ │ │ ├── dp-heur-standardg-100k-runs.json │ │ │ └── dp-original-stdgrowth-100k-runs.json │ └── runtime │ │ ├── rt-heur-1k-50s.json │ │ └── rt-original-1k-01.json │ ├── pers.txt │ └── visualize │ ├── visualizeDecodingRuntime.py │ └── visualizeWordErrRate.py ├── sitecustomize.py ├── src └── mqt │ └── qecc │ ├── __init__.py │ ├── _version.pyi │ ├── analog_information_decoding │ ├── code_construction │ │ ├── code_constructor.py │ │ ├── compute_distances.sh │ │ ├── compute_distances_3D.sh │ │ └── sparse_code_constructor.py │ ├── codes │ │ └── lifted_product │ │ │ ├── lp_l=16_hx.npz │ │ │ ├── lp_l=16_hz.npz │ │ │ ├── lp_l=21_hx.npz │ │ │ ├── lp_l=21_hz.npz │ │ │ ├── lp_l=30_hx.npz │ │ │ └── lp_l=30_hz.npz │ ├── results │ │ └── bp-parameter-comparison │ │ │ └── A comparison of BPOSD Settings.pdf │ ├── simulators │ │ ├── analog_tannergraph_decoding.py │ │ ├── memory_experiment_v2.py │ │ ├── quasi_single_shot_v2.py │ │ └── simulation.py │ └── utils │ │ ├── data_utils.py │ │ └── simulation_utils.py │ ├── cc_decoder │ ├── __init__.py │ ├── cli.py │ ├── comparison │ │ └── tn_decoder.py │ ├── decoder.py │ └── stim_interface │ │ ├── color_code_stim.py │ │ ├── dem_to_matrices.py │ │ ├── max_sat_sinter_decoder.py │ │ └── max_sat_stim_decoder.py │ ├── circuit_synthesis │ ├── __init__.py │ ├── cat_states.py │ ├── circuit_utils.py │ ├── circuits.py │ ├── definitions.py │ ├── encoding.py │ ├── encoding_circuits │ │ ├── 10_1_2.qasm │ │ ├── 4_2_2.qasm │ │ ├── 6_2_2.qasm │ │ ├── carbon.qasm │ │ ├── hamming.qasm │ │ ├── shor.qasm │ │ ├── steane.qasm │ │ ├── surface.qasm │ │ └── tetrahedral.qasm │ ├── examples │ │ ├── Encoding_Circuit.ipynb │ │ └── Non_CSS_Ancillas.ipynb │ ├── faults.py │ ├── noise.py │ ├── non_css_ancillas │ │ ├── five_qubit_code.qasm │ │ ├── five_qubit_code_verified.qasm │ │ ├── gottesman_8_3_3.qasm │ │ └── gottesman_8_3_3_verified.qasm │ ├── simulation.py │ ├── simulation_det.py │ ├── state_prep.py │ ├── state_prep_det.py │ └── synthesis_utils.py │ ├── codes │ ├── __init__.py │ ├── bb_codes.py │ ├── carbon │ │ ├── hx.npy │ │ └── hz.npy │ ├── cc_4_8_8_d5 │ │ ├── hx.npy │ │ └── hz.npy │ ├── color_code.py │ ├── concatenation.py │ ├── constructions.py │ ├── css_code.py │ ├── golay │ │ ├── hx.npy │ │ └── hz.npy │ ├── hamming_15 │ │ ├── hx.npy │ │ └── hz.npy │ ├── hexagonal_color_code.py │ ├── pauli.py │ ├── rotated_surface_code.py │ ├── rotated_surface_d3 │ │ ├── hx.npy │ │ └── hz.npy │ ├── rotated_surface_d5 │ │ ├── hx.npy │ │ └── hz.npy │ ├── shor │ │ ├── hx.npy │ │ └── hz.npy │ ├── square_octagon_color_code.py │ ├── stabilizer_code.py │ ├── steane │ │ ├── hx.npy │ │ └── hz.npy │ ├── symplectic.py │ └── tetrahedral │ │ ├── hx.npy │ │ └── hz.npy │ └── py.typed ├── tests ├── __init__.py ├── analog_info │ ├── test_analog_tannergraph_decoding.py │ ├── test_memory_experiment.py │ ├── test_qss.py │ ├── test_simulation_utils.py │ └── test_ss_simulation.py ├── cc_decoder │ ├── __init__.py │ ├── test_cc_decoder.py │ ├── test_color_code_stim.py │ ├── test_dem_to_matrices.py │ ├── test_max_sat_sinter_decoder.py │ ├── test_max_sat_stim_decoder.py │ ├── test_square_octagon_color_code.py │ └── test_utils.py ├── circuit_synthesis │ ├── __init__.py │ ├── test_cat_states.py │ ├── test_circuits.py │ ├── test_deterministic.py │ ├── test_encoder_synthesis.py │ ├── test_faults.py │ ├── test_noise.py │ ├── test_simulation.py │ ├── test_stateprep.py │ ├── test_utils.py │ └── utils.py └── test_code.py └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.github/workflows/templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.gitignore -------------------------------------------------------------------------------- /.license-tools-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.license-tools-config.json -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /docs/AnalogInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/AnalogInfo.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/CatStates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/CatStates.md -------------------------------------------------------------------------------- /docs/Encoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/Encoders.md -------------------------------------------------------------------------------- /docs/LightsOutDecoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/LightsOutDecoder.md -------------------------------------------------------------------------------- /docs/StatePrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/StatePrep.md -------------------------------------------------------------------------------- /docs/UPGRADING.md: -------------------------------------------------------------------------------- 1 | ```{include} ../UPGRADING.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/mqt_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/_static/mqt_dark.png -------------------------------------------------------------------------------- /docs/_static/mqt_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/_static/mqt_light.png -------------------------------------------------------------------------------- /docs/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/_templates/page.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/full_ft_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/full_ft_scheme.svg -------------------------------------------------------------------------------- /docs/images/488_color_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/488_color_code.svg -------------------------------------------------------------------------------- /docs/images/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/cc.png -------------------------------------------------------------------------------- /docs/images/full_ft_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/full_ft_scheme.svg -------------------------------------------------------------------------------- /docs/images/lights-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/lights-out.png -------------------------------------------------------------------------------- /docs/images/lo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/lo.png -------------------------------------------------------------------------------- /docs/images/steane-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/images/steane-ex.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/lit_header.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/lit_header.bib -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/references.md -------------------------------------------------------------------------------- /docs/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/refs.bib -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- 1 | ```{include} ../.github/SUPPORT.md 2 | 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/docs/templates/page.html -------------------------------------------------------------------------------- /examples/lp_(4,8)-[[1024,18,nan]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/lp_(4,8)-[[1024,18,nan]]_hx.txt -------------------------------------------------------------------------------- /examples/lp_(4,8)-[[1024,18,nan]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/lp_(4,8)-[[1024,18,nan]]_hz.txt -------------------------------------------------------------------------------- /examples/mkmn_24_6_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/mkmn_24_6_10.txt -------------------------------------------------------------------------------- /examples/test/hgp_(4,7)-[[900,36,10]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/hgp_(4,7)-[[900,36,10]]_hx.txt -------------------------------------------------------------------------------- /examples/test/hgp_(4,7)-[[900,36,10]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/hgp_(4,7)-[[900,36,10]]_hz.txt -------------------------------------------------------------------------------- /examples/test/hgp_(4,8)-[[5408,18,26]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/hgp_(4,8)-[[5408,18,26]]_hx.txt -------------------------------------------------------------------------------- /examples/test/inCodes/toric_(nan,nan)-[[8,2,2]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/inCodes/toric_(nan,nan)-[[8,2,2]]_hx.txt -------------------------------------------------------------------------------- /examples/test/testCode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/testCode.txt -------------------------------------------------------------------------------- /examples/test/toric_(nan,nan)-[[18,2,3]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/toric_(nan,nan)-[[18,2,3]]_hx.txt -------------------------------------------------------------------------------- /examples/test/toric_(nan,nan)-[[32,2,4]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/toric_(nan,nan)-[[32,2,4]]_hx.txt -------------------------------------------------------------------------------- /examples/test/toric_(nan,nan)-[[8,2,2]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/test/toric_(nan,nan)-[[8,2,2]]_hx.txt -------------------------------------------------------------------------------- /examples/toric/toric_(nan,nan)-[[1058,2,23]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toric/toric_(nan,nan)-[[1058,2,23]]_hx.txt -------------------------------------------------------------------------------- /examples/toric/toric_(nan,nan)-[[200,2,10]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toric/toric_(nan,nan)-[[200,2,10]]_hx.txt -------------------------------------------------------------------------------- /examples/toric/toric_(nan,nan)-[[512,2,16]]_hx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toric/toric_(nan,nan)-[[512,2,16]]_hx.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[128,2,8]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[128,2,8]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[162,2,9]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[162,2,9]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[18,2,3]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[18,2,3]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[200,2,10]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[200,2,10]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[32,2,4]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[32,2,4]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[50,2,5]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[50,2,5]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[72,2,6]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[72,2,6]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[8,2,2]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[8,2,2]]_hz.txt -------------------------------------------------------------------------------- /examples/toricCodes/toric_(nan,nan)-[[98,2,7]]_hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/examples/toricCodes/toric_(nan,nan)-[[98,2,7]]_hz.txt -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/cat_states/estimate_error_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cat_states/estimate_error_rate.py -------------------------------------------------------------------------------- /scripts/cat_states/run_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cat_states/run_parallel.sh -------------------------------------------------------------------------------- /scripts/cc_decoder/plotting/plot_convergence_rate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cc_decoder/plotting/plot_convergence_rate.ipynb -------------------------------------------------------------------------------- /scripts/cc_decoder/plotting/plot_pseudothresholds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cc_decoder/plotting/plot_pseudothresholds.ipynb -------------------------------------------------------------------------------- /scripts/cc_decoder/plotting/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cc_decoder/plotting/plots.py -------------------------------------------------------------------------------- /scripts/cc_decoder/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cc_decoder/run.sh -------------------------------------------------------------------------------- /scripts/cc_decoder/run_color_code_phenomenological_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/cc_decoder/run_color_code_phenomenological_noise.py -------------------------------------------------------------------------------- /scripts/constructHGPcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/constructHGPcodes.py -------------------------------------------------------------------------------- /scripts/examples/atd_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/examples/atd_example.py -------------------------------------------------------------------------------- /scripts/examples/decoding-performance-simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/examples/decoding-performance-simulations.py -------------------------------------------------------------------------------- /scripts/examples/readme_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/examples/readme_example.py -------------------------------------------------------------------------------- /scripts/examples/runtime-simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/examples/runtime-simulations.py -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/README.md -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/carbon/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_heuristic_mixed.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_heuristic_mixed.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_heuristic_mixed.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_heuristic_mixed.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_naive.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_naive.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_naive.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_ft_naive.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_4_8_8_d7/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/cc_6_6_6/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/plus_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/hamming/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/plus_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d3/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_naive.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_naive.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_naive.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_naive.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/rotated_surface_d5/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/plus_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/shor/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/plus_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/steane/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/plus_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/plus_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_heuristic_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_opt_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_opt_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_opt_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_ft_opt_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_heuristic.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_heuristic.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_opt.stim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/circuits/tetrahedral/zero_non_ft_opt.stim -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/estimate_logical_error_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/estimate_logical_error_rate.py -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/luts/decoder_488_7.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/luts/decoder_488_7.pickle -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/run_d7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/run_d7.py -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval/run_eval_on_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval/run_eval_on_code.sh -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/11_1_3/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/11_1_3/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/16_2_4/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/16_2_4/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/carbon/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/carbon/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/carbon/zero_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/carbon/zero_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/hamming/zero_ft_heuristic_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/hamming/zero_ft_heuristic_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/hamming/zero_ft_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/hamming/zero_ft_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/hypercube/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/hypercube/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/shor/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/shor/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/shor/zero_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/shor/zero_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/steane/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/steane/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/steane/zero_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/steane/zero_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/surface_3/plus_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/surface_3/plus_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/surface_3/plus_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/surface_3/plus_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/surface_3/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/surface_3/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/surface_3/zero_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/surface_3/zero_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/tetrahedral/plus_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/tetrahedral/plus_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/tetrahedral/zero_heuristic.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/tetrahedral/zero_heuristic.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/circuits/tetrahedral/zero_opt.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/circuits/tetrahedral/zero_opt.qasm -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/eval.py -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/plot.ipynb -------------------------------------------------------------------------------- /scripts/ft_stateprep/eval_det/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/ft_stateprep/eval_det/results.csv -------------------------------------------------------------------------------- /scripts/numerics/code_construct/constructHGPcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/code_construct/constructHGPcodes.py -------------------------------------------------------------------------------- /scripts/numerics/code_construct/constructLPcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/code_construct/constructLPcodes.py -------------------------------------------------------------------------------- /scripts/numerics/code_construct/constructToricCodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/code_construct/constructToricCodes.py -------------------------------------------------------------------------------- /scripts/numerics/code_construct/lifted_hgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/code_construct/lifted_hgp.py -------------------------------------------------------------------------------- /scripts/numerics/code_construct/mkmn_24_6_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/code_construct/mkmn_24_6_10.txt -------------------------------------------------------------------------------- /scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-singlerandomg-100k-runs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-singlerandomg-100k-runs.json -------------------------------------------------------------------------------- /scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-singlesmallest-100k-runs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-singlesmallest-100k-runs.json -------------------------------------------------------------------------------- /scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-standardg-100k-runs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/decodingPerformance/1024_lp_code/dp-heur-standardg-100k-runs.json -------------------------------------------------------------------------------- /scripts/numerics/data/decodingPerformance/1024_lp_code/dp-original-stdgrowth-100k-runs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/decodingPerformance/1024_lp_code/dp-original-stdgrowth-100k-runs.json -------------------------------------------------------------------------------- /scripts/numerics/data/runtime/rt-heur-1k-50s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/runtime/rt-heur-1k-50s.json -------------------------------------------------------------------------------- /scripts/numerics/data/runtime/rt-original-1k-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/data/runtime/rt-original-1k-01.json -------------------------------------------------------------------------------- /scripts/numerics/pers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/pers.txt -------------------------------------------------------------------------------- /scripts/numerics/visualize/visualizeDecodingRuntime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/visualize/visualizeDecodingRuntime.py -------------------------------------------------------------------------------- /scripts/numerics/visualize/visualizeWordErrRate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/scripts/numerics/visualize/visualizeWordErrRate.py -------------------------------------------------------------------------------- /sitecustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/sitecustomize.py -------------------------------------------------------------------------------- /src/mqt/qecc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/__init__.py -------------------------------------------------------------------------------- /src/mqt/qecc/_version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/_version.pyi -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/code_construction/code_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/code_construction/code_constructor.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/code_construction/compute_distances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/code_construction/compute_distances.sh -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/code_construction/compute_distances_3D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/code_construction/compute_distances_3D.sh -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/code_construction/sparse_code_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/code_construction/sparse_code_constructor.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=16_hx.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=16_hx.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=16_hz.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=16_hz.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=21_hx.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=21_hx.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=21_hz.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=21_hz.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=30_hx.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=30_hx.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=30_hz.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/codes/lifted_product/lp_l=30_hz.npz -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/results/bp-parameter-comparison/A comparison of BPOSD Settings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/results/bp-parameter-comparison/A comparison of BPOSD Settings.pdf -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/simulators/analog_tannergraph_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/simulators/analog_tannergraph_decoding.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/simulators/memory_experiment_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/simulators/memory_experiment_v2.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/simulators/quasi_single_shot_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/simulators/quasi_single_shot_v2.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/simulators/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/simulators/simulation.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/utils/data_utils.py -------------------------------------------------------------------------------- /src/mqt/qecc/analog_information_decoding/utils/simulation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/analog_information_decoding/utils/simulation_utils.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/__init__.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/cli.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/comparison/tn_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/comparison/tn_decoder.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/decoder.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/stim_interface/color_code_stim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/stim_interface/color_code_stim.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/stim_interface/dem_to_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/stim_interface/dem_to_matrices.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/stim_interface/max_sat_sinter_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/stim_interface/max_sat_sinter_decoder.py -------------------------------------------------------------------------------- /src/mqt/qecc/cc_decoder/stim_interface/max_sat_stim_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/cc_decoder/stim_interface/max_sat_stim_decoder.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/__init__.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/cat_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/cat_states.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/circuit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/circuit_utils.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/circuits.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/definitions.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/10_1_2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/10_1_2.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/4_2_2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/4_2_2.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/6_2_2.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/6_2_2.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/carbon.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/carbon.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/hamming.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/hamming.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/shor.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/shor.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/steane.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/steane.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/surface.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/surface.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/encoding_circuits/tetrahedral.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/encoding_circuits/tetrahedral.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/examples/Encoding_Circuit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/examples/Encoding_Circuit.ipynb -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/examples/Non_CSS_Ancillas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/examples/Non_CSS_Ancillas.ipynb -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/faults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/faults.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/noise.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/non_css_ancillas/five_qubit_code.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/non_css_ancillas/five_qubit_code.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/non_css_ancillas/five_qubit_code_verified.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/non_css_ancillas/five_qubit_code_verified.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/non_css_ancillas/gottesman_8_3_3.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/non_css_ancillas/gottesman_8_3_3.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/non_css_ancillas/gottesman_8_3_3_verified.qasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/non_css_ancillas/gottesman_8_3_3_verified.qasm -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/simulation.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/simulation_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/simulation_det.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/state_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/state_prep.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/state_prep_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/state_prep_det.py -------------------------------------------------------------------------------- /src/mqt/qecc/circuit_synthesis/synthesis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/circuit_synthesis/synthesis_utils.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/__init__.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/bb_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/bb_codes.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/carbon/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/carbon/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/carbon/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/carbon/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/cc_4_8_8_d5/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/cc_4_8_8_d5/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/cc_4_8_8_d5/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/cc_4_8_8_d5/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/color_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/color_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/concatenation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/concatenation.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/constructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/constructions.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/css_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/css_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/golay/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/golay/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/golay/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/golay/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/hamming_15/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/hamming_15/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/hamming_15/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/hamming_15/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/hexagonal_color_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/hexagonal_color_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/pauli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/pauli.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/rotated_surface_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/rotated_surface_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/rotated_surface_d3/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/rotated_surface_d3/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/rotated_surface_d3/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/rotated_surface_d3/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/rotated_surface_d5/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/rotated_surface_d5/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/rotated_surface_d5/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/rotated_surface_d5/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/shor/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/shor/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/shor/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/shor/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/square_octagon_color_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/square_octagon_color_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/stabilizer_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/stabilizer_code.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/steane/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/steane/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/steane/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/steane/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/symplectic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/symplectic.py -------------------------------------------------------------------------------- /src/mqt/qecc/codes/tetrahedral/hx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/tetrahedral/hx.npy -------------------------------------------------------------------------------- /src/mqt/qecc/codes/tetrahedral/hz.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/codes/tetrahedral/hz.npy -------------------------------------------------------------------------------- /src/mqt/qecc/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/src/mqt/qecc/py.typed -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/analog_info/test_analog_tannergraph_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/analog_info/test_analog_tannergraph_decoding.py -------------------------------------------------------------------------------- /tests/analog_info/test_memory_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/analog_info/test_memory_experiment.py -------------------------------------------------------------------------------- /tests/analog_info/test_qss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/analog_info/test_qss.py -------------------------------------------------------------------------------- /tests/analog_info/test_simulation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/analog_info/test_simulation_utils.py -------------------------------------------------------------------------------- /tests/analog_info/test_ss_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/analog_info/test_ss_simulation.py -------------------------------------------------------------------------------- /tests/cc_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/__init__.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_cc_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_cc_decoder.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_color_code_stim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_color_code_stim.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_dem_to_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_dem_to_matrices.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_max_sat_sinter_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_max_sat_sinter_decoder.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_max_sat_stim_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_max_sat_stim_decoder.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_square_octagon_color_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_square_octagon_color_code.py -------------------------------------------------------------------------------- /tests/cc_decoder/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/cc_decoder/test_utils.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/__init__.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_cat_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_cat_states.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_circuits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_circuits.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_deterministic.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_encoder_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_encoder_synthesis.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_faults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_faults.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_noise.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_simulation.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_stateprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_stateprep.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/test_utils.py -------------------------------------------------------------------------------- /tests/circuit_synthesis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/circuit_synthesis/utils.py -------------------------------------------------------------------------------- /tests/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/tests/test_code.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munich-quantum-toolkit/qecc/HEAD/uv.lock --------------------------------------------------------------------------------