from ecflow import Defs,Suite,Task,Limit,InLimit defs = Defs( Suite("s1", Limit("limitName4", 10), # name, maximum token Family("f1", InLimit("limitName4","/s1/f1",2), # limit name, path to limit, tokens consumed [ Task("t{0}".format(t)) for t in range(1,4) ] )) |
The following show alternative styles that produce the same definition.
|
|
|