-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement input-vars decomposition for parallel modular synthesis #16
base: master
Are you sure you want to change the base?
Conversation
val inputVariableLiteral: BoolVarArray = context["inputVariableLiteral"] | ||
|
||
comment("Conjunctive guards") | ||
// tt[c,k,u] <=> AND_{x}(used[x] => (lit[c,k,x] <=> u[x]) |
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.
Awaiting for @chivdan to validate these constraints
@@ -98,6 +98,14 @@ fun Solver.declareBasicVariables( | |||
val stateAlgorithmTop = context("stateAlgorithmTop") { | |||
newBoolVarArray(C, Z) | |||
} | |||
if (Globals.IS_ENCODE_CONJUNCTIVE_GUARDS) { |
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 too adhoc.
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.
- validate the constraints
- perform more testing
- back-merge master
- refactor adhoc-y globals
…ded option to fix active variables
No description provided.