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

Why not allow symbol '|' ? #3

Closed huybery closed 8 years ago

huybery commented 8 years ago

as we know , a complete regular expression should hava '|'

sdht0 commented 8 years ago

Hi @huybery. The symbol '+' is being used as the equivalent of '|'.

huybery commented 8 years ago

@siddharthasahu thank you for reminding me, I am sorry for my carelessness :smile:

sdht0 commented 8 years ago

No problem. Have fun.