Skip to content

Commit

Permalink
update to latest MadNLP (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
frapac authored Mar 26, 2023
1 parent 9a84275 commit e9321e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Argos"
uuid = "ef244971-cf80-42b0-9762-2c2c832df5d5"
authors = ["fpacaud <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

This comment has been minimized.

Copy link
@frapac

frapac Mar 26, 2023

Author Member

[deps]
ExaPF = "0cf0e50c-a82e-488f-ac7e-41ffdff1b8aa"
Expand All @@ -20,7 +20,7 @@ ExaPF = "~0.8"
FiniteDiff = "2.7"
Ipopt = "1"
KernelAbstractions = "0.8"
MadNLP = "~0.5.1"
MadNLP = "~0.5.2"
MathOptInterface = "1"
NLPModels = "0.18"
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion test/Algorithms/MadNLP_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function _test_results_match(ips1, ips2; atol=1e-10)
@test ips1.status == ips2.status
@test ips1.cnt.k == ips2.cnt.k
@test ips1.obj_val ips2.obj_val atol=atol
@test ips1.x ips2.x atol=atol
@test MadNLP.primal(ips1.x) MadNLP.primal(ips2.x) atol=atol
@test ips1.y ips2.y atol=atol
end

Expand Down

1 comment on commit e9321e0

@JuliaRegistrator
Copy link

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/80373

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.2 -m "<description of version>" e9321e07dcfeeab4de79ed327a9bfb9510963370
git push origin v0.3.2

Please sign in to comment.