blob: c183e380e4277efa7641e3e6aebf2c58f0ae5008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
digraph "g" {
"dollies:0_start_0 ssgtest1b" -> "dolly_running_0" [ style = bold]
"dollies:0_start_0 ssgtest1b" [ style=bold color="green" fontcolor="black"]
"dollies:0_stop_0 ssgtest1a" -> "dollies:0_start_0 ssgtest1b" [ style = bold]
"dollies:0_stop_0 ssgtest1a" -> "dolly_stopped_0" [ style = bold]
"dollies:0_stop_0 ssgtest1a" [ style=bold color="green" fontcolor="black"]
"dolly_running_0" [ style=bold color="green" fontcolor="orange"]
"dolly_start_0" -> "dollies:0_start_0 ssgtest1b" [ style = bold]
"dolly_start_0" -> "dolly_running_0" [ style = bold]
"dolly_start_0" [ style=bold color="green" fontcolor="orange"]
"dolly_stop_0" -> "dollies:0_stop_0 ssgtest1a" [ style = bold]
"dolly_stop_0" -> "dolly_stopped_0" [ style = bold]
"dolly_stop_0" [ style=bold color="green" fontcolor="orange"]
"dolly_stopped_0" -> "dolly_start_0" [ style = bold]
"dolly_stopped_0" [ style=bold color="green" fontcolor="orange"]
}
|