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 be723e4 commit b44e2a5Copy full SHA for b44e2a5
src/qutip_qip/device/__init__.py
@@ -25,5 +25,5 @@
25
"LinearSpinChain",
26
"CircularSpinChain",
27
"SpinChainModel",
28
- "OptPulseProcessor"
+ "OptPulseProcessor",
29
]
src/qutip_qip/device/processor.py
@@ -70,7 +70,7 @@ class Processor(object):
70
71
def __init__(
72
self,
73
- num_qubits,
+ num_qubits=None,
74
dims=None,
75
spline_kind="step_func",
76
model=None,
src/qutip_qip/qasm.py
@@ -7,7 +7,7 @@
7
import warnings
8
9
import numpy as np
10
-from math import pi # Don't remove
+from math import pi # Don't remove
11
12
from .circuit import QubitCircuit
13
from .operations import (
0 commit comments