testsub.adot 439 Bytes
Newer Older
1
digraph TEST_SUB {
2
    FUNC [module=test_funcs.simplest, entry_func=increment_a_edge]
3 4
    PRED [module=test_funcs.simplest, entry_func=positiveness_predicate]
    MORPH [predicate=PRED, function=FUNC]
5
    SEL [module=test_funcs.simplest, entry_func=selector_a_nonpositive]
6
    
7 8 9 10 11 12 13
    ST2 [subgraph = tests/adot/file.adot]
    ST3 [selector = SEL]

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