complex.adot 435 Bytes
Newer Older
Savva Golubitsky's avatar
Savva Golubitsky committed
1 2 3 4 5 6
digraph SIMPLEST {
    FUNCA [module=test_funcs.simplest, entry_func=increment_a_edge]
    PRED [module=test_funcs.simplest, entry_func=true_predicate]
    
    INCR_A [predicate=PRED, function=FUNCA]
    
7 8 9
    ST1 [subgraph=./adot/trivial.adot]
    ST2 [subgraph=./adot/cycled.adot]
    ST3 [subgraph=./adot/branching.adot]
Savva Golubitsky's avatar
Savva Golubitsky committed
10 11 12 13 14 15

    __BEGIN__ -> ST1 
    ST1 -> ST2 [morphism=INCR_A]
    ST2 -> ST3 [morphism=INCR_A]
    ST3 -> __END__ 
}