Skip to content

Commit be723e4

Browse files
committed
Restructured module imports
1 parent 50eac17 commit be723e4

File tree

6 files changed

+1
-15
lines changed

6 files changed

+1
-15
lines changed

src/qutip_qip/device/cavityqed.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
from ..compiler import CavityQEDCompiler
1818

1919

20-
__all__ = ["DispersiveCavityQED"]
21-
22-
2320
class DispersiveCavityQED(ModelProcessor):
2421
"""
2522
The processor based on the physical implementation of

src/qutip_qip/device/circuitqed.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
from ..noise import ZZCrossTalk
1111

1212

13-
__all__ = ["SCQubits"]
14-
15-
1613
class SCQubits(ModelProcessor):
1714
"""
1815
A chain of superconducting qubits with fixed frequency

src/qutip_qip/device/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from ..noise import Noise
55
from qutip import Qobj
66

7+
78
class Model:
89
"""
910
Template class for a physical model representing quantum hardware.

src/qutip_qip/device/modelprocessor.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
from .processor import Processor
88

99

10-
__all__ = ["ModelProcessor"]
11-
12-
1310
class ModelProcessor(Processor):
1411
"""
1512
The base class for a circuit processor simulating a physical device,

src/qutip_qip/device/optpulseprocessor.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
from ..operations import gate_sequence_product, expand_operator
1010

1111

12-
__all__ = ["OptPulseProcessor"]
13-
14-
1512
class OptPulseProcessor(Processor):
1613
"""
1714
A processor that uses

src/qutip_qip/device/spinchain.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
from ..transpiler import to_chain_structure
1010

1111

12-
__all__ = ["SpinChain", "LinearSpinChain", "CircularSpinChain"]
13-
14-
1512
class SpinChain(ModelProcessor):
1613
"""
1714
The processor based on the physical implementation of

0 commit comments

Comments
 (0)