-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
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
Support more symbolic decompositions #1369
Support more symbolic decompositions #1369
Conversation
I think it'll be nice to add some tests, but LGTM overall. |
yeah, this could use some symbolic |
Added some partially symbolic bloq examples along with a |
def test_decomposition(bloq_ex): | ||
qlt_testing.assert_valid_bloq_decomposition(bloq_ex.make()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is redundant with the bloq_autotester
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to verify that the bloq actually decomposes (i.e. without raising a DecomposeTypeError
). bloq_autotester
treats DecomposeTypeError
as a success right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh good point. (technically it would report it as a skip)
N
DecomposeTypeError
when not possible.