-
Notifications
You must be signed in to change notification settings - Fork 92
Add tests for ObjectiveBound #446
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 @@
## master #446 +/- ##
=========================================
+ Coverage 94.58% 94.99% +0.4%
=========================================
Files 41 42 +1
Lines 4895 4933 +38
=========================================
+ Hits 4630 4686 +56
+ Misses 265 247 -18
Continue to review full report at Codecov.
|
src/Test/UnitTests/solve.jl
Outdated
@testset "Min IP with constant" begin | ||
MOI.empty!(model) | ||
@test MOI.isempty(model) | ||
MOIU.loadfromstring!(model,""" |
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.
Nittiest of nits: space before """
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.
Repeated below.
src/Test/UnitTests/solve.jl
Outdated
""") | ||
x = MOI.get(model, MOI.VariableIndex, "x") | ||
test_model_solution(model, config; | ||
objective_value = 3.0, |
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.
Uncessary white space?
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.
Repeated below.
Ref #442