-
Notifications
You must be signed in to change notification settings - Fork 273
Remove {f,F}orall_literals #5787
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 #5787 +/- ##
========================================
Coverage 69.64% 69.64%
========================================
Files 1248 1248
Lines 100915 100911 -4
========================================
- Hits 70285 70284 -1
+ Misses 30630 30627 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
src/solvers/sat/satcheck_ipasir.cpp
Outdated
{ | ||
if(it->is_true()) | ||
if(litera.is_true()) |
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.
litera
vs. literal
?
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.
Fixed, thanks!
This was useful in the past, but with C++-11 we can use a ranged-for to avoid the iterator altogether.
5dff696
to
692553f
Compare
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.
LGTM
This was useful in the past, but with C++-11 we can use a ranged-for to avoid
the iterator altogether.