Open
Description
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) % 4,
)
I would expect this to be the same as not setting any outputs.
Setting an empty dictionary yields problems with the lstar library.
Metadata
Metadata
Assignees
Labels
No labels