From 2d477ea1aac085db36e8cab4e123aac4b923bda1 Mon Sep 17 00:00:00 2001 From: Charlie Vanaret Date: Thu, 14 Nov 2024 11:35:41 +0100 Subject: [PATCH] Update runtests.jl with better globalization strategy options The globalization strategy options for the SLP method were inherited from the ipopt preset. They're now set to the values of the filtersqp preset. --- .github/julia/runtests.jl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/julia/runtests.jl b/.github/julia/runtests.jl index c9ba7a59..87fc50ab 100644 --- a/.github/julia/runtests.jl +++ b/.github/julia/runtests.jl @@ -41,6 +41,13 @@ function Optimizer_LP() "subproblem=LP", "switch_to_optimality_requires_linearized_feasibility=yes", "tolerance=1e-5", + # globalization strategy options + "armijo_decrease_fraction=1e-4", + "filter_beta=0.999", + "filter_fact=1.25", + "filter_gamma=0.001", + "filter_ubd=1e2", + "switching_delta=0.999" ]) end