From 896c05ff360f42a8d3014481b266407953026999 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Sat, 26 Oct 2024 11:33:41 +1300 Subject: [PATCH] Apply suggestions from code review --- test/MINLPTests/run_minlptests.jl | 2 +- test/MOI_wrapper.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/MINLPTests/run_minlptests.jl b/test/MINLPTests/run_minlptests.jl index 6b7ee21..9cb4db8 100644 --- a/test/MINLPTests/run_minlptests.jl +++ b/test/MINLPTests/run_minlptests.jl @@ -106,7 +106,7 @@ import Uno_jll CONFIG["Uno"] = Dict( "mixed-integer" => false, "amplexe" => Uno_jll.amplexe, - "options" => ["logger=SILENT", "preset=ipopt"], + "options" => ["logger=SILENT"], "tol" => 1e-5, "dual_tol" => 1e-5, "nlp_exclude" => String[], diff --git a/test/MOI_wrapper.jl b/test/MOI_wrapper.jl index 5acd992..61c4ba3 100644 --- a/test/MOI_wrapper.jl +++ b/test/MOI_wrapper.jl @@ -269,5 +269,5 @@ TestMOIWrapper.runtests() if VERSION >= v"1.9" import Uno_jll - TestMOIWrapper.runtests(Uno_jll.amplexe, ["logger=SILENT", "preset=ipopt"]) + TestMOIWrapper.runtests(Uno_jll.amplexe, ["logger=SILENT"]) end