From 65a68e8201f6cf20f7ced6419ab320b79bda709c Mon Sep 17 00:00:00 2001 From: Qingyu Qu <2283984853@qq.com> Date: Wed, 25 Dec 2024 12:27:12 +0800 Subject: [PATCH] Fix some incorrect using in extension --- ext/BoundaryValueDiffEqODEInterfaceExt.jl | 2 +- test/wrappers/odeinterface_tests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/BoundaryValueDiffEqODEInterfaceExt.jl b/ext/BoundaryValueDiffEqODEInterfaceExt.jl index 8c55515b..500240bb 100644 --- a/ext/BoundaryValueDiffEqODEInterfaceExt.jl +++ b/ext/BoundaryValueDiffEqODEInterfaceExt.jl @@ -5,7 +5,7 @@ using BoundaryValueDiffEqCore: BoundaryValueDiffEqAlgorithm, __extract_u0, __initial_guess_length, __extract_mesh, __flatten_initial_guess, __get_bcresid_prototype, __has_initial_guess, __initial_guess -using SciMLBase: SciMLBase, BVProblem +using SciMLBase: SciMLBase, BVProblem, TwoPointBVProblem using ODEInterface: OptionsODE, OPT_ATOL, OPT_RTOL, OPT_METHODCHOICE, OPT_DIAGNOSTICOUTPUT, OPT_ERRORCONTROL, OPT_SINGULARTERM, OPT_MAXSTEPS, OPT_BVPCLASS, OPT_SOLMETHOD, OPT_RHS_CALLMODE, OPT_COLLOCATIONPTS, OPT_ADDGRIDPOINTS, diff --git a/test/wrappers/odeinterface_tests.jl b/test/wrappers/odeinterface_tests.jl index e3af08c1..f2991c6f 100644 --- a/test/wrappers/odeinterface_tests.jl +++ b/test/wrappers/odeinterface_tests.jl @@ -45,7 +45,7 @@ end # Just test that it runs. BVPSOL only works with linearly separable BCs. @testitem "BVPSOL" setup=[ODEInterfaceWrapperTestSetup] begin - using ODEInterface, RecursiveArrayTools, NonlinearSolveFirstOrder + using ODEInterface, RecursiveArrayTools, NonlinearSolveFirstOrder, OrdinaryDiffEq tpprob = TwoPointBVProblem(ex7_f!, (ex7_2pbc1!, ex7_2pbc2!), u0, tspan, p; bcresid_prototype = (zeros(1), zeros(1)))