| 14 | logger = logging.getLogger(__name__) |
| 15 | |
| 16 | class ErrorType(Enum): |
| 17 | BIT_FLIP = "bit_flip" |
| 18 | PHASE_FLIP = "phase_flip" |
| 19 | MEASUREMENT = "measurement" |
| 20 | DECOHERENCE = "decoherence" |
| 21 | GATE = "gate" |
| 22 | |
| 23 | @dataclass |
| 24 | class QECConfig: |
nothing calls this directly
no outgoing calls
no test coverage detected