Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titlesuite definition example
collapsetrue
suite example
# task process; # research mode, call one task do-it-all
# operational mode: split parallel and serial blocks:
family parallel
edit PARALLEL 1
edit SERIAL   0
limit mutex 1
limit   count 5
inlimit count
family 2t
  edit PARAM 2t
  task process
endfamily
family u
  edit PARAM u
  task process
endfamily
family v
  edit PARAM v
  task process
endfamily
family rh
  edit PARAM rh
  task process
endfamily
endfamily # parallel

family serial
trigger parallel eq complete
inlimit mutex
edit PARALLEL 0
edit SERIAL   1
task process

...