view code/dot/combine.dot @ 49:7f4221018adf

accept UTF-8 encoding. but some foundational bug in converting algorithm NFA. maybe, which is not too difficult.
author Ryoma SHINYA <shinya@firefly.cr.ie.u-ryukyu.ac.jp>
date Mon, 09 Aug 2010 04:34:13 +0900
parents 44114b141cb5
children
line wrap: on
line source


digraph G{
	rankdir=LR
	regex [shape=plaintext, label="(argv|argc|args)"]
	q0 [shape=doublecircle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	q1 [shape=circle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	q2 [shape=doublecircle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	q5 [shape=circle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	q6 [shape=doublecircle, fillcolor=lightsteelblue1, style=filled, color = navyblue]
	start [shape=point]
	start -> q1
	q1 -> q5 [label="'arg'"]
	q5 -> q6 [label="'s'"]
	q5 -> q2 [label="'c'"]
	q5 -> q0 [label="'v'"]
}