File size: 486 Bytes
2a87ede | 1 2 3 4 5 6 7 8 9 10 | """Backward-compatibility shim -- the real implementation moved to
dense_evolution.circuits.compiler as part of the Phase 2 subpackage split
(see prog.txt). Kept so `from dense_evolution.compiler import QuantumTranspiler`
(used by external consumers, e.g. Dense-Evolution-Discovery) keeps working
unchanged. Import from dense_evolution.circuits.compiler directly in new code.
"""
from dense_evolution.circuits.compiler import QuantumTranspiler
__all__ = ['QuantumTranspiler']
|