summaryrefslogtreecommitdiffstats
path: root/figs/example8b.dot
blob: 9730f9369675fd32c3699dfbaed7372b22ec6cde (plain)
1
2
3
4
5
6
7
8
9
10
11
digraph example8b {
	rankdir="LR";
	node [texmode="math",shape="circle",style="state"];
	q0 [style="state,initial,final,accepting below",label="0"];
	q1 [style="state,final",label="1"];
	q2 [style="state,final",label="2"];
	edge [texmode="math",lblstyle="auto"];
	q0 -> q1 [label="a"];
	q1 -> q1 [label="a",topath="loop above"];
	q0 -> q2 [label="b"];
}