automata-from-regex
automata-from-regex copied to clipboard
python cli.py "0*1(0*10*1)*0*" the result is not correct
python cli.py "01(0+101)*" the result is not correct
Anything I misunderstood?
Works for me. What result are you getting?
I used the wrong RE at the beginning. I am expecting to get the minimized DFA like this one using
:python cli.py '01(010*1)0'
