-
Notifications
You must be signed in to change notification settings - Fork 6
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
Optimizations for hard equations #103
Conversation
fd43158
to
036b2ef
Compare
@jurajsic Before merging, could you please check if the |
|
Thanks a lot! The results look nice. We can get back and try to solve the remaining 80 TOs at some point. |
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.
Seems fine to me overall. I will approve later when I check a few more parts more thoroughly.
* @return false -> unsatisfiable | ||
*/ | ||
static bool is_length_unsat(const Predicate& pred); |
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.
is_length_usnat()
returns false
for unsat result? That is confusing. It should either be named is_length_sat()
, or keep the name and return true
if unsat.
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.
You are right. I fixed the comment.
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.
Looks fine, I can't say I fully understand it though.
@Adda0 Can you finish your review? I would like to merge it to move on. |
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 reviewed the rest of the changes. LGTM.
Great, I merge it today. |
Optimizations for hard equations