sdht0 / automata-from-regex

A python program to build nfa, dfa and minimised DFA from given regular expression. Uses Tkinter for GUI and GraphViz for graphs.
118 stars 34 forks source link

python cli.py "0*1(0*10*1)*0*" the result is not correct #4

Open chakpongchung opened 7 years ago

chakpongchung commented 7 years ago

python cli.py "01(0+101)*" the result is not correct

Anything I misunderstood?

sdht0 commented 7 years ago

Works for me. What result are you getting?

chakpongchung commented 7 years ago

I used the wrong RE at the beginning. I am expecting to get the minimized DFA like this one using

:python cli.py '01(0101)0*'

image