blob: b90b713687c161a2bb297471191a9eeab2b45ef3 (
plain)
1
2
3
4
5
6
7
8
9
|
digraph example8a {
rankdir="LR";
node [texmode="math",shape="circle",style="state"];
q0 [style="state,initial,final,accepting below",label="0"];
q1 [style="state,final",label="1"];
edge [texmode="math",lblstyle="auto"];
q0 -> q1 [label="a"];
q1 -> q1 [label="a",topath="loop above"];
}
|