Skip to content

Commit

Permalink
Use CUTEst.jl v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Aug 31, 2024
1 parent 7e89cf6 commit a8e62a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PRIMACUTEstExt = "CUTEst"
PRIMANLPModelsExt = "NLPModels"

[compat]
CUTEst = "1.0.0"
CUTEst = "1.0.1"
NLPModels = "0.21.3"
PRIMA_jll = "0.7.1"
Requires = "1"
Expand Down
6 changes: 2 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,9 @@ end

if Sys.WORD_SIZE > 32 || Sys.iswindows()
@testset "Unconstrained CUTEst problem $name" for name in ("TOINTQOR", "OSBORNEB", "LANCZOS1LS",)
# x1, res1 = @inferred PRIMA.prima_CUTEst(name; maxfun=5000)
x1, res1 = PRIMA.prima_CUTEst(name; maxfun=5000)
x1, res1 = @inferred PRIMA.prima_CUTEst(name; maxfun=5000)
@test issuccess(res1)
# x2, res2 = @inferred PRIMA.newuoa_CUTEst(name; maxfun=5000)
x2, res2 = PRIMA.newuoa_CUTEst(name; maxfun=5000)
x2, res2 = @inferred PRIMA.newuoa_CUTEst(name; maxfun=5000)
@test issuccess(res2)
@test x1 x2
end
Expand Down

0 comments on commit a8e62a5

Please sign in to comment.