diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/code/dot/star.dot	Fri Aug 06 20:18:58 2010 +0900
@@ -0,0 +1,11 @@
+
+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'"]
+}
\ No newline at end of file