-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcycle2-3.gv
47 lines (35 loc) · 984 Bytes
/
cycle2-3.gv
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
digraph cycle1 {
# a 'graph' statement
graph [overlap = false, fontsize = 10,
layout = circo, colorscheme = svg,
size="9,15!" ]
node [shape = circle,
fixedsize = true,
style= filled,
width = 0.9] // sets as circles
edge [penwidth = 5]
node [fillcolor = firebrick, label="Plan", pos = "0,0!"]
plan
node [fillcolor = orange, label="Collect"]
collect
node [fillcolor = mediumseagreen, label="Process"]
process
node [fillcolor = goldenrod, label="Analyze"]
analyze
node [fillcolor = mediumpurple, label="Preserve"]
preserve
node [fillcolor = lightskyblue, label="Share"]
share
node [fillcolor = dodgerblue, label="Reuse"]
reuse
node [style=invis]
invis1
# several 'edge' statements
edge [color = grey]
plan -> collect
collect -> process [style=invis]
process -> analyze
analyze -> invis1 -> share [style=invis]
share -> reuse
reuse -> plan [style=invis]
}