ecFlow's documentation is now on readthedocs!

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

deom ecflpw import Defs,Suite,Task,Limit,InLimit

defs = Defs()
s1 = defs.add_suite("s1") 
s1.add_limit( "limitName4", 10 ) # name, maximum token
f1 = s1.add_family("f1")
f1.add_inlimit( "limitName4","/s1/f1",2) # limit name, path to limit, tokens consumed
for i in range(1,4):
    f1.add_task( "t{}".format(i))
  • No labels