-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Current implementation of executeDFA has type:
executeDFA :: DFA -> [Alpha] -> Maybe [State]The function returns a list of states in case there is a valid path for the word given or Nothing instead. This gives us no information about the path until we get to the non-valid symbol.
Should we change the implementation for getting the path until the non-valid symbol?