-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Right now the data for a transition (that is what symbol is read in to follow that edge) is stored as a single string (nodeTransition.name). I feel like it would be better if it is stored as an array so that it can store multiple symbols per transition easily.
Ex: If state
I have some issues with the approach of storing transition info as a string. Firstly, is that it has to be communicated to the user what symbols can to be used to separate symbols in a transition. Secondly, it would then have to be communicated how to format these special characters so that they can be used as symbols for a transition. Lastly, I think it would make life a whole lot easier for when trying to do computation for DFA or NFA stuff if it was just stored as an array of strings.