mirror of https://github.com/m-labs/artiq.git
examples/pdq2_simple: fix offset scan
This commit is contained in:
parent
5599ec16ea
commit
a714be1c99
|
@ -36,7 +36,7 @@ class PDQ2Simple(EnvExperiment):
|
||||||
return self.pmt.count()
|
return self.pmt.count()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
offsets = np.linspace(0, 10, 3)
|
offsets = np.arange(0, 3)
|
||||||
for o in offsets:
|
for o in offsets:
|
||||||
self.setup(o)
|
self.setup(o)
|
||||||
self.one()
|
self.one()
|
||||||
|
|
Loading…
Reference in New Issue