Container for error syndrome information
| 30 | |
| 31 | @dataclass |
| 32 | class ErrorSyndrome: |
| 33 | """Container for error syndrome information""" |
| 34 | location: List[int] # Indices of affected qubits |
| 35 | error_type: ErrorType |
| 36 | severity: float |
| 37 | correction_gates: List[str] |
| 38 | |
| 39 | class NoiseSimulator: |
| 40 | """Simulates various types of quantum noise""" |