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