From 14ed51212219f2e8429eeb76e4af5b54042639b8 Mon Sep 17 00:00:00 2001 From: Vaibhav Dixit Date: Thu, 18 Jan 2024 04:01:54 -0500 Subject: [PATCH] move optprob to different file --- Project.toml | 2 +- src/SciMLBase.jl | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 049e9bc711..ea55efd238 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SciMLBase" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" authors = ["Chris Rackauckas and contributors"] -version = "2.17.1" +version = "2.18.0" [deps] ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" diff --git a/src/SciMLBase.jl b/src/SciMLBase.jl index b7401404bf..26e31cdcf3 100644 --- a/src/SciMLBase.jl +++ b/src/SciMLBase.jl @@ -705,6 +705,7 @@ include("problems/pde_problems.jl") include("problems/problem_utils.jl") include("problems/problem_traits.jl") include("problems/problem_interface.jl") +include("problems/optimization_problems.jl") include("solutions/basic_solutions.jl") include("solutions/nonlinear_solutions.jl")