(self, config: QECConfig)
| 186 | """Handles logical qubit encoding""" |
| 187 | |
| 188 | def __init__(self, config: QECConfig): |
| 189 | self.config = config |
| 190 | |
| 191 | def encode_logical_qubit(self, circuit: QuantumCircuit, |
| 192 | physical_qubits: List[int]) -> QuantumCircuit: |
nothing calls this directly
no outgoing calls
no test coverage detected