blob: 5c0385653a8d05e0d656c1f8f0d2da4ef6f2f4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
digraph ex1p2a3 {
rankdir="LR";
node [texmode="math",shape="circle",style="state"];
q0 [style="state,initial",label="0"];
q7 [style="state,final",label="7"];
edge [texmode="math",lblstyle="auto"];
q0 -> q0 [label="a|b",topath="loop below"];
q0 -> q7 [label="aa|bb"];
q7 -> q7 [label="a|b",topath="loop below"];
}
|