(self, config: QECConfig)
| 210 | """Handles adaptive decoding of quantum states""" |
| 211 | |
| 212 | def __init__(self, config: QECConfig): |
| 213 | self.config = config |
| 214 | |
| 215 | def decode(self, circuit: QuantumCircuit, |
| 216 | syndrome_history: List[List[int]]) -> Tuple[List[int], float]: |
nothing calls this directly
no outgoing calls
no test coverage detected