本文整理汇总了Python中experiment.Experiment.foo方法的典型用法代码示例。如果您正苦于以下问题:Python Experiment.foo方法的具体用法?Python Experiment.foo怎么用?Python Experiment.foo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类experiment.Experiment
的用法示例。
在下文中一共展示了Experiment.foo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Func
# 需要导入模块: from experiment import Experiment [as 别名]
# 或者: from experiment.Experiment import foo [as 别名]
Func(lambda: None) # force variable assignment to wait until correct time
exp.bar = True
Wait(2.0)
Func(lambda: None) # force variable assignment to wait until correct time
exp.bar = False
Wait(1.0)
When(exp.bar, Debug(name="when test"))
with While(exp.bar):
with Loop():
Wait(0.2)
Debug(name="while test")
with Loop(blocking=False):
Wait(0.5)
Debug(name="non-blocking test")
exp.foo=1
Record(foo=Get('foo'))
with UntilDone():
Debug(name="FOO!")
Wait(1.0)
Debug(name="FOO!")
Set(foo=2)
Debug(name="FOO!")
Wait(1.0)
Debug(name="FOO!")
Set(foo=3)
Debug(name="FOO!")
Wait(1.0)
Debug(name="FOO!")
with Parallel():