Spaces:
Configuration error
Configuration error
File size: 348 Bytes
50cdd10 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# -*- coding: utf-8 -*-
"""Agent modules for REPAIR QEC extension and backend selection"""
from .repair_qec_extension import REPAIRQECExtension, SurfaceCode
from .backend_selector import BackendSelector, PerformancePredictor
__all__ = [
'REPAIRQECExtension',
'SurfaceCode',
'BackendSelector',
'PerformancePredictor'
]
|