From e64bed445c8ce1bed0464e8f3ebbb80b07800c04 Mon Sep 17 00:00:00 2001 From: Olivier Cots Date: Tue, 9 Dec 2025 11:32:16 +0100 Subject: [PATCH 1/3] Expand exclusion list for optimal control problems Added additional problems to the exclusion list. --- src/OptimalControlProblems.jl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/OptimalControlProblems.jl b/src/OptimalControlProblems.jl index 30c8b055..462985c1 100644 --- a/src/OptimalControlProblems.jl +++ b/src/OptimalControlProblems.jl @@ -63,7 +63,15 @@ function make_list_of_problems() # exclude the following problems problems_to_exclude = [ - :bioreactor, :cart_pendulum, :dielectrophoretic_particle, :moonlander + :bioreactor, + :cart_pendulum, + :dielectrophoretic_particle, + :moonlander, + :ducted_fan, + :insurance, + :robot, + :space_shuttle, + :steering, ] list_of_problems = setdiff(list_of_problems, problems_to_exclude) From 1a4e1b433d3bfe31678b1ec7b4f0ca8423b3c5a3 Mon Sep 17 00:00:00 2001 From: Olivier Cots Date: Tue, 9 Dec 2025 11:32:54 +0100 Subject: [PATCH 2/3] Comment out specific problems in runtests.jl Comment out excluded problems in runtests.jl --- test/runtests.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 84180e87..b329aa3f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -31,11 +31,11 @@ problems_to_exclude = [ # :cart_pendulum, # no need to remove here since already removed in OptimalControlProblems.jl # :dielectrophoretic_particle, # no need to remove here since already removed in OptimalControlProblems.jl # :moonlander, # no need to remove here since already removed in OptimalControlProblems.jl - :ducted_fan, - :insurance, - :robot, - :space_shuttle, - :steering, + # :ducted_fan, + # :insurance, + # :robot, + # :space_shuttle, + # :steering, ] list_of_problems = setdiff(list_of_problems, problems_to_exclude) From e1768a27e0750378b492443c9a67bc0908ce02c9 Mon Sep 17 00:00:00 2001 From: Olivier Cots Date: Tue, 9 Dec 2025 11:37:49 +0100 Subject: [PATCH 3/3] Bump version from 0.3.3 to 0.4.0 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index eabbbac1..4d2022b9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "OptimalControlProblems" uuid = "59046045-fb9c-4c23-964f-ff0a25704f96" authors = ["Olivier Cots "] -version = "0.3.3" +version = "0.4.0" [deps] ADNLPModels = "54578032-b7ea-4c30-94aa-7cbd1cce6c9a"