dfa
dfa copied to clipboard
A simple python implementation of a DFA.
Results
1
dfa issues
Sort by
recently updated
recently updated
newest added
The following code fails, which is slightly unexpected: ``` dfa1 = DFA( start=0, inputs={0, 1}, outputs=None, label=lambda s: (s % 4) == 3, transition=lambda s, c: (s + c) %...