-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JuMP v0.19 / MathOptInterface Update (#137)
* UPD: MOI 0.8.1 and JuMP 0.19-beta2 compatibility Change `using JuMP` to `import JuMP` * `norm(x) <= t` --> `[t, x...] in SecondOrderCone()` * `lowerbound`, `upperbound`, and `basename` in `@variable` to `lower_bound`, `upper_bound`, and `base_name`, respectively. * `setupperbound` --> `set_upper_bound` * `setlowerbound` --> `set_lower_bound` Update one test, probably due to numerical instability from optimizer change. * REF: Remove support for Julia < v1.0 changes to use `import` instead of `using` removes all reverse compatibility code for julia versions lower than v1.0 adds unit testing on julia 1.1 and nightly (allowed failure) removes compat (no longer required) * UPD: add Juniper to manifest * UPD: manifest.toml * UPD: ACR to moi * FIX: relax atol for numerical stability on linux tests * UPD: Pkg3 syntax updates to package 3 syntax * UPD: Pkg3 syntax * UPD: Version bump * UPD: Changelog, manifest, travis * UPD: InfrastructureModels version bound / Manifest * FIX: missed conflict during rebase * FIX: docs build * FIX: jump syntax update on transformers * FIX: PowerModels in manifest * UPD: project.toml updates and NFAForm addition * UPD: manifest.toml for powermodels v0.10 * FIX: `JuMP.getvalue` depeciated -> `JuMP.value` * FIX: failing storage multinetwork test
- Loading branch information
1 parent
451a86e
commit 952b966
Showing
17 changed files
with
131 additions
and
135 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
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 |
---|---|---|
|
@@ -2,34 +2,33 @@ name = "ThreePhasePowerModels" | |
uuid = "8503087a-994b-5095-bd6e-f54267f2dd19" | ||
authors = ["David M Fobes <[email protected]>", "Carleton Coffrin"] | ||
repo = "https://github.com/lanl-ansi/ThreePhasePowerModels.jl.git" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
|
||
[deps] | ||
InfrastructureModels = "2030c09a-7f63-5d83-885d-db604e0e9cc0" | ||
JuMP = "4076af6c-e467-56ae-b986-b466b2749572" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" | ||
Memento = "f28f55f0-a522-5efc-85c2-fe41dfb9b2d9" | ||
PowerModels = "c36e90e8-916a-50a6-bd94-075b64ef4655" | ||
|
||
[compat] | ||
# Cbc = ">= 0.4" | ||
InfrastructureModels = "< 0.2" | ||
# Ipopt = ">= 0.4" | ||
JuMP = "< 0.19" | ||
# Juniper = "< 0.4" | ||
Cbc = ">= 0.4" | ||
InfrastructureModels = "^0.2" | ||
Ipopt = ">= 0.4" | ||
JuMP = "^0.19.1" | ||
Juniper = ">= 0.4" | ||
Memento = ">= 0.8, < 0.13" | ||
# Pavito = ">= 0.1.1" | ||
PowerModels = "^0.9" | ||
# SCS = ">= 0.4.1" | ||
PowerModels = "^0.10" | ||
SCS = ">= 0.4" | ||
julia = "^1" | ||
|
||
[extras] | ||
Cbc = "9961bab8-2fa3-5c5a-9d89-47fab24efd76" | ||
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9" | ||
Juniper = "2ddba703-00a4-53a7-87a5-e8b9971dde84" | ||
Pavito = "cd433a01-47d1-575d-afb7-6db927ee8d8f" | ||
SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Cbc", "Ipopt", "Juniper", "Pavito", "SCS", "Test"] | ||
test = ["Cbc", "Ipopt", "Juniper", "SCS", "Test"] |
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,2 +1,4 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
InfrastructureModels = "2030c09a-7f63-5d83-885d-db604e0e9cc0" | ||
PowerModels = "c36e90e8-916a-50a6-bd94-075b64ef4655" |
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
Oops, something went wrong.
952b966
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()
952b966
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/741
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: