blob: 1cd6e46372cc323089454eaab53e9b4033bd1752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
digraph ex1p2a2 {
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"];
q0 -> q7 [label="bb",lblstyle="auto,below"];
q7 -> q7 [label="a,b",topath="loop below"];
}
|