blob: 17c63fc57f1793d1e06df633d30aa1a1f141b64e (
plain)
1
2
3
4
5
6
7
8
|
digraph invalid {
{node [shape = circle] "init"};
{node [shape = circle] "state1"};
"init" [label = "init"];
"init" -> "state1" [ label = "event_a" ];
"state1" [label = "state1"];
"state1" -> "init" [ label = "event_b" ];
}
|