(self, config: QECConfig)
| 70 | """Handles syndrome measurement for error detection""" |
| 71 | |
| 72 | def __init__(self, config: QECConfig): |
| 73 | self.config = config |
| 74 | |
| 75 | def measure_syndrome(self, circuit: QuantumCircuit) -> List[ErrorSyndrome]: |
| 76 | """Measure error syndromes in the quantum circuit""" |
nothing calls this directly
no outgoing calls
no test coverage detected