1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
; Generate a Broad Process Tree ; This generates a Tree of the form: ; ; main ; \_ c1 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | ; \_ c1 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | \_ c2 ; | ; \_ ... 23 more times [main] children=25*c1 maxtime=10 [c1] children=5*c2 maxtime=10 [c2] maxtime=5