view code/dot/star.dot @ 46:44114b141cb5

move dot files.
author Ryoma SHINYA <shinya@firefly.cr.ie.u-ryukyu.ac.jp>
date Fri, 06 Aug 2010 20:18:58 +0900
parents code/graph/star.dot@d29d3470fde7
children
line wrap: on
line source


digraph G{
	rankdir=LR
	regex [shape=plaintext, label="A*"]
	q0 [shape=doublecircle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	q1 [shape=doublecircle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	start [shape=point]
	start -> q0
	q1 -> q1 [label="'A'"]
	q0 -> q1 [label="'A'"]
}