diff --git a/scripts/examples/atd_example.py b/scripts/examples/atd_example.py index 15a4d19c..7685a80e 100644 --- a/scripts/examples/atd_example.py +++ b/scripts/examples/atd_example.py @@ -1,4 +1,4 @@ -""" example simulation script """ +"""example simulation script""" import numpy as np import scipy diff --git a/src/mqt/qecc/__init__.py b/src/mqt/qecc/__init__.py index 0eaf92cd..0f55aaf5 100644 --- a/src/mqt/qecc/__init__.py +++ b/src/mqt/qecc/__init__.py @@ -23,19 +23,19 @@ ) __all__ = [ - "__version__", + "AnalogTannergraphDecoder", + "AtdSimulator", "Code", "Decoder", - "UFHeuristic", - "UFDecoder", - "GrowthVariant", "DecodingResult", "DecodingResultStatus", "DecodingRunInformation", - "sample_iid_pauli_err", - "apply_ecc", - "AnalogTannergraphDecoder", - "AtdSimulator", + "GrowthVariant", # "SoftInfoDecoder", "QssSimulator", + "UFDecoder", + "UFHeuristic", + "__version__", + "apply_ecc", + "sample_iid_pauli_err", ] diff --git a/src/mqt/qecc/cc_decoder/__init__.py b/src/mqt/qecc/cc_decoder/__init__.py index 2e35bf44..541d49d6 100644 --- a/src/mqt/qecc/cc_decoder/__init__.py +++ b/src/mqt/qecc/cc_decoder/__init__.py @@ -19,10 +19,10 @@ def code_from_string(lattice_type: str, distance: int) -> ColorCode: __all__ = [ - "tn_decoder", - "HexagonalColorCode", "ColorCode", + "HexagonalColorCode", "LatticeType", "SquareOctagonColorCode", "code_from_string", + "tn_decoder", ]