Skip to content
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

Can we change our long list of single asserts + "possible values for variables" into something more compact? #23

Open
frizensami opened this issue May 14, 2021 · 0 comments
Labels

Comments

@frizensami
Copy link
Owner

Instead of individually asserting
SL0 = 0 <=> h0 = 0
SL0 = 0 <=> h1 = 0, ...

can we do:
SL = 0 <=> (h0 = 0 AND h1 = 0 AND...)
SL != 0 <=> (h0 != 0 AND h1 != 0 AND ...)
.....

This will assert that if we don't choose the selector as 0, we need EVERYTHING to not be equal to 0
As long as we have the list of possible assignments for each variable and restrict those selections, maybe this is ok?

@frizensami frizensami added enhancement New feature or request OPT labels May 14, 2021
@frizensami frizensami removed the enhancement New feature or request label Jun 24, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant