We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c72a23 commit 057db7eCopy full SHA for 057db7e
src/bloqade/builder/coupling.py
@@ -1,9 +1,10 @@
1
from bloqade.builder.base import Builder
2
+from bloqade.builder.field import Rabi, Detuning
3
4
5
class LevelCoupling(Builder):
6
@property
- def detuning(self):
7
+ def detuning(self) -> Detuning:
8
"""
9
- Specify the Detuning field
10
- Next-step: <SpacialModulation>
@@ -19,12 +20,11 @@ def detuning(self):
19
20
:: Address atom at location labeled by variable
21
22
- from bloqade.builder.field import Detuning
23
24
return Detuning(self)
25
26
27
- def rabi(self):
+ def rabi(self) -> Rabi:
28
29
- Specify the Rabi term/field.
30
- Possible Next:
@@ -37,7 +37,6 @@ def rabi(self):
37
38
39
40
- from bloqade.builder.field import Rabi
41
42
return Rabi(self)
43
0 commit comments