-
Notifications
You must be signed in to change notification settings - Fork 16
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
Updates for New NL Interface #256
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #256 +/- ##
=======================================
Coverage 79.35% 79.35%
=======================================
Files 39 39
Lines 5579 5579
=======================================
Hits 4427 4427
Misses 1152 1152 ☔ View full report in Codecov by Sentry. |
I'd need to take a deeper look. The tests fail because it looks like it's trying to use HiGHS for a nonlinear model??? Lines 27 to 29 in 5444b86
This just looks like it is testing that I don't see why this would break with the changes. |
Just an FYI that I'm only online partially tomorrow, and then I'm away Fri/Sat/Sun NZ time so it may be next week before I get a proper look. |
No problem on the delay. From what I can tell the primary issue is this test |
This was what I needed to get tests passing: lanl-ansi/Juniper.jl#263 diff --git a/test/runtests.jl b/test/runtests.jl
index f92f38f..c10df8b 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -34,6 +34,8 @@ juniper_solver = JuMP.optimizer_with_attributes(
"nl_solver" => ipopt_solver,
"mip_solver" => highs_solver,
"log_levels" => [],
+ # TODO(odow): bug in Juniper
+ "feasibility_pump" => false,
)
|
This is the patch for the documentation diff --git a/docs/Project.toml b/docs/Project.toml
index dfa65cd..3a52a5d 100644
--- a/docs/Project.toml
+++ b/docs/Project.toml
@@ -1,2 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
+
+[compat]
+Documenter = "0.27" |
Doc fix is #257 Juniper just needs a new tag: lanl-ansi/Juniper.jl#266 |
InfrastructureModels = "~0.6, ~0.7" | ||
Ipopt = "~0.8, ~0.9, ~1" | ||
JSON = "~0.18, ~0.19, ~0.20, ~0.21" | ||
JuMP = "~0.22, ~0.23, 1" | ||
JuMP = "1.15" | ||
Juniper = ">= 0.4" |
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.
Juniper = ">= 0.4" | |
Juniper = "0.9.2" |
Once lanl-ansi/Juniper.jl#266 is tagged
@ccoffrin try rebasing this on |
@odow, can you give me a hand with how to update the tests of the form?