Is there a tool that will accept a list of regexps and produce a picture of the minimal DFA that will recognize these regexps, each into its corresponding final state?

It should look something like this: http://i.imgur.com/Vxw9X.jpg The picture is taken from Stanford compilers class, probably made by the teacher himself. This FA handles a subset of Pascal tokens, the numbered/lettered states are final states.

I don't need the actual code for the DFA, just the picture of how it looks.

If there is no such tool, how would I go about making this kind of graphs? Is there some kind of specialized python GUI library that will do that?

link|improve this question

I will try to write that in future. +1 for your link and for your idea. – EAGER_STUDENT Oct 6 '11 at 2:45
feedback

1 Answer

up vote 2 down vote accepted

I can't remember if it does exactly what you want, but JFLAP Will let you enter a regular expression and then convert to a NFA/DFA.

link|improve this answer
Thanks, I will check it out. – Sunny88 Aug 13 '11 at 20:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.