-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from JuliaOpt/update-MOI-JuMP
Update for MOI 0.9 and JuMP 0.20
- Loading branch information
Showing
26 changed files
with
308 additions
and
358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
name = "Dualization" | ||
uuid = "191a621a-6537-11e9-281d-650236a99e60" | ||
authors = ["guilhermebodin <[email protected]>"] | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
|
||
[deps] | ||
JuMP = "4076af6c-e467-56ae-b986-b466b2749572" | ||
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | ||
|
||
[compat] | ||
MathOptInterface = "~0.8.4" | ||
JuMP = "~0.20.0" | ||
MathOptInterface = "~0.9.0" | ||
julia = "1" | ||
JuMP = "~0.19.0" | ||
|
||
[extras] | ||
COSMO = "1e616198-aa4e-51ec-90a2-23f7fbd31d8d" | ||
CSDP = "0a46da34-8e4b-519e-b418-48813639ff34" | ||
ECOS = "e2685f51-7e38-5353-a97d-a921fd2c8199" | ||
GLPK = "60bf3e95-4087-53dc-ae20-288a0d20c6a6" | ||
SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Test", "GLPK", "ECOS", "CSDP", "COSMO"] | ||
test = ["Test", "GLPK", "ECOS", "CSDP", "SCS"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using SCS | ||
const SCSOPT = with_optimizer(SCS.Optimizer, verbose = false) | ||
|
||
#TODO | ||
# @testset "SCS Exponential Cone Problems" begin | ||
# list_of_exp_problems = [ | ||
# exp1_test, | ||
# exp2_test | ||
# ] | ||
# test_strong_duality(list_of_exp_problems, SCSOPT) | ||
# end | ||
|
||
@testset "SCS Power Cone Problems" begin | ||
list_of_pow_problems = [ | ||
pow1_test, | ||
pow2_test | ||
] | ||
test_strong_duality(list_of_pow_problems, SCSOPT; atol = 1e-3, rtol = 1e-3) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
57f0d7e
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.
@JuliaRegistrator register
57f0d7e
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.
Registration pull request created: JuliaRegistries/General/3652
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via: