Difference between revisions of "Key gizmo analysis"
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
incoming -> triage [label="a"] | incoming -> triage [label="a"] | ||
− | triage -> recycling | + | triage -> recycling [label="b"] |
− | triage -> testing | + | triage -> testing [label="b"] |
− | testing -> recycling | + | testing -> recycling [label="d"] |
− | testing -> production | + | testing -> production [label="e"] |
− | production -> sales | + | production -> sales [label="f"] |
− | production -> adoption | + | production -> adoption [label="g"] |
− | production -> build_disbursement | + | production -> build_disbursement [label="h"] |
− | production -> hardware_grants | + | production -> hardware_grants [label="i"] |
} | } |
Revision as of 15:13, 8 September 2009
<graphviz> digraph d {
node [fontname="Helvetica", shape="rectangle", fontsize="11"] edge [fontname="Helvetica"]
incoming [label="INCOMING"] triage [label="TRIAGE"] testing [label="TESTING"] production [label="PRODUCTION"] sales [label="SALES"] adoption [label="ADOPTION\nDISBURSEMENT"] build_disbursement [label="BUILD\nDISBURSEMENT"] hardware_grants [label="HARDWARE\nGRANTS"] recycling [label="RECYCLING"]
incoming -> triage [label="a"]
triage -> recycling [label="b"] triage -> testing [label="b"]
testing -> recycling [label="d"] testing -> production [label="e"]
production -> sales [label="f"] production -> adoption [label="g"] production -> build_disbursement [label="h"] production -> hardware_grants [label="i"]
} <graphviz>