@@ -24,40 +24,40 @@ class DynamicalDecouplingOptions:
24
24
enable : Union [UnsetType , bool ] = Unset
25
25
r"""Whether to enable DD as specified by the other options in this class.
26
26
27
- Default: False.
27
+ Default: `` False`` .
28
28
"""
29
29
sequence_type : Union [UnsetType , Literal ["XX" , "XpXm" , "XY4" ]] = Unset
30
30
r"""Which dynamical decoupling sequence to use.
31
31
32
- Default: "XX".
32
+ Default: `` "XX"`` .
33
33
34
34
* ``"XX"``: use the sequence ``tau/2 - (+X) - tau - (+X) - tau/2``
35
35
* ``"XpXm"``: use the sequence ``tau/2 - (+X) - tau - (-X) - tau/2``
36
- * ``"XY4"``: : use the sequence
37
- ``tau/2 - (+X) - tau - (+Y) - tau (-X) - tau - (-Y) - tau/2``
36
+ * ``"XY4"``: use the sequence
37
+ ``tau/2 - (+X) - tau - (+Y) - tau (-X) - tau - (-Y) - tau/2``
38
38
"""
39
39
extra_slack_distribution : Union [UnsetType , Literal ["middle" , "edges" ]] = Unset
40
40
r"""Where to put extra timing delays due to rounding issues.
41
41
Rounding issues arise because the discrete time step ``dt`` of the system cannot
42
42
be divided. This option takes following values.
43
43
44
- Default: "middle".
44
+ Default: `` "middle"`` .
45
45
46
46
* ``"middle"``: Put the extra slack to the interval at the middle of the sequence.
47
47
* ``"edges"``: Divide the extra slack as evenly as possible into intervals at
48
- beginning and end of the sequence.
48
+ beginning and end of the sequence.
49
49
"""
50
50
scheduling_method : Union [UnsetType , Literal ["alap" , "asap" ]] = Unset
51
51
r"""Whether to schedule gates as soon as ("asap") or
52
52
as late as ("alap") possible.
53
53
54
- Default: "alap".
54
+ Default: `` "alap"`` .
55
55
"""
56
56
skip_reset_qubits : Union [UnsetType , bool ] = Unset
57
57
r"""Whether to insert DD on idle periods that immediately follow initialized/reset qubits.
58
58
59
59
Since qubits in the ground state are less susceptible to decoherence, it can be beneficial
60
60
to let them be while they are known to be in this state.
61
61
62
- Default: False.
62
+ Default: `` False`` .
63
63
"""
0 commit comments