We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
In principle this seems easy to fix. In the same way as how inputs can be optional.
Happy to shepherd a PR, but bandwidth limited until mid may
Sorry, something went wrong.
No branches or pull requests
The following code fails, which is slightly unexpected:
I would expect this to be the same as not setting any outputs.
Setting an empty dictionary yields problems with the lstar library.
The text was updated successfully, but these errors were encountered: