-
Notifications
You must be signed in to change notification settings - Fork 277
rename post_process to finish_eager_conversion #6551
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
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #6551 +/- ##
========================================
Coverage 75.98% 75.98%
========================================
Files 1578 1578
Lines 181058 181058
========================================
Hits 137579 137579
Misses 43479 43479
Continue to review full report at Codecov.
|
@@ -35,6 +35,9 @@ class prop_conv_solvert : public conflict_providert, | |||
|
|||
virtual ~prop_conv_solvert() = default; | |||
|
|||
// non-iterative eager conversion | |||
virtual void finish_eager_conversion(); |
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.
Just curious: this used to be protected
. Why is making it public
the right thing to do?
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.
Yes, I am thinking about the use of this for an eager conversion, say to Dimacs, or something else.
Right now, we trigger the "finishing" by calling dec_solve
, which then doesn't actually do solving, but returns an error, which we then ignore. It would be clearer to feed the constraints to the decision procedure, and then call finish_eager_conversion
, and then be done.
This renames a set of solver methods from post_process to finish_eager_conversion. The term 'post processing' may be used either in lazy or eager solving. The new name clarifies that this is about an eager conversion.
d31fcce
to
72d0ed0
Compare
This renames a set of solver methods from post_process to
finish_eager_conversion. The term 'post processing' may be used either in
lazy or eager solving. The new name clarifies that this is about an eager
conversion.