Difference between revisions of "User:Matteo/scratch.04"
Jump to navigation
Jump to search
(I think thats how my brain works) |
(→R: gizmo flow by department, sorda, start) |
||
Line 1: | Line 1: | ||
== R == | == R == | ||
We are doing things | We are doing things | ||
+ | |||
+ | <graphviz> | ||
+ | digraph g { | ||
+ | |||
+ | subgraph cluster_0 { | ||
+ | node [style=filled]; | ||
+ | a0 -> a1; | ||
+ | label = "Moniter"; | ||
+ | color=green | ||
+ | } | ||
+ | |||
+ | a0 -> r0; | ||
+ | a1 -> r0; | ||
+ | a1 -> s0; | ||
+ | |||
+ | subgraph cluster_1 { | ||
+ | node [style=filled]; | ||
+ | e0 -> e1; | ||
+ | e0 -> e2; | ||
+ | e0 -> e3; | ||
+ | e1 -> e0; | ||
+ | e2 -> e0; | ||
+ | e3 -> e0; | ||
+ | label = "Evaluation"; | ||
+ | color=blue | ||
+ | } | ||
+ | |||
+ | e1 -> s1; | ||
+ | e2 -> s1; | ||
+ | e3 -> s1; | ||
+ | s1 -> b0; | ||
+ | |||
+ | subgraph cluster_2 { | ||
+ | node [style=filled]; | ||
+ | b0 -> bq; | ||
+ | label = "Build"; | ||
+ | color=purple | ||
+ | } | ||
+ | |||
+ | |||
+ | subgraph cluster_ { | ||
+ | node [style=filled]; | ||
+ | end; | ||
+ | r0; | ||
+ | label = "recycling"; | ||
+ | } | ||
+ | |||
+ | b0 -> e0 | ||
+ | start -> a0; | ||
+ | start -> e0; | ||
+ | e0 -> end; | ||
+ | bq -> s3; | ||
+ | |||
+ | start [shape=Mdiamond]; | ||
+ | end [shape=Msquare]; | ||
+ | } | ||
+ | </graphviz> | ||
+ | |||
== L == | == L == | ||
<graphvizr> | <graphvizr> |
Revision as of 20:29, 26 November 2007
R
We are doing things
L
<graphvizr> digraph G {
Policy_idea -> Read_Policies Policy_intrest -> Read_Policies Read_Policies -> Link_to_List Read_Policies -> Policy_still_relivent Read_Policies -> More_info_needed Link_to_List -> Look_for_link Policy_still_relivent -> ask_the_question More_info_needed -> ask_the_question ask_the_question -> document Look_for_link -> document document -> Read_Policies } </graphvizr>